Searched refs:_initvalue (Results 1 – 1 of 1) sorted by relevance
/openbmc/linux/arch/x86/include/asm/ |
H A D | percpu.h | 425 #define DEFINE_EARLY_PER_CPU(_type, _name, _initvalue) \ argument 426 DEFINE_PER_CPU(_type, _name) = _initvalue; \ 428 { [0 ... NR_CPUS-1] = _initvalue }; \ 431 #define DEFINE_EARLY_PER_CPU_READ_MOSTLY(_type, _name, _initvalue) \ argument 432 DEFINE_PER_CPU_READ_MOSTLY(_type, _name) = _initvalue; \ 434 { [0 ... NR_CPUS-1] = _initvalue }; \ 458 #define DEFINE_EARLY_PER_CPU(_type, _name, _initvalue) \ argument 459 DEFINE_PER_CPU(_type, _name) = _initvalue 461 #define DEFINE_EARLY_PER_CPU_READ_MOSTLY(_type, _name, _initvalue) \ argument 462 DEFINE_PER_CPU_READ_MOSTLY(_type, _name) = _initvalue
|