We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7718e5 commit 9012f84Copy full SHA for 9012f84
kernel/irq/proc.c
@@ -52,10 +52,8 @@ static int show_irq_affinity(int type, struct seq_file *m)
52
case AFFINITY:
53
case AFFINITY_LIST:
54
mask = desc->irq_common_data.affinity;
55
-#ifdef CONFIG_GENERIC_PENDING_IRQ
56
- if (irqd_is_setaffinity_pending(&desc->irq_data))
57
- mask = desc->pending_mask;
58
-#endif
+ if (irq_move_pending(&desc->irq_data))
+ mask = irq_desc_get_pending_mask(desc);
59
break;
60
case EFFECTIVE:
61
case EFFECTIVE_LIST:
0 commit comments