• Home
  • Raw
  • Download

Lines Matching refs:x

214 #define L(x)			raw_spin_lock(&lock_##x)  argument
215 #define U(x) raw_spin_unlock(&lock_##x) argument
216 #define LU(x) L(x); U(x) argument
217 #define SI(x) raw_spin_lock_init(&lock_##x) argument
219 #define WL(x) write_lock(&rwlock_##x) argument
220 #define WU(x) write_unlock(&rwlock_##x) argument
221 #define WLU(x) WL(x); WU(x) argument
223 #define RL(x) read_lock(&rwlock_##x) argument
224 #define RU(x) read_unlock(&rwlock_##x) argument
225 #define RLU(x) RL(x); RU(x) argument
226 #define RWI(x) rwlock_init(&rwlock_##x) argument
228 #define ML(x) mutex_lock(&mutex_##x) argument
229 #define MU(x) mutex_unlock(&mutex_##x) argument
230 #define MI(x) mutex_init(&mutex_##x) argument
232 #define RTL(x) rt_mutex_lock(&rtmutex_##x) argument
233 #define RTU(x) rt_mutex_unlock(&rtmutex_##x) argument
234 #define RTI(x) rt_mutex_init(&rtmutex_##x) argument
236 #define WSL(x) down_write(&rwsem_##x) argument
237 #define WSU(x) up_write(&rwsem_##x) argument
239 #define RSL(x) down_read(&rwsem_##x) argument
240 #define RSU(x) up_read(&rwsem_##x) argument
241 #define RWSI(x) init_rwsem(&rwsem_##x) argument
244 #define WWAI(x) ww_acquire_init(x, &ww_lockdep) argument
246 #define WWAI(x) do { ww_acquire_init(x, &ww_lockdep); (x)->deadlock_inject_countdown = ~0U; } whi… argument
248 #define WWAD(x) ww_acquire_done(x) argument
249 #define WWAF(x) ww_acquire_fini(x) argument
251 #define WWL(x, c) ww_mutex_lock(x, c) argument
252 #define WWT(x) ww_mutex_trylock(x) argument
253 #define WWL1(x) ww_mutex_lock(x, NULL) argument
254 #define WWU(x) ww_mutex_unlock(x) argument
257 #define LOCK_UNLOCK_2(x,y) LOCK(x); LOCK(y); UNLOCK(y); UNLOCK(x) argument
1308 # define I_SPINLOCK(x) lockdep_reset_lock(&lock_##x.dep_map) argument
1309 # define I_RWLOCK(x) lockdep_reset_lock(&rwlock_##x.dep_map) argument
1310 # define I_MUTEX(x) lockdep_reset_lock(&mutex_##x.dep_map) argument
1311 # define I_RWSEM(x) lockdep_reset_lock(&rwsem_##x.dep_map) argument
1312 # define I_WW(x) lockdep_reset_lock(&x.dep_map) argument
1314 # define I_RTMUTEX(x) lockdep_reset_lock(&rtmutex_##x.dep_map) argument
1317 # define I_SPINLOCK(x)
1318 # define I_RWLOCK(x)
1319 # define I_MUTEX(x)
1320 # define I_RWSEM(x)
1321 # define I_WW(x)
1325 # define I_RTMUTEX(x) argument
1329 #define I2_RTMUTEX(x) rt_mutex_init(&rtmutex_##x) argument
1331 #define I2_RTMUTEX(x)
1334 #define I1(x) \ argument
1336 I_SPINLOCK(x); \
1337 I_RWLOCK(x); \
1338 I_MUTEX(x); \
1339 I_RWSEM(x); \
1340 I_RTMUTEX(x); \
1343 #define I2(x) \ argument
1345 raw_spin_lock_init(&lock_##x); \
1346 rwlock_init(&rwlock_##x); \
1347 mutex_init(&mutex_##x); \
1348 init_rwsem(&rwsem_##x); \
1349 I2_RTMUTEX(x); \