Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 200909
b: refs/heads/master
c: 3cd8519
h: refs/heads/master
i:
  200907: 96e6551
v: v3
  • Loading branch information
Johannes Berg authored and Benjamin Herrenschmidt committed Jul 8, 2010
1 parent 8022a4c commit ac421fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d3005fbc696781d2fd7bd5b5389a94fae5332b58
refs/heads/master: 3cd8519248e9e17d982c6fab0f1a89bca6feb49a
5 changes: 4 additions & 1 deletion trunk/arch/powerpc/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,10 @@ void fixup_irqs(const struct cpumask *map)

for_each_irq(irq) {
desc = irq_to_desc(irq);
if (desc && desc->status & IRQ_PER_CPU)
if (!desc)
continue;

if (desc->status & IRQ_PER_CPU)
continue;

cpumask_and(mask, desc->affinity, map);
Expand Down

0 comments on commit ac421fb

Please sign in to comment.