Home | History | Annotate | Download | only in linux

Lines Matching refs:flags

24  * flags straight, to supress compiler warnings of unused lock
36 #define __LOCK_IRQSAVE(lock, flags) \
37 do { local_irq_save(flags); __LOCK(lock); } while (0)
48 #define __UNLOCK_IRQRESTORE(lock, flags) \
49 do { local_irq_restore(flags); __UNLOCK(lock); } while (0)
61 #define _spin_lock_irqsave(lock, flags) __LOCK_IRQSAVE(lock, flags)
62 #define _read_lock_irqsave(lock, flags) __LOCK_IRQSAVE(lock, flags)
63 #define _write_lock_irqsave(lock, flags) __LOCK_IRQSAVE(lock, flags)
77 #define _spin_unlock_irqrestore(lock, flags) __UNLOCK_IRQRESTORE(lock, flags)
78 #define _read_unlock_irqrestore(lock, flags) __UNLOCK_IRQRESTORE(lock, flags)
79 #define _write_unlock_irqrestore(lock, flags) __UNLOCK_IRQRESTORE(lock, flags)