Commit 2b4b6c20 authored by Linus Torvalds's avatar Linus Torvalds

Merge master.kernel.org:/home/mingo/BK/linux-2.5-misc/

into home.transmeta.com:/home/torvalds/v2.5/linux
parents 56970f58 e3e362f9
......@@ -207,7 +207,7 @@ typedef struct {
} ____cacheline_aligned irq_balance_t;
static irq_balance_t irq_balance[NR_IRQS] __cacheline_aligned
= { [ 0 ... NR_IRQS-1 ] = { 1, 0 } };
= { [ 0 ... NR_IRQS-1 ] = { 0, 0 } };
extern unsigned long irq_affinity [NR_IRQS];
......@@ -251,7 +251,7 @@ static inline void balance_irq(int irq)
irq_balance_t *entry = irq_balance + irq;
unsigned long now = jiffies;
if ((entry->timestamp != now) && (smp_num_cpus > 1)) {
if (entry->timestamp != now) {
unsigned long allowed_mask;
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