#ifndef _CPUMAP_H#define _CPUMAP_H#ifdef CONFIG_SMPexternvoidcpu_map_rebuild(void);externintmap_to_cpu(unsigned int index);#define cpu_map_init() cpu_map_rebuild()#else#define cpu_map_init() do {} while (0)staticinlineintmap_to_cpu(unsigned int index){returnraw_smp_processor_id();}#endif#endif