aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mach-generic
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-01-27 23:57:56 -0500
committerIngo Molnar <mingo@elte.hu>2009-01-28 17:20:20 -0500
commit2e867b17cc02e1799f18126af0ddd7b63dd8f6f4 (patch)
treec5c0cc37ded5fb8b9ced26550d99f7706cd3cea2 /arch/x86/mach-generic
parentd1d7cae8fd54a301a0de531b48451649933ffdcf (diff)
x86, apic: remove no_balance_irq and no_ioapic_check flags
These flags are completely unused. (the in-kernel IRQ balancer has been removed from the upstream kernel.) Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mach-generic')
-rw-r--r--arch/x86/mach-generic/bigsmp.c3
-rw-r--r--arch/x86/mach-generic/default.c3
-rw-r--r--arch/x86/mach-generic/es7000.c4
-rw-r--r--arch/x86/mach-generic/numaq.c3
-rw-r--r--arch/x86/mach-generic/summit.c3
5 files changed, 0 insertions, 16 deletions
diff --git a/arch/x86/mach-generic/bigsmp.c b/arch/x86/mach-generic/bigsmp.c
index aa8443f6c0f7..6da251aa9f4e 100644
--- a/arch/x86/mach-generic/bigsmp.c
+++ b/arch/x86/mach-generic/bigsmp.c
@@ -74,9 +74,6 @@ struct genapic apic_bigsmp = {
74 .check_apicid_used = bigsmp_check_apicid_used, 74 .check_apicid_used = bigsmp_check_apicid_used,
75 .check_apicid_present = bigsmp_check_apicid_present, 75 .check_apicid_present = bigsmp_check_apicid_present,
76 76
77 .no_balance_irq = NO_BALANCE_IRQ,
78 .no_ioapic_check = 0,
79
80 .vector_allocation_domain = vector_allocation_domain, 77 .vector_allocation_domain = vector_allocation_domain,
81 .init_apic_ldr = init_apic_ldr, 78 .init_apic_ldr = init_apic_ldr,
82 79
diff --git a/arch/x86/mach-generic/default.c b/arch/x86/mach-generic/default.c
index 47f6b5b06ba1..e89e8c9dd68d 100644
--- a/arch/x86/mach-generic/default.c
+++ b/arch/x86/mach-generic/default.c
@@ -41,9 +41,6 @@ struct genapic apic_default = {
41 .check_apicid_used = default_check_apicid_used, 41 .check_apicid_used = default_check_apicid_used,
42 .check_apicid_present = default_check_apicid_present, 42 .check_apicid_present = default_check_apicid_present,
43 43
44 .no_balance_irq = NO_BALANCE_IRQ,
45 .no_ioapic_check = 0,
46
47 .vector_allocation_domain = vector_allocation_domain, 44 .vector_allocation_domain = vector_allocation_domain,
48 .init_apic_ldr = init_apic_ldr, 45 .init_apic_ldr = init_apic_ldr,
49 46
diff --git a/arch/x86/mach-generic/es7000.c b/arch/x86/mach-generic/es7000.c
index 5633f3296e1c..8e9eeecf7e24 100644
--- a/arch/x86/mach-generic/es7000.c
+++ b/arch/x86/mach-generic/es7000.c
@@ -23,7 +23,6 @@ void __init es7000_update_genapic_to_cluster(void)
23 apic->target_cpus = target_cpus_cluster; 23 apic->target_cpus = target_cpus_cluster;
24 apic->irq_delivery_mode = INT_DELIVERY_MODE_CLUSTER; 24 apic->irq_delivery_mode = INT_DELIVERY_MODE_CLUSTER;
25 apic->irq_dest_mode = INT_DEST_MODE_CLUSTER; 25 apic->irq_dest_mode = INT_DEST_MODE_CLUSTER;
26 apic->no_balance_irq = NO_BALANCE_IRQ_CLUSTER;
27 26
28 apic->init_apic_ldr = init_apic_ldr_cluster; 27 apic->init_apic_ldr = init_apic_ldr_cluster;
29 28
@@ -117,9 +116,6 @@ struct genapic apic_es7000 = {
117 .check_apicid_used = es7000_check_apicid_used, 116 .check_apicid_used = es7000_check_apicid_used,
118 .check_apicid_present = es7000_check_apicid_present, 117 .check_apicid_present = es7000_check_apicid_present,
119 118
120 .no_balance_irq = NO_BALANCE_IRQ,
121 .no_ioapic_check = 0,
122
123 .vector_allocation_domain = vector_allocation_domain, 119 .vector_allocation_domain = vector_allocation_domain,
124 .init_apic_ldr = init_apic_ldr, 120 .init_apic_ldr = init_apic_ldr,
125 121
diff --git a/arch/x86/mach-generic/numaq.c b/arch/x86/mach-generic/numaq.c
index d85206d8e4ae..f909189fee3e 100644
--- a/arch/x86/mach-generic/numaq.c
+++ b/arch/x86/mach-generic/numaq.c
@@ -61,9 +61,6 @@ struct genapic apic_numaq = {
61 .check_apicid_used = numaq_check_apicid_used, 61 .check_apicid_used = numaq_check_apicid_used,
62 .check_apicid_present = numaq_check_apicid_present, 62 .check_apicid_present = numaq_check_apicid_present,
63 63
64 .no_balance_irq = NO_BALANCE_IRQ,
65 .no_ioapic_check = 0,
66
67 .vector_allocation_domain = vector_allocation_domain, 64 .vector_allocation_domain = vector_allocation_domain,
68 .init_apic_ldr = init_apic_ldr, 65 .init_apic_ldr = init_apic_ldr,
69 66
diff --git a/arch/x86/mach-generic/summit.c b/arch/x86/mach-generic/summit.c
index f54cf73d3edb..99a9bea8d141 100644
--- a/arch/x86/mach-generic/summit.c
+++ b/arch/x86/mach-generic/summit.c
@@ -54,9 +54,6 @@ struct genapic apic_summit = {
54 .check_apicid_used = summit_check_apicid_used, 54 .check_apicid_used = summit_check_apicid_used,
55 .check_apicid_present = summit_check_apicid_present, 55 .check_apicid_present = summit_check_apicid_present,
56 56
57 .no_balance_irq = NO_BALANCE_IRQ,
58 .no_ioapic_check = 0,
59
60 .vector_allocation_domain = vector_allocation_domain, 57 .vector_allocation_domain = vector_allocation_domain,
61 .init_apic_ldr = init_apic_ldr, 58 .init_apic_ldr = init_apic_ldr,
62 59