From: Jiapeng Chong Date: Mon, 5 Sep 2022 02:04:36 +0000 (+0800) Subject: io_uring/notif: Remove the unused function io_notif_complete() X-Git-Tag: v6.1-rc5~376^2~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4fa07edbb7eacfb56b3aa64f590e9f38e7f1042c;p=platform%2Fkernel%2Flinux-starfive.git io_uring/notif: Remove the unused function io_notif_complete() The function io_notif_complete() is defined in the notif.c file, but not called elsewhere, so delete this unused function. io_uring/notif.c:24:20: warning: unused function 'io_notif_complete' [-Wunused-function]. Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=2047 Reported-by: Abaci Robot Signed-off-by: Jiapeng Chong Reviewed-by: Pavel Begunkov Link: https://lore.kernel.org/r/20220905020436.51894-1-jiapeng.chong@linux.alibaba.com Signed-off-by: Jens Axboe --- diff --git a/io_uring/notif.c b/io_uring/notif.c index 38d7716..e37c656 100644 --- a/io_uring/notif.c +++ b/io_uring/notif.c @@ -21,14 +21,6 @@ static void __io_notif_complete_tw(struct io_kiocb *notif, bool *locked) io_req_task_complete(notif, locked); } -static inline void io_notif_complete(struct io_kiocb *notif) - __must_hold(¬if->ctx->uring_lock) -{ - bool locked = true; - - __io_notif_complete_tw(notif, &locked); -} - static void io_uring_tx_zerocopy_callback(struct sk_buff *skb, struct ubuf_info *uarg, bool success)