diff options
author | Eric Sandeen <sandeen@redhat.com> | 2008-02-05 22:36:43 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2008-02-05 22:36:43 -0500 |
commit | 0040d9875dcccfcb2131417b10fbd9841bc5f05b (patch) | |
tree | 1480723c649906ec01c4b3c7ee7e2b667324665a /fs/ext4/inode.c | |
parent | 42a10add852e6291a7544afd8a286622a3e6ae76 (diff) |
allow in-inode EAs on ext4 root inode
The ext3 root inode was treated specially with respect
to in-inode extended attributes, for reasons detailed
in the removed comment below. The first mkfs-created
inodes would not get extra_i_size or the EXT3_STATE_XATTR
flag set in ext3_read_inode, which disallowed reading or
setting in-inode EAs on the root.
However, in ext4, ext4_mark_inode_dirty calls
ext4_expand_extra_isize for all inodes; once this is done
EAs may be placed in the root ext4 inode body.
But for reasons above, it won't be found after a reboot.
testcase:
setfattr -n user.name -v value mntpt/
setfattr -n user.name2 -v value2 mntpt/
umount mntpt/; remount mntpt/
getfattr -d mntpt/
name2/value2 has gone missing; debugfs shows it in the
inode body, but it is not found there by getattr.
The following fixes it up; newer mkfs appears to properly
zero the inodes, so this workaround isn't needed for ext4.
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/inode.c')
-rw-r--r-- | fs/ext4/inode.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index f4e387452246..bbfabf876e78 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c | |||
@@ -2758,13 +2758,7 @@ struct inode *ext4_iget(struct super_block *sb, unsigned long ino) | |||
2758 | ei->i_data[block] = raw_inode->i_block[block]; | 2758 | ei->i_data[block] = raw_inode->i_block[block]; |
2759 | INIT_LIST_HEAD(&ei->i_orphan); | 2759 | INIT_LIST_HEAD(&ei->i_orphan); |
2760 | 2760 | ||
2761 | if (inode->i_ino >= EXT4_FIRST_INO(inode->i_sb) + 1 && | 2761 | if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { |
2762 | EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE) { | ||
2763 | /* | ||
2764 | * When mke2fs creates big inodes it does not zero out | ||
2765 | * the unused bytes above EXT4_GOOD_OLD_INODE_SIZE, | ||
2766 | * so ignore those first few inodes. | ||
2767 | */ | ||
2768 | ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize); | 2762 | ei->i_extra_isize = le16_to_cpu(raw_inode->i_extra_isize); |
2769 | if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize > | 2763 | if (EXT4_GOOD_OLD_INODE_SIZE + ei->i_extra_isize > |
2770 | EXT4_INODE_SIZE(inode->i_sb)) { | 2764 | EXT4_INODE_SIZE(inode->i_sb)) { |