在多处理器上,每个内核可以有自己的变量。我以为它们是在不同地址中的不同变量,尽管它们在同一过程中并且具有相同的名称。
但是我想知道,内核如何实现呢?它是否分配了一块内存来存放所有的percpu指针,并且每次它通过shift或其他方式将指针重定向到某个地址时?
普通全局变量不是每个CPU的。自动变量位于堆栈中,并且不同的CPU使用不同的堆栈,因此自然会得到单独的变量。
我猜您指的是Linux的每CPU变量基础结构。 大部分魔力在这里(asm-generic/percpu.h):
asm-generic/percpu.h
extern unsigned long __per_cpu_offset[NR_CPUS]; #define per_cpu_offset(x) (__per_cpu_offset[x]) /* Separate out the type, so (int[3], foo) works. */ #define DEFINE_PER_CPU(type, name) \ __attribute__((__section__(".data.percpu"))) __typeof__(type) per_cpu__##name /* var is in discarded region: offset to particular copy we want */ #define per_cpu(var, cpu) (*RELOC_HIDE(&per_cpu__##var, __per_cpu_offset[cpu])) #define __get_cpu_var(var) per_cpu(var, smp_processor_id())
宏RELOC_HIDE(ptr, offset)仅以ptr字节为单位偏移给定的偏移量(无论指针类型如何)。
RELOC_HIDE(ptr, offset)
ptr
它有什么作用?
DEFINE_PER_CPU(int, x)
__per_cpu_x
.data.percpu
__per_cpu_offset
__per_cpu_offset[n]
1000*n
per_cpu__x
__get_cpu_var(x)
*RELOC_HIDE(&per_cpu__x, __per_cpu_offset[3])
x