summaryrefslogtreecommitdiffstats
path: root/fs/sysv/super.c
diff options
context:
space:
mode:
authorAl Viro2010-12-18 17:16:30 +0100
committerAl Viro2011-01-13 02:02:44 +0100
commit30304aba6a053f114092cea6643a96ac2902bc5a (patch)
treeb4ff88e5ccf79a26e0eab6709ac33a9920cfc54b /fs/sysv/super.c
parentswitch fuse (diff)
downloadkernel-qcow2-linux-30304aba6a053f114092cea6643a96ac2902bc5a.tar.gz
kernel-qcow2-linux-30304aba6a053f114092cea6643a96ac2902bc5a.tar.xz
kernel-qcow2-linux-30304aba6a053f114092cea6643a96ac2902bc5a.zip
switch sysv
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/sysv/super.c')
-rw-r--r--fs/sysv/super.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/sysv/super.c b/fs/sysv/super.c
index 76712aefc4ab..f60c196913ea 100644
--- a/fs/sysv/super.c
+++ b/fs/sysv/super.c
@@ -332,6 +332,10 @@ static int complete_read_super(struct super_block *sb, int silent, int size)
sb->s_magic = SYSV_MAGIC_BASE + sbi->s_type;
/* set up enough so that it can read an inode */
sb->s_op = &sysv_sops;
+ if (sbi->s_forced_ro)
+ sb->s_flags |= MS_RDONLY;
+ if (sbi->s_truncate)
+ sb->s_d_op = &sysv_dentry_operations;
root_inode = sysv_iget(sb, SYSV_ROOT_INO);
if (IS_ERR(root_inode)) {
printk("SysV FS: get root inode failed\n");
@@ -343,10 +347,6 @@ static int complete_read_super(struct super_block *sb, int silent, int size)
printk("SysV FS: get root dentry failed\n");
return 0;
}
- if (sbi->s_forced_ro)
- sb->s_flags |= MS_RDONLY;
- if (sbi->s_truncate)
- d_set_d_op(sb->s_root, &sysv_dentry_operations);
return 1;
}