Lines Matching defs:x
178 #define L(x) raw_spin_lock(&lock_##x) argument
179 #define U(x) raw_spin_unlock(&lock_##x) argument
180 #define LU(x) L(x); U(x) argument
181 #define SI(x) raw_spin_lock_init(&lock_##x) argument
183 #define WL(x) write_lock(&rwlock_##x) argument
184 #define WU(x) write_unlock(&rwlock_##x) argument
185 #define WLU(x) WL(x); WU(x) argument
187 #define RL(x) read_lock(&rwlock_##x) argument
188 #define RU(x) read_unlock(&rwlock_##x) argument
189 #define RLU(x) RL(x); RU(x) argument
190 #define RWI(x) rwlock_init(&rwlock_##x) argument
192 #define ML(x) mutex_lock(&mutex_##x) argument
193 #define MU(x) mutex_unlock(&mutex_##x) argument
194 #define MI(x) mutex_init(&mutex_##x) argument
196 #define WSL(x) down_write(&rwsem_##x) argument
197 #define WSU(x) up_write(&rwsem_##x) argument
199 #define RSL(x) down_read(&rwsem_##x) argument
200 #define RSU(x) up_read(&rwsem_##x) argument
201 #define RWSI(x) init_rwsem(&rwsem_##x) argument
204 #define WWAI(x) ww_acquire_init(x, &ww_lockdep) argument
206 #define WWAI(x) do { ww_acquire_init(x, &ww_lockdep); (x)->deadlock_inject_countdown = ~0U; } whi… argument
208 #define WWAD(x) ww_acquire_done(x) argument
209 #define WWAF(x) ww_acquire_fini(x) argument
211 #define WWL(x, c) ww_mutex_lock(x, c) argument
212 #define WWT(x) ww_mutex_trylock(x) argument
213 #define WWL1(x) ww_mutex_lock(x, NULL) argument
214 #define WWU(x) ww_mutex_unlock(x) argument
217 #define LOCK_UNLOCK_2(x,y) LOCK(x); LOCK(y); UNLOCK(y); UNLOCK(x) argument
914 # define I_SPINLOCK(x) lockdep_reset_lock(&lock_##x.dep_map) argument
915 # define I_RWLOCK(x) lockdep_reset_lock(&rwlock_##x.dep_map) argument
916 # define I_MUTEX(x) lockdep_reset_lock(&mutex_##x.dep_map) argument
917 # define I_RWSEM(x) lockdep_reset_lock(&rwsem_##x.dep_map) argument
918 # define I_WW(x) lockdep_reset_lock(&x.dep_map) argument
927 #define I1(x) \ argument
935 #define I2(x) \ argument