Home | History | Annotate | Download | only in linux

Lines Matching refs:__LOCK

27 #define __LOCK(lock) \
31 do { local_bh_disable(); __LOCK(lock); } while (0)
34 do { local_irq_disable(); __LOCK(lock); } while (0)
37 do { local_irq_save(flags); __LOCK(lock); } while (0)
51 #define _spin_lock(lock) __LOCK(lock)
52 #define _spin_lock_nested(lock, subclass) __LOCK(lock)
53 #define _read_lock(lock) __LOCK(lock)
54 #define _write_lock(lock) __LOCK(lock)
64 #define _spin_trylock(lock) ({ __LOCK(lock); 1; })
65 #define _read_trylock(lock) ({ __LOCK(lock); 1; })
66 #define _write_trylock(lock) ({ __LOCK(lock); 1; })