Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fae581e5 authored by Thomas Gleixner's avatar Thomas Gleixner
Browse files

genirq: Remove CHECK_IRQ_PER_CPU from core code

parent 8f53f924
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}