All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] btrfs: remove unneeded variable: "ret"
@ 2021-06-28  8:30 13145886936
  2021-06-28  9:21 ` Qu Wenruo
  2021-06-28 11:38 ` Qu Wenruo
  0 siblings, 2 replies; 13+ messages in thread
From: 13145886936 @ 2021-06-28  8:30 UTC (permalink / raw)
  To: clm, josef, dsterba; +Cc: linux-btrfs, linux-kernel, gushengxian, gushengxian

From: gushengxian <gushengxian@yulong.com>

Remove unneeded variable: "ret".

Signed-off-by: gushengxian <13145886936@163.com>
Signed-off-by: gushengxian <gushengxian@yulong.com>
---
 fs/btrfs/disk-io.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c
index b117dd3b8172..7e65a54b7839 100644
--- a/fs/btrfs/disk-io.c
+++ b/fs/btrfs/disk-io.c
@@ -4624,7 +4624,6 @@ static int btrfs_destroy_delayed_refs(struct btrfs_transaction *trans,
 	struct rb_node *node;
 	struct btrfs_delayed_ref_root *delayed_refs;
 	struct btrfs_delayed_ref_node *ref;
-	int ret = 0;
 
 	delayed_refs = &trans->delayed_refs;
 
@@ -4632,7 +4631,7 @@ static int btrfs_destroy_delayed_refs(struct btrfs_transaction *trans,
 	if (atomic_read(&delayed_refs->num_entries) == 0) {
 		spin_unlock(&delayed_refs->lock);
 		btrfs_debug(fs_info, "delayed_refs has NO entry");
-		return ret;
+		return 0;
 	}
 
 	while ((node = rb_first_cached(&delayed_refs->href_root)) != NULL) {
@@ -4695,7 +4694,7 @@ static int btrfs_destroy_delayed_refs(struct btrfs_transaction *trans,
 
 	spin_unlock(&delayed_refs->lock);
 
-	return ret;
+	return 0;
 }
 
 static void btrfs_destroy_delalloc_inodes(struct btrfs_root *root)
-- 
2.25.1


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

end of thread, other threads:[~2021-06-28 12:54 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-28  8:30 [PATCH] btrfs: remove unneeded variable: "ret" 13145886936
2021-06-28  9:21 ` Qu Wenruo
2021-06-28  9:34   ` Damien Le Moal
2021-06-28  9:38     ` Johannes Thumshirn
2021-06-28  9:44       ` Qu Wenruo
2021-06-28  9:48         ` Damien Le Moal
2021-06-28  9:52           ` Qu Wenruo
2021-06-28 12:04           ` David Sterba
2021-06-28 12:13             ` Damien Le Moal
2021-06-28 12:19             ` Qu Wenruo
2021-06-28 12:43               ` Nikolay Borisov
2021-06-28 12:51               ` David Sterba
2021-06-28 11:38 ` Qu Wenruo

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.