Lines Matching refs:futexv
66 struct futex_vector *futexv = req->async_data; in io_futexv_complete() local
73 res = futex_unqueue_multiple(futexv, iof->futex_nr); in io_futexv_complete()
172 struct futex_vector *futexv; in io_futexv_prep() local
185 futexv = kcalloc(iof->futex_nr, sizeof(*futexv), GFP_KERNEL); in io_futexv_prep()
186 if (!futexv) in io_futexv_prep()
189 ret = futex_parse_waitv(futexv, iof->uwaitv, iof->futex_nr, in io_futexv_prep()
192 kfree(futexv); in io_futexv_prep()
199 req->async_data = futexv; in io_futexv_prep()
219 struct futex_vector *futexv = req->async_data; in io_futexv_wait() local
225 ret = futex_wait_multiple_setup(futexv, iof->futex_nr, &woken); in io_futexv_wait()
234 kfree(futexv); in io_futexv_wait()