aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/include/asm/genapic.h2
-rw-r--r--arch/x86/kernel/apic.c4
-rw-r--r--arch/x86/kernel/genapic_flat_64.c4
-rw-r--r--arch/x86/kernel/genx2apic_cluster.c2
-rw-r--r--arch/x86/kernel/genx2apic_phys.c2
-rw-r--r--arch/x86/kernel/genx2apic_uv_x.c2
-rw-r--r--arch/x86/mach-generic/bigsmp.c2
-rw-r--r--arch/x86/mach-generic/default.c2
-rw-r--r--arch/x86/mach-generic/es7000.c2
-rw-r--r--arch/x86/mach-generic/numaq.c2
-rw-r--r--arch/x86/mach-generic/summit.c2
11 files changed, 13 insertions, 13 deletions
diff --git a/arch/x86/include/asm/genapic.h b/arch/x86/include/asm/genapic.h
index e998e3df5d2..7aee4a4c524 100644
--- a/arch/x86/include/asm/genapic.h
+++ b/arch/x86/include/asm/genapic.h
@@ -28,7 +28,7 @@ struct genapic {
28 28
29 const struct cpumask *(*target_cpus)(void); 29 const struct cpumask *(*target_cpus)(void);
30 30
31 int ESR_DISABLE; 31 int disable_esr;
32 32
33 int apic_destination_logical; 33 int apic_destination_logical;
34 unsigned long (*check_apicid_used)(physid_mask_t bitmap, int apicid); 34 unsigned long (*check_apicid_used)(physid_mask_t bitmap, int apicid);
diff --git a/arch/x86/kernel/apic.c b/arch/x86/kernel/apic.c
index 69d8c30d571..3853ed76c88 100644
--- a/arch/x86/kernel/apic.c
+++ b/arch/x86/kernel/apic.c
@@ -1107,7 +1107,7 @@ static void __cpuinit lapic_setup_esr(void)
1107 return; 1107 return;
1108 } 1108 }
1109 1109
1110 if (apic->ESR_DISABLE) { 1110 if (apic->disable_esr) {
1111 /* 1111 /*
1112 * Something untraceable is creating bad interrupts on 1112 * Something untraceable is creating bad interrupts on
1113 * secondary quads ... for the moment, just leave the 1113 * secondary quads ... for the moment, just leave the
@@ -1157,7 +1157,7 @@ void __cpuinit setup_local_APIC(void)
1157 1157
1158#ifdef CONFIG_X86_32 1158#ifdef CONFIG_X86_32
1159 /* Pound the ESR really hard over the head with a big hammer - mbligh */ 1159 /* Pound the ESR really hard over the head with a big hammer - mbligh */
1160 if (lapic_is_integrated() && apic->ESR_DISABLE) { 1160 if (lapic_is_integrated() && apic->disable_esr) {
1161 apic_write(APIC_ESR, 0); 1161 apic_write(APIC_ESR, 0);
1162 apic_write(APIC_ESR, 0); 1162 apic_write(APIC_ESR, 0);
1163 apic_write(APIC_ESR, 0); 1163 apic_write(APIC_ESR, 0);
diff --git a/arch/x86/kernel/genapic_flat_64.c b/arch/x86/kernel/genapic_flat_64.c
index 0a263d6bb5e..d437a60cc58 100644
--- a/arch/x86/kernel/genapic_flat_64.c
+++ b/arch/x86/kernel/genapic_flat_64.c
@@ -184,7 +184,7 @@ struct genapic apic_flat = {
184 .irq_dest_mode = (APIC_DEST_LOGICAL != 0), 184 .irq_dest_mode = (APIC_DEST_LOGICAL != 0),
185 185
186 .target_cpus = flat_target_cpus, 186 .target_cpus = flat_target_cpus,
187 .ESR_DISABLE = 0, 187 .disable_esr = 0,
188 .apic_destination_logical = 0, 188 .apic_destination_logical = 0,
189 .check_apicid_used = NULL, 189 .check_apicid_used = NULL,
190 .check_apicid_present = NULL, 190 .check_apicid_present = NULL,
@@ -330,7 +330,7 @@ struct genapic apic_physflat = {
330 .irq_dest_mode = (APIC_DEST_PHYSICAL != 0), 330 .irq_dest_mode = (APIC_DEST_PHYSICAL != 0),
331 331
332 .target_cpus = physflat_target_cpus, 332 .target_cpus = physflat_target_cpus,
333 .ESR_DISABLE = 0, 333 .disable_esr = 0,
334 .apic_destination_logical = 0, 334 .apic_destination_logical = 0,
335 .check_apicid_used = NULL, 335 .check_apicid_used = NULL,
336 .check_apicid_present = NULL, 336 .check_apicid_present = NULL,
diff --git a/arch/x86/kernel/genx2apic_cluster.c b/arch/x86/kernel/genx2apic_cluster.c
index e9ff7dc9a0f..c1cffae4a4c 100644
--- a/arch/x86/kernel/genx2apic_cluster.c
+++ b/arch/x86/kernel/genx2apic_cluster.c
@@ -186,7 +186,7 @@ struct genapic apic_x2apic_cluster = {
186 .irq_dest_mode = (APIC_DEST_LOGICAL != 0), 186 .irq_dest_mode = (APIC_DEST_LOGICAL != 0),
187 187
188 .target_cpus = x2apic_target_cpus, 188 .target_cpus = x2apic_target_cpus,
189 .ESR_DISABLE = 0, 189 .disable_esr = 0,
190 .apic_destination_logical = 0, 190 .apic_destination_logical = 0,
191 .check_apicid_used = NULL, 191 .check_apicid_used = NULL,
192 .check_apicid_present = NULL, 192 .check_apicid_present = NULL,
diff --git a/arch/x86/kernel/genx2apic_phys.c b/arch/x86/kernel/genx2apic_phys.c
index 8141b5a88f6..c59602be035 100644
--- a/arch/x86/kernel/genx2apic_phys.c
+++ b/arch/x86/kernel/genx2apic_phys.c
@@ -182,7 +182,7 @@ struct genapic apic_x2apic_phys = {
182 .irq_dest_mode = (APIC_DEST_PHYSICAL != 0), 182 .irq_dest_mode = (APIC_DEST_PHYSICAL != 0),
183 183
184 .target_cpus = x2apic_target_cpus, 184 .target_cpus = x2apic_target_cpus,
185 .ESR_DISABLE = 0, 185 .disable_esr = 0,
186 .apic_destination_logical = 0, 186 .apic_destination_logical = 0,
187 .check_apicid_used = NULL, 187 .check_apicid_used = NULL,
188 .check_apicid_present = NULL, 188 .check_apicid_present = NULL,
diff --git a/arch/x86/kernel/genx2apic_uv_x.c b/arch/x86/kernel/genx2apic_uv_x.c
index 6a73cad0d3e..525b4e480a7 100644
--- a/arch/x86/kernel/genx2apic_uv_x.c
+++ b/arch/x86/kernel/genx2apic_uv_x.c
@@ -247,7 +247,7 @@ struct genapic apic_x2apic_uv_x = {
247 .irq_dest_mode = (APIC_DEST_PHYSICAL != 0), 247 .irq_dest_mode = (APIC_DEST_PHYSICAL != 0),
248 248
249 .target_cpus = uv_target_cpus, 249 .target_cpus = uv_target_cpus,
250 .ESR_DISABLE = 0, 250 .disable_esr = 0,
251 .apic_destination_logical = 0, 251 .apic_destination_logical = 0,
252 .check_apicid_used = NULL, 252 .check_apicid_used = NULL,
253 .check_apicid_present = NULL, 253 .check_apicid_present = NULL,
diff --git a/arch/x86/mach-generic/bigsmp.c b/arch/x86/mach-generic/bigsmp.c
index f0bb72674f7..fe9bf252c06 100644
--- a/arch/x86/mach-generic/bigsmp.c
+++ b/arch/x86/mach-generic/bigsmp.c
@@ -69,7 +69,7 @@ struct genapic apic_bigsmp = {
69 .irq_dest_mode = 0, 69 .irq_dest_mode = 0,
70 70
71 .target_cpus = bigsmp_target_cpus, 71 .target_cpus = bigsmp_target_cpus,
72 .ESR_DISABLE = 1, 72 .disable_esr = 1,
73 .apic_destination_logical = APIC_DEST_LOGICAL, 73 .apic_destination_logical = APIC_DEST_LOGICAL,
74 .check_apicid_used = check_apicid_used, 74 .check_apicid_used = check_apicid_used,
75 .check_apicid_present = check_apicid_present, 75 .check_apicid_present = check_apicid_present,
diff --git a/arch/x86/mach-generic/default.c b/arch/x86/mach-generic/default.c
index c30141a9aca..d3fe8017e94 100644
--- a/arch/x86/mach-generic/default.c
+++ b/arch/x86/mach-generic/default.c
@@ -36,7 +36,7 @@ struct genapic apic_default = {
36 .irq_dest_mode = 1, 36 .irq_dest_mode = 1,
37 37
38 .target_cpus = default_target_cpus, 38 .target_cpus = default_target_cpus,
39 .ESR_DISABLE = 0, 39 .disable_esr = 0,
40 .apic_destination_logical = APIC_DEST_LOGICAL, 40 .apic_destination_logical = APIC_DEST_LOGICAL,
41 .check_apicid_used = check_apicid_used, 41 .check_apicid_used = check_apicid_used,
42 .check_apicid_present = check_apicid_present, 42 .check_apicid_present = check_apicid_present,
diff --git a/arch/x86/mach-generic/es7000.c b/arch/x86/mach-generic/es7000.c
index e8aa8fd4f49..b4f8abfb714 100644
--- a/arch/x86/mach-generic/es7000.c
+++ b/arch/x86/mach-generic/es7000.c
@@ -112,7 +112,7 @@ struct genapic apic_es7000 = {
112 .irq_dest_mode = 0, 112 .irq_dest_mode = 0,
113 113
114 .target_cpus = es7000_target_cpus, 114 .target_cpus = es7000_target_cpus,
115 .ESR_DISABLE = 1, 115 .disable_esr = 1,
116 .apic_destination_logical = APIC_DEST_LOGICAL, 116 .apic_destination_logical = APIC_DEST_LOGICAL,
117 .check_apicid_used = check_apicid_used, 117 .check_apicid_used = check_apicid_used,
118 .check_apicid_present = check_apicid_present, 118 .check_apicid_present = check_apicid_present,
diff --git a/arch/x86/mach-generic/numaq.c b/arch/x86/mach-generic/numaq.c
index 860edc8bd90..f3b7840d227 100644
--- a/arch/x86/mach-generic/numaq.c
+++ b/arch/x86/mach-generic/numaq.c
@@ -56,7 +56,7 @@ struct genapic apic_numaq = {
56 .irq_dest_mode = 0, 56 .irq_dest_mode = 0,
57 57
58 .target_cpus = numaq_target_cpus, 58 .target_cpus = numaq_target_cpus,
59 .ESR_DISABLE = 1, 59 .disable_esr = 1,
60 .apic_destination_logical = APIC_DEST_LOGICAL, 60 .apic_destination_logical = APIC_DEST_LOGICAL,
61 .check_apicid_used = check_apicid_used, 61 .check_apicid_used = check_apicid_used,
62 .check_apicid_present = check_apicid_present, 62 .check_apicid_present = check_apicid_present,
diff --git a/arch/x86/mach-generic/summit.c b/arch/x86/mach-generic/summit.c
index cd5ef115a4e..95e075b61bd 100644
--- a/arch/x86/mach-generic/summit.c
+++ b/arch/x86/mach-generic/summit.c
@@ -49,7 +49,7 @@ struct genapic apic_summit = {
49 .irq_dest_mode = 1, 49 .irq_dest_mode = 1,
50 50
51 .target_cpus = summit_target_cpus, 51 .target_cpus = summit_target_cpus,
52 .ESR_DISABLE = 1, 52 .disable_esr = 1,
53 .apic_destination_logical = APIC_DEST_LOGICAL, 53 .apic_destination_logical = APIC_DEST_LOGICAL,
54 .check_apicid_used = check_apicid_used, 54 .check_apicid_used = check_apicid_used,
55 .check_apicid_present = check_apicid_present, 55 .check_apicid_present = check_apicid_present,