Searched refs:_initvalue (Results 1 – 1 of 1) sorted by relevance
/linux-4.4.14/arch/x86/include/asm/ |
D | percpu.h | 566 #define DEFINE_EARLY_PER_CPU(_type, _name, _initvalue) \ argument 567 DEFINE_PER_CPU(_type, _name) = _initvalue; \ 569 { [0 ... NR_CPUS-1] = _initvalue }; \ 572 #define DEFINE_EARLY_PER_CPU_READ_MOSTLY(_type, _name, _initvalue) \ argument 573 DEFINE_PER_CPU_READ_MOSTLY(_type, _name) = _initvalue; \ 575 { [0 ... NR_CPUS-1] = _initvalue }; \ 599 #define DEFINE_EARLY_PER_CPU(_type, _name, _initvalue) \ argument 600 DEFINE_PER_CPU(_type, _name) = _initvalue 602 #define DEFINE_EARLY_PER_CPU_READ_MOSTLY(_type, _name, _initvalue) \ argument 603 DEFINE_PER_CPU_READ_MOSTLY(_type, _name) = _initvalue
|