Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bd126b23 authored by Namhyung Kim's avatar Namhyung Kim Committed by Len Brown
Browse files

ACPI: add missing __percpu markup in arch/x86/kernel/acpi/cstate.c



cpu_cstate_entry is a percpu pointer
but was missing __percpu markup.

Signed-off-by: default avatarNamhyung Kim <namhyung@gmail.com>
Acked-by: default avatarTejun Heo <tj@kernel.org>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 58f87ed0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -61,7 +61,7 @@ struct cstate_entry {
		unsigned int ecx;
	} states[ACPI_PROCESSOR_MAX_POWER];
};
static struct cstate_entry *cpu_cstate_entry;	/* per CPU ptr */
static struct cstate_entry __percpu *cpu_cstate_entry;	/* per CPU ptr */

static short mwait_supported[ACPI_PROCESSOR_MAX_POWER];