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)
69 #define _raw_spin_lock_irqsave(lock, flags) __LOCK_IRQSAVE(lock, flags) argument
70 #define _raw_read_lock_irqsave(lock, flags) __LOCK_IRQSAVE(lock, flags) argument
71 #define _raw_write_lock_irqsave(lock, flags) __LOCK_IRQSAVE(lock, flags) argument
85 #define _raw_spin_unlock_irqrestore(lock, flags) \ argument
86 __UNLOCK_IRQRESTORE(lock, flags)
87 #define _raw_read_unlock_irqrestore(lock, flags) \ argument
88 __UNLOCK_IRQRESTORE(lock, flags)
89 #define _raw_write_unlock_irqrestore(lock, flags) \ argument
90 __UNLOCK_IRQRESTORE(lock, flags)