genirq: Add missing status flags to modification mask

The mask which filters out the valid bits which can be set via
irq_modify_status() is missing IRQ_NO_BALANCING, which breaks UV.

Add IRQ_PER_CPU as well to avoid another one line patch for 39.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

+2 -1
+2 -1
include/linux/irq.h
··· 74 74 75 75 #define IRQF_MODIFY_MASK \ 76 76 (IRQ_TYPE_SENSE_MASK | IRQ_NOPROBE | IRQ_NOREQUEST | \ 77 - IRQ_NOAUTOEN | IRQ_MOVE_PCNTXT | IRQ_LEVEL) 77 + IRQ_NOAUTOEN | IRQ_MOVE_PCNTXT | IRQ_LEVEL | IRQ_NO_BALANCING | \ 78 + IRQ_PER_CPU) 78 79 79 80 #ifdef CONFIG_IRQ_PER_CPU 80 81 # define CHECK_IRQ_PER_CPU(var) ((var) & IRQ_PER_CPU)