• Home
  • Raw
  • Download

Lines Matching refs:x

223 #define L(x)			spin_lock(&lock_##x)  argument
224 #define U(x) spin_unlock(&lock_##x) argument
225 #define LU(x) L(x); U(x) argument
226 #define SI(x) spin_lock_init(&lock_##x) argument
228 #define WL(x) write_lock(&rwlock_##x) argument
229 #define WU(x) write_unlock(&rwlock_##x) argument
230 #define WLU(x) WL(x); WU(x) argument
232 #define RL(x) read_lock(&rwlock_##x) argument
233 #define RU(x) read_unlock(&rwlock_##x) argument
234 #define RLU(x) RL(x); RU(x) argument
235 #define RWI(x) rwlock_init(&rwlock_##x) argument
237 #define ML(x) mutex_lock(&mutex_##x) argument
238 #define MU(x) mutex_unlock(&mutex_##x) argument
239 #define MI(x) mutex_init(&mutex_##x) argument
241 #define RTL(x) rt_mutex_lock(&rtmutex_##x) argument
242 #define RTU(x) rt_mutex_unlock(&rtmutex_##x) argument
243 #define RTI(x) rt_mutex_init(&rtmutex_##x) argument
245 #define WSL(x) down_write(&rwsem_##x) argument
246 #define WSU(x) up_write(&rwsem_##x) argument
248 #define RSL(x) down_read(&rwsem_##x) argument
249 #define RSU(x) up_read(&rwsem_##x) argument
250 #define RWSI(x) init_rwsem(&rwsem_##x) argument
253 #define WWAI(x) ww_acquire_init(x, &ww_lockdep) argument
255 #define WWAI(x) do { ww_acquire_init(x, &ww_lockdep); (x)->deadlock_inject_countdown = ~0U; } whi… argument
257 #define WWAD(x) ww_acquire_done(x) argument
258 #define WWAF(x) ww_acquire_fini(x) argument
260 #define WWL(x, c) ww_mutex_lock(x, c) argument
261 #define WWT(x) ww_mutex_trylock(x) argument
262 #define WWL1(x) ww_mutex_lock(x, NULL) argument
263 #define WWU(x) ww_mutex_unlock(x) argument
266 #define LOCK_UNLOCK_2(x,y) LOCK(x); LOCK(y); UNLOCK(y); UNLOCK(x) argument
1317 # define I_SPINLOCK(x) lockdep_reset_lock(&lock_##x.dep_map) argument
1318 # define I_RAW_SPINLOCK(x) lockdep_reset_lock(&raw_lock_##x.dep_map) argument
1319 # define I_RWLOCK(x) lockdep_reset_lock(&rwlock_##x.dep_map) argument
1320 # define I_MUTEX(x) lockdep_reset_lock(&mutex_##x.dep_map) argument
1321 # define I_RWSEM(x) lockdep_reset_lock(&rwsem_##x.dep_map) argument
1322 # define I_WW(x) lockdep_reset_lock(&x.dep_map) argument
1323 # define I_LOCAL_LOCK(x) lockdep_reset_lock(&local_##x.dep_map) argument
1325 # define I_RTMUTEX(x) lockdep_reset_lock(&rtmutex_##x.dep_map) argument
1328 # define I_SPINLOCK(x)
1329 # define I_RAW_SPINLOCK(x)
1330 # define I_RWLOCK(x)
1331 # define I_MUTEX(x)
1332 # define I_RWSEM(x)
1333 # define I_WW(x)
1334 # define I_LOCAL_LOCK(x)
1338 # define I_RTMUTEX(x) argument
1342 #define I2_RTMUTEX(x) rt_mutex_init(&rtmutex_##x) argument
1344 #define I2_RTMUTEX(x)
1347 #define I1(x) \ argument
1349 I_SPINLOCK(x); \
1350 I_RWLOCK(x); \
1351 I_MUTEX(x); \
1352 I_RWSEM(x); \
1353 I_RTMUTEX(x); \
1356 #define I2(x) \ argument
1358 spin_lock_init(&lock_##x); \
1359 rwlock_init(&rwlock_##x); \
1360 mutex_init(&mutex_##x); \
1361 init_rwsem(&rwsem_##x); \
1362 I2_RTMUTEX(x); \