public inbox for linux-safety@lists.elisa.tech
 help / color / mirror / Atom feed
* [PATCH] io_uring: remove redundant assignment to ret in io_register_iowq_max_workers()
@ 2021-10-29 15:59 Nghia Le
  2021-10-29 15:59 ` [linux-safety] " Nghia Le
  2021-11-02 16:30 ` Lukas Bulwahn
  0 siblings, 2 replies; 6+ messages in thread
From: Nghia Le @ 2021-10-29 15:59 UTC (permalink / raw)
  To: linux-safety, lukas.bulwahn; +Cc: Nghia Le

After the assignment, no paths but only exit path 'err' using ret as
return value. However,before going to exit path 'err', ret is changed
as the return value of io_wq_max_workers(). Hence, the assignment is
redundant and can be removed.

Signed-off-by: Nghia Le <nghialm78@gmail.com>
---
 fs/io_uring.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/fs/io_uring.c b/fs/io_uring.c
index acc05ff3aa19..d18f1f46ca83 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -10800,7 +10800,6 @@ static __cold int io_register_iowq_max_workers(struct io_ring_ctx *ctx,
 	memcpy(ctx->iowq_limits, new_count, sizeof(new_count));
 	ctx->iowq_limits_set = true;
 
-	ret = -EINVAL;
 	if (tctx && tctx->io_wq) {
 		ret = io_wq_max_workers(tctx->io_wq, new_count);
 		if (ret)
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-11-02 19:14 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-29 15:59 [PATCH] io_uring: remove redundant assignment to ret in io_register_iowq_max_workers() Nghia Le
2021-10-29 15:59 ` [linux-safety] " Nghia Le
2021-11-02 16:30 ` Lukas Bulwahn
2021-11-02 16:30   ` [linux-safety] " Lukas Bulwahn
2021-11-02 19:14   ` Nghia Le
2021-11-02 19:14     ` [linux-safety] " Nghia Le

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox