Home
last modified time | relevance | path

Searched refs:hb1 (Results 1 – 1 of 1) sorted by relevance

/linux-4.4.14/kernel/
Dfutex.c1299 double_lock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2) in double_lock_hb() argument
1301 if (hb1 <= hb2) { in double_lock_hb()
1302 spin_lock(&hb1->lock); in double_lock_hb()
1303 if (hb1 < hb2) in double_lock_hb()
1307 spin_lock_nested(&hb1->lock, SINGLE_DEPTH_NESTING); in double_lock_hb()
1312 double_unlock_hb(struct futex_hash_bucket *hb1, struct futex_hash_bucket *hb2) in double_unlock_hb() argument
1314 spin_unlock(&hb1->lock); in double_unlock_hb()
1315 if (hb1 != hb2) in double_unlock_hb()
1380 struct futex_hash_bucket *hb1, *hb2; in futex_wake_op() local
1393 hb1 = hash_futex(&key1); in futex_wake_op()
[all …]