diff options
| author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2012-07-12 17:28:44 +0300 | 
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-07-22 23:58:05 +0400 | 
| commit | 715189d836ab276b3d0fc114681f12b423686ffa (patch) | |
| tree | a78c44275d3094363bf6055f114f6da0c909f85f /fs/hfs/super.c | |
| parent | 9e6c5829b07c9ba6668807631914efc557fab059 (diff) | |
| download | linux-715189d836ab276b3d0fc114681f12b423686ffa.tar.bz2 | |
hfs: push lock_super down
HFS uses 'lock_super()'/'unlock_super()' around 'hfs_mdb_commit()' in order
to serialize MDB (Master Directory Block) changes. Push it down to
'hfs_mdb_commit()' in order to simplify the code a bit.
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/hfs/super.c')
| -rw-r--r-- | fs/hfs/super.c | 4 | 
1 files changed, 0 insertions, 4 deletions
diff --git a/fs/hfs/super.c b/fs/hfs/super.c index 7b4c537d6e13..f7c06bbf33bc 100644 --- a/fs/hfs/super.c +++ b/fs/hfs/super.c @@ -50,21 +50,17 @@ MODULE_LICENSE("GPL");   */  static void hfs_write_super(struct super_block *sb)  { -	lock_super(sb);  	sb->s_dirt = 0;  	/* sync everything to the buffers */  	if (!(sb->s_flags & MS_RDONLY))  		hfs_mdb_commit(sb); -	unlock_super(sb);  }  static int hfs_sync_fs(struct super_block *sb, int wait)  { -	lock_super(sb);  	hfs_mdb_commit(sb);  	sb->s_dirt = 0; -	unlock_super(sb);  	return 0;  }  |