Lines Matching refs:flags
39 #define __LOCK_IRQSAVE(lock, flags) \ argument
40 do { local_irq_save(flags); __LOCK(lock); } while (0)
55 #define __UNLOCK_IRQRESTORE(lock, flags) \ argument
56 do { local_irq_restore(flags); __UNLOCK(lock); } while (0)
68 #define _raw_spin_lock_irqsave(lock, flags) __LOCK_IRQSAVE(lock, flags) argument
69 #define _raw_read_lock_irqsave(lock, flags) __LOCK_IRQSAVE(lock, flags) argument
70 #define _raw_write_lock_irqsave(lock, flags) __LOCK_IRQSAVE(lock, flags) argument
84 #define _raw_spin_unlock_irqrestore(lock, flags) \ argument
85 __UNLOCK_IRQRESTORE(lock, flags)
86 #define _raw_read_unlock_irqrestore(lock, flags) \ argument
87 __UNLOCK_IRQRESTORE(lock, flags)
88 #define _raw_write_unlock_irqrestore(lock, flags) \ argument
89 __UNLOCK_IRQRESTORE(lock, flags)