]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
hfs: introduce VFS superblock object back-reference
authorArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Thu, 12 Jul 2012 14:28:48 +0000 (17:28 +0300)
committerAl Viro <viro@zeniv.linux.org.uk>
Sun, 22 Jul 2012 19:58:08 +0000 (23:58 +0400)
Add an 'sb' VFS superblock back-reference to the 'struct hfs_sb_info' data
structure - we will need to find the VFS superblock from a
'struct hfs_sb_info' object in the next patch, so this change is jut a
preparation.

Remove few useless newlines while on it.

Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/hfs/hfs_fs.h
fs/hfs/super.c

index 1bf967c6bfdc6cb1b129887135f47608652b6311..351561223ec3a00e194e06283144cd08b246e059 100644 (file)
@@ -137,16 +137,12 @@ struct hfs_sb_info {
        gid_t s_gid;                            /* The gid of all files */
 
        int session, part;
-
        struct nls_table *nls_io, *nls_disk;
-
        struct mutex bitmap_lock;
-
        unsigned long flags;
-
        u16 blockoffset;
-
        int fs_div;
+       struct super_block *sb;
 };
 
 #define HFS_FLG_BITMAP_DIRTY   0
index 0730135b771e2d8d7c7df5e595a62a7705d020ab..99c6239bc3a184f56a41b4f6b190d273433030a7 100644 (file)
@@ -380,6 +380,7 @@ static int hfs_fill_super(struct super_block *sb, void *data, int silent)
        if (!sbi)
                return -ENOMEM;
 
+       sbi->sb = sb;
        sb->s_fs_info = sbi;
 
        res = -EINVAL;