Searched refs:IO_POLL_REF_MASK (Results 1 - 1 of 1) sorted by relevance

/linux-master/io_uring/
H A Dpoll.c45 #define IO_POLL_REF_MASK GENMASK(29, 0) macro
82 if (v & IO_POLL_REF_MASK)
84 return !(atomic_fetch_inc(&req->poll_refs) & IO_POLL_REF_MASK);
88 * If refs part of ->poll_refs (see IO_POLL_REF_MASK) is 0, it's free. We can
97 return !(atomic_fetch_inc(&req->poll_refs) & IO_POLL_REF_MASK);
276 if (WARN_ON_ONCE(!(v & IO_POLL_REF_MASK)))
285 if ((v & IO_POLL_REF_MASK) != 1)
347 v &= IO_POLL_REF_MASK;
348 } while (atomic_sub_return(v, &req->poll_refs) & IO_POLL_REF_MASK);

Completed in 176 milliseconds