You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
x86_64: initialize this_cpu_off to __per_cpu_load
On x86_64, if get_per_cpu_var() is used before per cpu area is setup (if lockdep is turned on, it happens), it needs this_cpu_off to point to __per_cpu_load. Initialize accordingly. Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
@@ -3,8 +3,13 @@
|
||||
*/
|
||||
#include <linux/module.h>
|
||||
#include <asm/smp.h>
|
||||
#include <asm/sections.h>
|
||||
|
||||
#ifdef CONFIG_X86_64
|
||||
DEFINE_PER_CPU(unsigned long, this_cpu_off) = (unsigned long)__per_cpu_load;
|
||||
#else
|
||||
DEFINE_PER_CPU(unsigned long, this_cpu_off);
|
||||
#endif
|
||||
EXPORT_PER_CPU_SYMBOL(this_cpu_off);
|
||||
|
||||
#ifdef CONFIG_X86_32
|
||||
|
||||
Reference in New Issue
Block a user