All of lore.kernel.org
 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
  0 siblings, 0 replies; 8+ 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] 8+ messages in thread
* [PATCH] io_uring: remove redundant assignment to ret in io_register_iowq_max_workers()
@ 2021-11-02 19:05 Nghia Le
  2021-11-02 20:29 ` Jens Axboe
  0 siblings, 1 reply; 8+ messages in thread
From: Nghia Le @ 2021-11-02 19:05 UTC (permalink / raw)
  To: axboe, asml.silence; +Cc: Nghia Le, io-uring, linux-kernel, lukas.bulwahn

After the assignment, only exit path with label 'err' uses ret as
return value. However,before exiting through this path with label 'err',
ret is assigned with the return value of io_wq_max_workers(). Hence, the
initial 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] 8+ messages in thread

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

Thread overview: 8+ 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
2021-11-02 19:05 Nghia Le
2021-11-02 20:29 ` Jens Axboe

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.