Lines Matching full:lock

19 #define assert_raw_spin_locked(lock)	do { (void)(lock); } while (0)  argument
24 * flags straight, to suppress compiler warnings of unused lock
27 #define __LOCK(lock) \ argument
28 do { preempt_disable(); __acquire(lock); (void)(lock); } while (0)
30 #define __LOCK_BH(lock) \ argument
31 do { local_bh_disable(); __LOCK(lock); } while (0)
33 #define __LOCK_IRQ(lock) \ argument
34 do { local_irq_disable(); __LOCK(lock); } while (0)
36 #define __LOCK_IRQSAVE(lock, flags) \ argument
37 do { local_irq_save(flags); __LOCK(lock); } while (0)
39 #define __UNLOCK(lock) \ argument
40 do { preempt_enable(); __release(lock); (void)(lock); } while (0)
42 #define __UNLOCK_BH(lock) \ argument
44 __release(lock); (void)(lock); } while (0)
46 #define __UNLOCK_IRQ(lock) \ argument
47 do { local_irq_enable(); __UNLOCK(lock); } while (0)
49 #define __UNLOCK_IRQRESTORE(lock, flags) \ argument
50 do { local_irq_restore(flags); __UNLOCK(lock); } while (0)
52 #define _raw_spin_lock(lock) __LOCK(lock) argument
53 #define _raw_spin_lock_nested(lock, subclass) __LOCK(lock) argument
54 #define _raw_read_lock(lock) __LOCK(lock) argument
55 #define _raw_write_lock(lock) __LOCK(lock) argument
56 #define _raw_spin_lock_bh(lock) __LOCK_BH(lock) argument
57 #define _raw_read_lock_bh(lock) __LOCK_BH(lock) argument
58 #define _raw_write_lock_bh(lock) __LOCK_BH(lock) argument
59 #define _raw_spin_lock_irq(lock) __LOCK_IRQ(lock) argument
60 #define _raw_read_lock_irq(lock) __LOCK_IRQ(lock) argument
61 #define _raw_write_lock_irq(lock) __LOCK_IRQ(lock) argument
62 #define _raw_spin_lock_irqsave(lock, flags) __LOCK_IRQSAVE(lock, flags) argument
63 #define _raw_read_lock_irqsave(lock, flags) __LOCK_IRQSAVE(lock, flags) argument
64 #define _raw_write_lock_irqsave(lock, flags) __LOCK_IRQSAVE(lock, flags) argument
65 #define _raw_spin_trylock(lock) ({ __LOCK(lock); 1; }) argument
66 #define _raw_read_trylock(lock) ({ __LOCK(lock); 1; }) argument
67 #define _raw_write_trylock(lock) ({ __LOCK(lock); 1; }) argument
68 #define _raw_spin_trylock_bh(lock) ({ __LOCK_BH(lock); 1; }) argument
69 #define _raw_spin_unlock(lock) __UNLOCK(lock) argument
70 #define _raw_read_unlock(lock) __UNLOCK(lock) argument
71 #define _raw_write_unlock(lock) __UNLOCK(lock) argument
72 #define _raw_spin_unlock_bh(lock) __UNLOCK_BH(lock) argument
73 #define _raw_write_unlock_bh(lock) __UNLOCK_BH(lock) argument
74 #define _raw_read_unlock_bh(lock) __UNLOCK_BH(lock) argument
75 #define _raw_spin_unlock_irq(lock) __UNLOCK_IRQ(lock) argument
76 #define _raw_read_unlock_irq(lock) __UNLOCK_IRQ(lock) argument
77 #define _raw_write_unlock_irq(lock) __UNLOCK_IRQ(lock) argument
78 #define _raw_spin_unlock_irqrestore(lock, flags) \ argument
79 __UNLOCK_IRQRESTORE(lock, flags)
80 #define _raw_read_unlock_irqrestore(lock, flags) \ argument
81 __UNLOCK_IRQRESTORE(lock, flags)
82 #define _raw_write_unlock_irqrestore(lock, flags) \ argument
83 __UNLOCK_IRQRESTORE(lock, flags)