aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/ocfs2/inode.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/ocfs2/inode.c b/fs/ocfs2/inode.c
index ec25d9984192..50dbc486ef71 100644
--- a/fs/ocfs2/inode.c
+++ b/fs/ocfs2/inode.c
@@ -275,8 +275,10 @@ void ocfs2_populate_inode(struct inode *inode, struct ocfs2_dinode *fe,
275 275
276 inode->i_nlink = le16_to_cpu(fe->i_links_count); 276 inode->i_nlink = le16_to_cpu(fe->i_links_count);
277 277
278 if (fe->i_flags & cpu_to_le32(OCFS2_SYSTEM_FL)) 278 if (fe->i_flags & cpu_to_le32(OCFS2_SYSTEM_FL)) {
279 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_SYSTEM_FILE; 279 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_SYSTEM_FILE;
280 inode->i_flags |= S_NOQUOTA;
281 }
280 282
281 if (fe->i_flags & cpu_to_le32(OCFS2_LOCAL_ALLOC_FL)) { 283 if (fe->i_flags & cpu_to_le32(OCFS2_LOCAL_ALLOC_FL)) {
282 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_BITMAP; 284 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_BITMAP;