diff mbox series

io_uring: Remove unused function

Message ID 20240328022324.78029-1-jiapeng.chong@linux.alibaba.com (mailing list archive)
State New
Headers show
Series io_uring: Remove unused function | expand

Commit Message

Jiapeng Chong March 28, 2024, 2:23 a.m. UTC
The function are defined in the io_uring.c file, but not called
elsewhere, so delete the unused function.

io_uring/io_uring.c:646:20: warning: unused function '__io_cq_unlock'.

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=8660
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
---
 io_uring/io_uring.c | 6 ------
 1 file changed, 6 deletions(-)

Comments

Jens Axboe March 28, 2024, 1:43 p.m. UTC | #1
On Thu, 28 Mar 2024 10:23:24 +0800, Jiapeng Chong wrote:
> The function are defined in the io_uring.c file, but not called
> elsewhere, so delete the unused function.
> 
> io_uring/io_uring.c:646:20: warning: unused function '__io_cq_unlock'.
> 
> 

Applied, thanks!

[1/1] io_uring: Remove unused function
      commit: 976a421d86422abb554b4544ddcad31f1cade3a4

Best regards,
diff mbox series

Patch

diff --git a/io_uring/io_uring.c b/io_uring/io_uring.c
index 585fbc363eaf..8a9584c5c8ce 100644
--- a/io_uring/io_uring.c
+++ b/io_uring/io_uring.c
@@ -643,12 +643,6 @@  static inline void __io_cq_lock(struct io_ring_ctx *ctx)
 		spin_lock(&ctx->completion_lock);
 }
 
-static inline void __io_cq_unlock(struct io_ring_ctx *ctx)
-{
-	if (!ctx->lockless_cq)
-		spin_unlock(&ctx->completion_lock);
-}
-
 static inline void io_cq_lock(struct io_ring_ctx *ctx)
 	__acquires(ctx->completion_lock)
 {