All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] btrfs-progs: fix comments in cmd_filesystem_show
@ 2021-09-30 12:18 Anand Jain
  2021-10-05 15:20 ` David Sterba
  0 siblings, 1 reply; 2+ messages in thread
From: Anand Jain @ 2021-09-30 12:18 UTC (permalink / raw)
  To: linux-btrfs

I had to go back to find what BTRFS_ARG_REG is, add a comment for that.

And, search_umounted_fs_uuids() is also to find the seed device, so bring
the related comment above it.

No functional changes.

Signed-off-by: Anand Jain <anand.jain@oracle.com>
---
 cmds/filesystem.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/cmds/filesystem.c b/cmds/filesystem.c
index 4f123d25320f..2a5ca8ddd4f9 100644
--- a/cmds/filesystem.c
+++ b/cmds/filesystem.c
@@ -753,6 +753,7 @@ static int cmd_filesystem_show(const struct cmd_struct *cmd,
 devs_only:
 	if (type == BTRFS_ARG_REG) {
 		/*
+		 * Given input (search) is regular file.
 		 * We don't close the fs_info because it will free the device,
 		 * this is not a long-running process so it's fine
 		 */
@@ -769,16 +770,17 @@ devs_only:
 		return 1;
 	}
 
+	/*
+	 * The seed/sprout mappings are not detected yet, do mapping build for
+	 * all umounted fs. But first, copy all unmounted UUIDs only to
+	 * all_uuids.
+	 */
 	ret = search_umounted_fs_uuids(&all_uuids, search, &found);
 	if (ret < 0) {
 		error("searching target device returned error %d", ret);
 		return 1;
 	}
 
-	/*
-	 * The seed/sprout mapping are not detected yet,
-	 * do mapping build for all umounted fs
-	 */
 	ret = map_seed_devices(&all_uuids);
 	if (ret) {
 		error("mapping seed devices returned error %d", ret);
-- 
2.31.1


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

* Re: [PATCH] btrfs-progs: fix comments in cmd_filesystem_show
  2021-09-30 12:18 [PATCH] btrfs-progs: fix comments in cmd_filesystem_show Anand Jain
@ 2021-10-05 15:20 ` David Sterba
  0 siblings, 0 replies; 2+ messages in thread
From: David Sterba @ 2021-10-05 15:20 UTC (permalink / raw)
  To: Anand Jain; +Cc: linux-btrfs

On Thu, Sep 30, 2021 at 08:18:55PM +0800, Anand Jain wrote:
> I had to go back to find what BTRFS_ARG_REG is, add a comment for that.
> 
> And, search_umounted_fs_uuids() is also to find the seed device, so bring
> the related comment above it.
> 
> No functional changes.
> 
> Signed-off-by: Anand Jain <anand.jain@oracle.com>

Added to devel, thanks.

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

end of thread, other threads:[~2021-10-05 15:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-30 12:18 [PATCH] btrfs-progs: fix comments in cmd_filesystem_show Anand Jain
2021-10-05 15:20 ` David Sterba

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.