diff options
author | Jan Kara <jack@suse.cz> | 2008-08-20 09:43:36 -0400 |
---|---|---|
committer | Mark Fasheh <mfasheh@suse.com> | 2009-01-05 11:40:23 -0500 |
commit | 1a224ad11eeb190da4a123e156601aad1bb67f24 (patch) | |
tree | 093f4e8449c0fed95af2d73904f67c65a93241ff /fs/ocfs2/inode.c | |
parent | 90e86a63eadf1a3b2f19b68d82150dc63fe01443 (diff) |
ocfs2: Assign feature bits and system inodes to quota feature and quota files
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
Diffstat (limited to 'fs/ocfs2/inode.c')
-rw-r--r-- | fs/ocfs2/inode.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ocfs2/inode.c b/fs/ocfs2/inode.c index ec3497bafda6..ec25d9984192 100644 --- a/fs/ocfs2/inode.c +++ b/fs/ocfs2/inode.c | |||
@@ -283,6 +283,8 @@ void ocfs2_populate_inode(struct inode *inode, struct ocfs2_dinode *fe, | |||
283 | mlog(0, "local alloc inode: i_ino=%lu\n", inode->i_ino); | 283 | mlog(0, "local alloc inode: i_ino=%lu\n", inode->i_ino); |
284 | } else if (fe->i_flags & cpu_to_le32(OCFS2_BITMAP_FL)) { | 284 | } else if (fe->i_flags & cpu_to_le32(OCFS2_BITMAP_FL)) { |
285 | OCFS2_I(inode)->ip_flags |= OCFS2_INODE_BITMAP; | 285 | OCFS2_I(inode)->ip_flags |= OCFS2_INODE_BITMAP; |
286 | } else if (fe->i_flags & cpu_to_le32(OCFS2_QUOTA_FL)) { | ||
287 | inode->i_flags |= S_NOQUOTA; | ||
286 | } else if (fe->i_flags & cpu_to_le32(OCFS2_SUPER_BLOCK_FL)) { | 288 | } else if (fe->i_flags & cpu_to_le32(OCFS2_SUPER_BLOCK_FL)) { |
287 | mlog(0, "superblock inode: i_ino=%lu\n", inode->i_ino); | 289 | mlog(0, "superblock inode: i_ino=%lu\n", inode->i_ino); |
288 | /* we can't actually hit this as read_inode can't | 290 | /* we can't actually hit this as read_inode can't |