mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 08:44:21 +08:00
genirq: Remove CHECK_IRQ_PER_CPU from core code
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
8f53f92404
commit
fae581e588
@ -73,8 +73,8 @@ int irq_can_set_affinity(unsigned int irq)
|
||||
{
|
||||
struct irq_desc *desc = irq_to_desc(irq);
|
||||
|
||||
if (CHECK_IRQ_PER_CPU(desc->status) || !desc->irq_data.chip ||
|
||||
!desc->irq_data.chip->irq_set_affinity)
|
||||
if ((desc->status & (IRQ_PER_CPU | IRQ_NO_BALANCING)) ||
|
||||
!desc->irq_data.chip || !desc->irq_data.chip->irq_set_affinity)
|
||||
return 0;
|
||||
|
||||
return 1;
|
||||
|
@ -15,7 +15,7 @@ void move_masked_irq(int irq)
|
||||
/*
|
||||
* Paranoia: cpu-local interrupts shouldn't be calling in here anyway.
|
||||
*/
|
||||
if (CHECK_IRQ_PER_CPU(desc->status)) {
|
||||
if (desc->status & (IRQ_PER_CPU | IRQ_NO_BALANCING)) {
|
||||
WARN_ON(1);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user