Home | History | Annotate | Download | only in linux

Lines Matching refs:flags

29 #define __LOCK_IRQSAVE(lock, flags)   do { local_irq_save(flags); __LOCK(lock); } while (0)
37 #define __UNLOCK_IRQRESTORE(lock, flags) do { local_irq_restore(flags); __UNLOCK(lock); } while (0)
49 #define _spin_lock_irqsave(lock, flags) __LOCK_IRQSAVE(lock, flags)
50 #define _read_lock_irqsave(lock, flags) __LOCK_IRQSAVE(lock, flags)
51 #define _write_lock_irqsave(lock, flags) __LOCK_IRQSAVE(lock, flags)
65 #define _spin_unlock_irqrestore(lock, flags) __UNLOCK_IRQRESTORE(lock, flags)
66 #define _read_unlock_irqrestore(lock, flags) __UNLOCK_IRQRESTORE(lock, flags)
67 #define _write_unlock_irqrestore(lock, flags) __UNLOCK_IRQRESTORE(lock, flags)