Loading arch/x86/include/asm/apic.h +7 −7 Original line number Diff line number Diff line Loading @@ -292,7 +292,7 @@ struct apic { int (*cpu_present_to_apicid)(int mps_cpu); physid_mask_t (*apicid_to_cpu_present)(int phys_apicid); void (*setup_portio_remap)(void); int (*check_phys_apicid_present)(int boot_cpu_physical_apicid); int (*check_phys_apicid_present)(int phys_apicid); void (*enable_apic_mode)(void); int (*phys_pkg_id)(int cpuid_apic, int index_msb); Loading Loading @@ -426,7 +426,7 @@ extern struct apic apic_x2apic_uv_x; DECLARE_PER_CPU(int, x2apic_extra_bits); extern int default_cpu_present_to_apicid(int mps_cpu); extern int default_check_phys_apicid_present(int boot_cpu_physical_apicid); extern int default_check_phys_apicid_present(int phys_apicid); #endif static inline void default_wait_for_init_deassert(atomic_t *deassert) Loading Loading @@ -542,9 +542,9 @@ static inline int __default_cpu_present_to_apicid(int mps_cpu) } static inline int __default_check_phys_apicid_present(int boot_cpu_physical_apicid) __default_check_phys_apicid_present(int phys_apicid) { return physid_isset(boot_cpu_physical_apicid, phys_cpu_present_map); return physid_isset(phys_apicid, phys_cpu_present_map); } #ifdef CONFIG_X86_32 Loading @@ -554,13 +554,13 @@ static inline int default_cpu_present_to_apicid(int mps_cpu) } static inline int default_check_phys_apicid_present(int boot_cpu_physical_apicid) default_check_phys_apicid_present(int phys_apicid) { return __default_check_phys_apicid_present(boot_cpu_physical_apicid); return __default_check_phys_apicid_present(phys_apicid); } #else extern int default_cpu_present_to_apicid(int mps_cpu); extern int default_check_phys_apicid_present(int boot_cpu_physical_apicid); extern int default_check_phys_apicid_present(int phys_apicid); #endif static inline physid_mask_t default_apicid_to_cpu_present(int phys_apicid) Loading arch/x86/kernel/apic/bigsmp_32.c +1 −1 Original line number Diff line number Diff line Loading @@ -112,7 +112,7 @@ static physid_mask_t bigsmp_ioapic_phys_id_map(physid_mask_t phys_map) return physids_promote(0xFFL); } static int bigsmp_check_phys_apicid_present(int boot_cpu_physical_apicid) static int bigsmp_check_phys_apicid_present(int phys_apicid) { return 1; } Loading arch/x86/kernel/apic/numaq_32.c +1 −1 Original line number Diff line number Diff line Loading @@ -413,7 +413,7 @@ static inline physid_mask_t numaq_apicid_to_cpu_present(int logical_apicid) /* Where the IO area was mapped on multiquad, always 0 otherwise */ void *xquad_portio; static inline int numaq_check_phys_apicid_present(int boot_cpu_physical_apicid) static inline int numaq_check_phys_apicid_present(int phys_apicid) { return 1; } Loading arch/x86/kernel/apic/summit_32.c +1 −1 Original line number Diff line number Diff line Loading @@ -272,7 +272,7 @@ static physid_mask_t summit_apicid_to_cpu_present(int apicid) return physid_mask_of_physid(0); } static int summit_check_phys_apicid_present(int boot_cpu_physical_apicid) static int summit_check_phys_apicid_present(int physical_apicid) { return 1; } Loading arch/x86/kernel/setup.c +2 −2 Original line number Diff line number Diff line Loading @@ -129,9 +129,9 @@ int default_cpu_present_to_apicid(int mps_cpu) return __default_cpu_present_to_apicid(mps_cpu); } int default_check_phys_apicid_present(int boot_cpu_physical_apicid) int default_check_phys_apicid_present(int phys_apicid) { return __default_check_phys_apicid_present(boot_cpu_physical_apicid); return __default_check_phys_apicid_present(phys_apicid); } #endif Loading Loading
arch/x86/include/asm/apic.h +7 −7 Original line number Diff line number Diff line Loading @@ -292,7 +292,7 @@ struct apic { int (*cpu_present_to_apicid)(int mps_cpu); physid_mask_t (*apicid_to_cpu_present)(int phys_apicid); void (*setup_portio_remap)(void); int (*check_phys_apicid_present)(int boot_cpu_physical_apicid); int (*check_phys_apicid_present)(int phys_apicid); void (*enable_apic_mode)(void); int (*phys_pkg_id)(int cpuid_apic, int index_msb); Loading Loading @@ -426,7 +426,7 @@ extern struct apic apic_x2apic_uv_x; DECLARE_PER_CPU(int, x2apic_extra_bits); extern int default_cpu_present_to_apicid(int mps_cpu); extern int default_check_phys_apicid_present(int boot_cpu_physical_apicid); extern int default_check_phys_apicid_present(int phys_apicid); #endif static inline void default_wait_for_init_deassert(atomic_t *deassert) Loading Loading @@ -542,9 +542,9 @@ static inline int __default_cpu_present_to_apicid(int mps_cpu) } static inline int __default_check_phys_apicid_present(int boot_cpu_physical_apicid) __default_check_phys_apicid_present(int phys_apicid) { return physid_isset(boot_cpu_physical_apicid, phys_cpu_present_map); return physid_isset(phys_apicid, phys_cpu_present_map); } #ifdef CONFIG_X86_32 Loading @@ -554,13 +554,13 @@ static inline int default_cpu_present_to_apicid(int mps_cpu) } static inline int default_check_phys_apicid_present(int boot_cpu_physical_apicid) default_check_phys_apicid_present(int phys_apicid) { return __default_check_phys_apicid_present(boot_cpu_physical_apicid); return __default_check_phys_apicid_present(phys_apicid); } #else extern int default_cpu_present_to_apicid(int mps_cpu); extern int default_check_phys_apicid_present(int boot_cpu_physical_apicid); extern int default_check_phys_apicid_present(int phys_apicid); #endif static inline physid_mask_t default_apicid_to_cpu_present(int phys_apicid) Loading
arch/x86/kernel/apic/bigsmp_32.c +1 −1 Original line number Diff line number Diff line Loading @@ -112,7 +112,7 @@ static physid_mask_t bigsmp_ioapic_phys_id_map(physid_mask_t phys_map) return physids_promote(0xFFL); } static int bigsmp_check_phys_apicid_present(int boot_cpu_physical_apicid) static int bigsmp_check_phys_apicid_present(int phys_apicid) { return 1; } Loading
arch/x86/kernel/apic/numaq_32.c +1 −1 Original line number Diff line number Diff line Loading @@ -413,7 +413,7 @@ static inline physid_mask_t numaq_apicid_to_cpu_present(int logical_apicid) /* Where the IO area was mapped on multiquad, always 0 otherwise */ void *xquad_portio; static inline int numaq_check_phys_apicid_present(int boot_cpu_physical_apicid) static inline int numaq_check_phys_apicid_present(int phys_apicid) { return 1; } Loading
arch/x86/kernel/apic/summit_32.c +1 −1 Original line number Diff line number Diff line Loading @@ -272,7 +272,7 @@ static physid_mask_t summit_apicid_to_cpu_present(int apicid) return physid_mask_of_physid(0); } static int summit_check_phys_apicid_present(int boot_cpu_physical_apicid) static int summit_check_phys_apicid_present(int physical_apicid) { return 1; } Loading
arch/x86/kernel/setup.c +2 −2 Original line number Diff line number Diff line Loading @@ -129,9 +129,9 @@ int default_cpu_present_to_apicid(int mps_cpu) return __default_cpu_present_to_apicid(mps_cpu); } int default_check_phys_apicid_present(int boot_cpu_physical_apicid) int default_check_phys_apicid_present(int phys_apicid) { return __default_check_phys_apicid_present(boot_cpu_physical_apicid); return __default_check_phys_apicid_present(phys_apicid); } #endif Loading