[PATCH 7/8] debugfs: Fix headers for quota commands
From: Jan Kara <jack@suse.cz>
Date: 2021-08-23 15:42:01
Subsystem:
the rest · Maintainer:
Linus Torvalds
list_quota and get_quota commands have 'blocks' header while what they actually show is a used space in bytes. Fix the header to state 'space' instead. Signed-off-by: Jan Kara <jack@suse.cz> --- debugfs/quota.c | 4 ++-- tests/f_orphquot/expect | 4 ++-- tests/f_quota/expect.0 | 12 ++++++------ 3 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/debugfs/quota.c b/debugfs/quota.c
index f792bd738781..1da1e03c6d88 100644
--- a/debugfs/quota.c
+++ b/debugfs/quota.c@@ -123,7 +123,7 @@ void do_list_quota(int argc, char *argv[], int sci_idx EXT2FS_ATTR((unused)), printf("%7s %2s %8s %8s %8s %8s %8s %8s\n", quota_type[type], "id", - "blocks", "quota", "limit", "inodes", "quota", "limit"); + "space", "quota", "limit", "inodes", "quota", "limit"); qh = current_qctx->quota_file[type]; retval = qh->qh_ops->scan_dquots(qh, list_quota_callback, NULL); if (retval) {
@@ -158,7 +158,7 @@ void do_get_quota(int argc, char *argv[], int sci_idx EXT2FS_ATTR((unused)), printf("%7s %2s %8s %8s %8s %8s %8s %8s\n", quota_type[type], "id", - "blocks", "quota", "limit", "inodes", "quota", "limit"); + "space", "quota", "limit", "inodes", "quota", "limit"); qh = current_qctx->quota_file[type];
diff --git a/tests/f_orphquot/expect b/tests/f_orphquot/expect
index f1f0b446c5d1..0f75decd16bd 100644
--- a/tests/f_orphquot/expect
+++ b/tests/f_orphquot/expect@@ -8,9 +8,9 @@ Pass 5: Checking group summary information test_filesystem: ***** FILE SYSTEM WAS MODIFIED ***** test_filesystem: 11/512 files (9.1% non-contiguous), 1070/2048 blocks Exit status is 0 - user id blocks quota limit inodes quota limit + user id space quota limit inodes quota limit 0 20480 0 0 2 0 0 1000 0 5000 6000 0 50 60 - group id blocks quota limit inodes quota limit + group id space quota limit inodes quota limit 0 20480 0 0 2 0 0 100 0 6000 7000 0 60 70
diff --git a/tests/f_quota/expect.0 b/tests/f_quota/expect.0
index eb5294ee2288..26454856699d 100644
--- a/tests/f_quota/expect.0
+++ b/tests/f_quota/expect.0@@ -1,21 +1,21 @@ debugfs: list_quota user - user id blocks quota limit inodes quota limit + user id space quota limit inodes quota limit 0 13312 0 0 2 0 0 34 1024 0 0 1 0 0 100 2048 32 50 2 20 30 debugfs: list_quota group - group id blocks quota limit inodes quota limit + group id space quota limit inodes quota limit 0 16384 0 0 5 0 0 debugfs: get_quota user 0 - user id blocks quota limit inodes quota limit + user id space quota limit inodes quota limit 0 13312 0 0 2 0 0 debugfs: get_quota user 100 - user id blocks quota limit inodes quota limit + user id space quota limit inodes quota limit 100 2048 32 50 2 20 30 debugfs: get_quota user 34 - user id blocks quota limit inodes quota limit + user id space quota limit inodes quota limit 34 1024 0 0 1 0 0 debugfs: get_quota group 0 - group id blocks quota limit inodes quota limit + group id space quota limit inodes quota limit 0 16384 0 0 5 0 0 debugfs:
--
2.26.2