aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtem Bityutskiy <artem.bityutskiy@linux.intel.com>2012-07-12 10:26:30 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2012-07-22 15:58:03 -0400
commit58770d7e83eede5fafbcdf54a604277d70010705 (patch)
treefbb6772b943bfd6ef0513bc7ec8d87a50ea9b330
parentb7a90e8043e7ab1922126e1c1c5c004b470f9e2a (diff)
hfsplus: remove useless check
This check is useless because we always have 'sb->s_fs_info' to be non-NULL. Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
-rw-r--r--fs/hfsplus/super.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/hfsplus/super.c b/fs/hfsplus/super.c
index 9e9c278830de..f4f3d5463061 100644
--- a/fs/hfsplus/super.c
+++ b/fs/hfsplus/super.c
@@ -240,9 +240,6 @@ static void hfsplus_put_super(struct super_block *sb)
240 240
241 dprint(DBG_SUPER, "hfsplus_put_super\n"); 241 dprint(DBG_SUPER, "hfsplus_put_super\n");
242 242
243 if (!sb->s_fs_info)
244 return;
245
246 if (!(sb->s_flags & MS_RDONLY) && sbi->s_vhdr) { 243 if (!(sb->s_flags & MS_RDONLY) && sbi->s_vhdr) {
247 struct hfsplus_vh *vhdr = sbi->s_vhdr; 244 struct hfsplus_vh *vhdr = sbi->s_vhdr;
248 245