Searched refs:_initvalue (Results 1 – 1 of 1) sorted by relevance
/Linux-v4.19/arch/x86/include/asm/ |
D | percpu.h | 559 #define DEFINE_EARLY_PER_CPU(_type, _name, _initvalue) \ argument 560 DEFINE_PER_CPU(_type, _name) = _initvalue; \ 562 { [0 ... NR_CPUS-1] = _initvalue }; \ 565 #define DEFINE_EARLY_PER_CPU_READ_MOSTLY(_type, _name, _initvalue) \ argument 566 DEFINE_PER_CPU_READ_MOSTLY(_type, _name) = _initvalue; \ 568 { [0 ... NR_CPUS-1] = _initvalue }; \ 592 #define DEFINE_EARLY_PER_CPU(_type, _name, _initvalue) \ argument 593 DEFINE_PER_CPU(_type, _name) = _initvalue 595 #define DEFINE_EARLY_PER_CPU_READ_MOSTLY(_type, _name, _initvalue) \ argument 596 DEFINE_PER_CPU_READ_MOSTLY(_type, _name) = _initvalue
|