Searched refs:_initvalue (Results  1 – 1 of 1) sorted by relevance
| /Linux-v5.4/arch/x86/include/asm/ | 
| D | percpu.h | 571 #define	DEFINE_EARLY_PER_CPU(_type, _name, _initvalue)			\  argument572 	DEFINE_PER_CPU(_type, _name) = _initvalue;			\
 574 				{ [0 ... NR_CPUS-1] = _initvalue };	\
 577 #define DEFINE_EARLY_PER_CPU_READ_MOSTLY(_type, _name, _initvalue)	\  argument
 578 	DEFINE_PER_CPU_READ_MOSTLY(_type, _name) = _initvalue;		\
 580 				{ [0 ... NR_CPUS-1] = _initvalue };	\
 604 #define	DEFINE_EARLY_PER_CPU(_type, _name, _initvalue)		\  argument
 605 	DEFINE_PER_CPU(_type, _name) = _initvalue
 607 #define DEFINE_EARLY_PER_CPU_READ_MOSTLY(_type, _name, _initvalue)	\  argument
 608 	DEFINE_PER_CPU_READ_MOSTLY(_type, _name) = _initvalue
 
 |