X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=io_uring%2Fpoll.c;h=b0bc785263948f00e5be4c3824c43df6587d84cb;hb=0848bf7e539aa33975c4a216444139532e4b526a;hp=4c360ba8793a50bbbd6f580361f1bb340b8408c0;hpb=4b3d6e0c6c4cb3565c73012d7d292c22e68393a9;p=platform%2Fkernel%2Flinux-rpi.git diff --git a/io_uring/poll.c b/io_uring/poll.c index 4c360ba..b0bc785 100644 --- a/io_uring/poll.c +++ b/io_uring/poll.c @@ -228,6 +228,21 @@ enum { IOU_POLL_REISSUE = 3, }; +static void __io_poll_execute(struct io_kiocb *req, int mask) +{ + io_req_set_res(req, mask, 0); + req->io_task_work.func = io_poll_task_func; + + trace_io_uring_task_add(req, mask); + io_req_task_work_add(req); +} + +static inline void io_poll_execute(struct io_kiocb *req, int res) +{ + if (io_poll_get_ownership(req)) + __io_poll_execute(req, res); +} + /* * All poll tw should go through this. Checks for poll events, manages * references, does rewait, etc. @@ -364,21 +379,6 @@ void io_poll_task_func(struct io_kiocb *req, struct io_tw_state *ts) } } -static void __io_poll_execute(struct io_kiocb *req, int mask) -{ - io_req_set_res(req, mask, 0); - req->io_task_work.func = io_poll_task_func; - - trace_io_uring_task_add(req, mask); - io_req_task_work_add(req); -} - -static inline void io_poll_execute(struct io_kiocb *req, int res) -{ - if (io_poll_get_ownership(req)) - __io_poll_execute(req, res); -} - static void io_poll_cancel_req(struct io_kiocb *req) { io_poll_mark_cancelled(req);