Lines Matching defs:mask
26 * must be "reconciled" with the soft mask state.
133 static inline notrace void irq_soft_mask_set(unsigned long mask)
136 * The irq mask must always include the STD bit if any are set.
150 WARN_ON(mask && !(mask & IRQS_DISABLED));
155 : "r" (mask),
160 static inline notrace unsigned long irq_soft_mask_set_return(unsigned long mask)
164 irq_soft_mask_set(mask);
169 static inline notrace unsigned long irq_soft_mask_or_return(unsigned long mask)
173 irq_soft_mask_set(flags | mask);
178 static inline notrace unsigned long irq_soft_mask_andc_return(unsigned long mask)
182 irq_soft_mask_set(flags & ~mask);