Skip to content

Commit

Permalink
hfs: introduce VFS superblock object back-reference
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Artem Bityutskiy authored and Al Viro committed Jul 22, 2012
1 parent 4527440 commit b16ca62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
6 changes: 1 addition & 5 deletions fs/hfs/hfs_fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions fs/hfs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b16ca62

Please sign in to comment.