Commit 5b4d1dbc authored by H. Peter Anvin's avatar H. Peter Anvin

x86, apic: Make disabled_cpu_apicid static read_mostly, fix typos

Make disabled_cpu_apicid static and read_mostly, and fix a couple of
typos.
Reported-by: default avatarIngo Molnar <mingo@kernel.org>
Link: http://lkml.kernel.org/r/20140115182511.GA22737@gmail.comSigned-off-by: default avatarH. Peter Anvin <hpa@linux.intel.com>
Cc: HATAYAMA Daisuke <d.hatayama@jp.fujitsu.com>
parent 151e0c7d
...@@ -79,7 +79,7 @@ physid_mask_t phys_cpu_present_map; ...@@ -79,7 +79,7 @@ physid_mask_t phys_cpu_present_map;
* disable_cpu_apicid=<int>, mostly used for the kdump 2nd kernel to * disable_cpu_apicid=<int>, mostly used for the kdump 2nd kernel to
* avoid undefined behaviour caused by sending INIT from AP to BSP. * avoid undefined behaviour caused by sending INIT from AP to BSP.
*/ */
unsigned int disabled_cpu_apicid = BAD_APICID; static unsigned int disabled_cpu_apicid __read_mostly = BAD_APICID;
/* /*
* Map cpu index to physical APIC ID * Map cpu index to physical APIC ID
...@@ -2124,7 +2124,7 @@ int generic_processor_info(int apicid, int version) ...@@ -2124,7 +2124,7 @@ int generic_processor_info(int apicid, int version)
* boot_cpu_physical_apicid is designed to have the apicid * boot_cpu_physical_apicid is designed to have the apicid
* returned by read_apic_id(), i.e, the apicid of the * returned by read_apic_id(), i.e, the apicid of the
* currently booting-up processor. However, on some platforms, * currently booting-up processor. However, on some platforms,
* it is temporarilly modified by the apicid reported as BSP * it is temporarily modified by the apicid reported as BSP
* through MP table. Concretely: * through MP table. Concretely:
* *
* - arch/x86/kernel/mpparse.c: MP_processor_info() * - arch/x86/kernel/mpparse.c: MP_processor_info()
...@@ -2145,7 +2145,7 @@ int generic_processor_info(int apicid, int version) ...@@ -2145,7 +2145,7 @@ int generic_processor_info(int apicid, int version)
disabled_cpu_apicid == apicid) { disabled_cpu_apicid == apicid) {
int thiscpu = num_processors + disabled_cpus; int thiscpu = num_processors + disabled_cpus;
pr_warning("ACPI: Disabling requested cpu." pr_warning("APIC: Disabling requested cpu."
" Processor %d/0x%x ignored.\n", " Processor %d/0x%x ignored.\n",
thiscpu, apicid); thiscpu, apicid);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment