aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorAlexander Gordeev <agordeev@redhat.com>2012-06-07 09:15:15 -0400
committerIngo Molnar <mingo@kernel.org>2012-06-08 05:44:28 -0400
commit1bccd58bfffc5a677051937b332b71f0686187c1 (patch)
tree3ca2d34aa58ead6914760326bb27ff6144506cbd /arch
parent9d8e10667624ea6411f04495aef1fa4a8a778ee8 (diff)
x86/apic: Try to spread IRQ vectors to different priority levels
When assigning a new vector it is primarially done by adding 8 to the previously given out vector number. Hence, two consequently allocated vector numbers would likely fall into the same priority level. Try to spread vector numbers to different priority levels better by changing the step from 8 to 16. Signed-off-by: Alexander Gordeev <agordeev@redhat.com> Acked-by: Suresh Siddha <suresh.b.siddha@intel.com> Cc: Yinghai Lu <yinghai@kernel.org> Link: http://lkml.kernel.org/r/20120607131514.GD4759@dhcp-26-207.brq.redhat.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/kernel/apic/io_apic.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
index 74c569791e75..05af3d341aaa 100644
--- a/arch/x86/kernel/apic/io_apic.c
+++ b/arch/x86/kernel/apic/io_apic.c
@@ -1112,7 +1112,7 @@ __assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
1112 * 0x80, because int 0x80 is hm, kind of importantish. ;) 1112 * 0x80, because int 0x80 is hm, kind of importantish. ;)
1113 */ 1113 */
1114 static int current_vector = FIRST_EXTERNAL_VECTOR + VECTOR_OFFSET_START; 1114 static int current_vector = FIRST_EXTERNAL_VECTOR + VECTOR_OFFSET_START;
1115 static int current_offset = VECTOR_OFFSET_START % 8; 1115 static int current_offset = VECTOR_OFFSET_START % 16;
1116 unsigned int old_vector; 1116 unsigned int old_vector;
1117 int cpu, err; 1117 int cpu, err;
1118 cpumask_var_t tmp_mask; 1118 cpumask_var_t tmp_mask;
@@ -1148,10 +1148,9 @@ __assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
1148 vector = current_vector; 1148 vector = current_vector;
1149 offset = current_offset; 1149 offset = current_offset;
1150next: 1150next:
1151 vector += 8; 1151 vector += 16;
1152 if (vector >= first_system_vector) { 1152 if (vector >= first_system_vector) {
1153 /* If out of vectors on large boxen, must share them. */ 1153 offset = (offset + 1) % 16;
1154 offset = (offset + 1) % 8;
1155 vector = FIRST_EXTERNAL_VECTOR + offset; 1154 vector = FIRST_EXTERNAL_VECTOR + offset;
1156 } 1155 }
1157 if (unlikely(current_vector == vector)) 1156 if (unlikely(current_vector == vector))