Commit 59a00f8c authored by Martin J. Bligh's avatar Martin J. Bligh Committed by Andy Grover

[PATCH] NUMA-Q disable irqbalance

This just adds an if switch to irq_balance which the compiler optimises
away anyway.
parent fcc6fcc6
...@@ -251,6 +251,9 @@ static inline void balance_irq(int irq) ...@@ -251,6 +251,9 @@ static inline void balance_irq(int irq)
irq_balance_t *entry = irq_balance + irq; irq_balance_t *entry = irq_balance + irq;
unsigned long now = jiffies; unsigned long now = jiffies;
if (clustered_apic_mode)
return;
if (entry->timestamp != now) { if (entry->timestamp != now) {
unsigned long allowed_mask; unsigned long allowed_mask;
int random_number; int random_number;
......
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