There are options to specify if the subvolume deletion should wait for commit after each subvol or at the end. This is reported at the beginning and considered as a noise. We'd like to report the mode for each subvolume instead. http://www.mail-archive.com/linux-btrfs%40vger.kernel.org/msg34617.html Reported-by: Marc MERLIN <marc@xxxxxxxxxxx Signed-off-by: David Sterba <dsterba@xxxxxxx> --- cmds-subvolume.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cmds-subvolume.c b/cmds-subvolume.c index 53eec467251d..4e452f4f4eb7 100644 --- a/cmds-subvolume.c +++ b/cmds-subvolume.c @@ -303,7 +303,9 @@ again: goto out; } - printf("Delete subvolume '%s/%s'\n", dname, vname); + printf("Delete subvolume (%s): '%s/%s'\n", + sync_mode == 2 || (sync_mode == 1 && cnt + 1 == argc) + ? "commit" : "no-commit", dname, vname); strncpy_null(args.name, vname); res = ioctl(fd, BTRFS_IOC_SNAP_DESTROY, &args); e = errno; -- 2.1.3 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html
