summaryrefslogtreecommitdiff
path: root/ext2ed
diff options
context:
space:
mode:
authorAditya Kali <adityakali@google.com>2011-02-15 14:27:27 -0800
committerTheodore Ts'o <tytso@mit.edu>2011-02-25 18:31:52 -0500
commit0edcc2702106ef8ea0d4ab60ef06c0c38b0b87ee (patch)
treee2f02cc1a348c4e418242b38f912a3b85f3e8ebd /ext2ed
parent855a77a19704ef7e0acd542cce19a6e8ee07582d (diff)
e2fsprogs: reserving code points for new ext4 quota feature
This patch adds support for detecting the new 'quota' feature in ext4. The patch reserves code points for usr and group quota inodes and also for the feature flag EXT4_FEATURE_RO_COMPAT_QUOTA. Signed-off-by: Aditya Kali <adityakali@google.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'ext2ed')
-rw-r--r--ext2ed/inode_com.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext2ed/inode_com.c b/ext2ed/inode_com.c
index 843286c5..8d4b9f33 100644
--- a/ext2ed/inode_com.c
+++ b/ext2ed/inode_com.c
@@ -222,11 +222,11 @@ void type_ext2_inode___show (char *command_line)
case EXT2_ROOT_INO:
wprintw (show_win,"Root inode - ");
break;
- case EXT2_ACL_IDX_INO:
- wprintw (show_win,"ACL index inode - ");
+ case EXT4_USR_QUOTA_INO:
+ wprintw (show_win,"User quota inode - ");
break;
- case EXT2_ACL_DATA_INO:
- wprintw (show_win,"ACL data inode - ");
+ case EXT4_GRP_QUOTA_INO:
+ wprintw (show_win,"Group quota inode - ");
break;
case EXT2_BOOT_LOADER_INO:
wprintw (show_win,"Boot loader inode - ");