1WAKE_UP_ATOMIC_T(9) Driver Basics WAKE_UP_ATOMIC_T(9)
2
3
4
6 wake_up_atomic_t - Wake up a waiter on a atomic_t
7
9 void wake_up_atomic_t(atomic_t * p);
10
12 p
13 The atomic_t being waited on, a kernel virtual address
14
16 Wake up anyone waiting for the atomic_t to go to zero.
17
18 Abuse the bit-waker function and its waitqueue hash table set (the
19 atomic_t check is done by the waiter's wake function, not the by the
20 waker itself).
21
23Kernel Hackers Manual 3.10 June 2019 WAKE_UP_ATOMIC_T(9)