Btrfs-progs: introduces '-p' option to print the ID of the parent qgroups

This patch introduces '-p' option to print the ID of the parent qgroups.
You may use it like:

	btrfs qgroup show -p <path>
For Example:
                qgroupid(2/0)
                /         \
               /           \
              /             \
        qgroupid(1/0)  qgroupid(1/1)
              \              /
               \            /
                qgroupid(0/1)

If we use the command:

	btrfs qgroup show -p <path>
The result will output
	0/1 -- -- 1/0,1/1
	1/0 -- -- 2/0
	1/1 -- -- 2/0
	2/0 -- -- --

Signed-off-by: Wang Shilong <wangsl-fnst@cn.fujitsu.com>
Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
master
Wang Shilong 2013-10-07 15:21:38 +08:00 committed by Chris Mason
parent 1e174d2621
commit 04e271786f
3 changed files with 43 additions and 3 deletions

View File

@ -202,22 +202,39 @@ static int cmd_qgroup_destroy(int argc, char **argv)
} }
static const char * const cmd_qgroup_show_usage[] = { static const char * const cmd_qgroup_show_usage[] = {
"btrfs qgroup show <path>", "btrfs qgroup show -p <path>",
"Show all subvolume quota groups.", "Show all subvolume quota groups.",
"-p print parent qgroup id",
NULL NULL
}; };
static int cmd_qgroup_show(int argc, char **argv) static int cmd_qgroup_show(int argc, char **argv)
{ {
char *path;
int ret = 0; int ret = 0;
int fd; int fd;
int e; int e;
char *path = argv[1];
DIR *dirstream = NULL; DIR *dirstream = NULL;
int c;
if (check_argc_exact(argc, 2)) optind = 1;
while (1) {
c = getopt(argc, argv, "p");
if (c < 0)
break;
switch (c) {
case 'p':
btrfs_qgroup_setup_print_column(
BTRFS_QGROUP_PARENT);
break;
default:
usage(cmd_qgroup_show_usage);
}
}
if (check_argc_exact(argc - optind, 1))
usage(cmd_qgroup_show_usage); usage(cmd_qgroup_show_usage);
path = argv[optind];
fd = open_file_or_dir(path, &dirstream); fd = open_file_or_dir(path, &dirstream);
if (fd < 0) { if (fd < 0) {
fprintf(stderr, "ERROR: can't access '%s'\n", path); fprintf(stderr, "ERROR: can't access '%s'\n", path);

View File

@ -87,6 +87,11 @@ struct {
.column_name = "Excl", .column_name = "Excl",
.need_print = 1, .need_print = 1,
}, },
{
.name = "parent",
.column_name = "Parent",
.need_print = 0,
},
{ {
.name = NULL, .name = NULL,
.column_name = NULL, .column_name = NULL,
@ -108,6 +113,20 @@ void btrfs_qgroup_setup_print_column(enum btrfs_qgroup_column_enum column)
btrfs_qgroup_columns[i].need_print = 1; btrfs_qgroup_columns[i].need_print = 1;
} }
static void print_parent_column(struct btrfs_qgroup *qgroup)
{
struct btrfs_qgroup_list *list = NULL;
list_for_each_entry(list, &qgroup->qgroups, next_qgroup) {
printf("%llu/%llu", (list->qgroup)->qgroupid >> 48,
((1ll << 48) - 1) & (list->qgroup)->qgroupid);
if (!list_is_last(&list->next_qgroup, &qgroup->qgroups))
printf(",");
}
if (list_empty(&qgroup->qgroups))
printf("---");
}
static void print_qgroup_column(struct btrfs_qgroup *qgroup, static void print_qgroup_column(struct btrfs_qgroup *qgroup,
enum btrfs_qgroup_column_enum column) enum btrfs_qgroup_column_enum column)
{ {
@ -125,6 +144,9 @@ static void print_qgroup_column(struct btrfs_qgroup *qgroup,
case BTRFS_QGROUP_EXCL: case BTRFS_QGROUP_EXCL:
printf("%lld", qgroup->excl); printf("%lld", qgroup->excl);
break; break;
case BTRFS_QGROUP_PARENT:
print_parent_column(qgroup);
break;
default: default:
break; break;
} }

View File

@ -26,6 +26,7 @@ enum btrfs_qgroup_column_enum {
BTRFS_QGROUP_QGROUPID, BTRFS_QGROUP_QGROUPID,
BTRFS_QGROUP_RFER, BTRFS_QGROUP_RFER,
BTRFS_QGROUP_EXCL, BTRFS_QGROUP_EXCL,
BTRFS_QGROUP_PARENT,
BTRFS_QGROUP_ALL, BTRFS_QGROUP_ALL,
}; };