Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 147830
b: refs/heads/master
c: 429479f
h: refs/heads/master
v: v3
  • Loading branch information
Jan Kara authored and Al Viro committed Jun 12, 2009
1 parent 19de87b commit 2a2c9f7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bfe881255c74800147523b59c85328a1a826ba21
refs/heads/master: 429479f031322a0cc5c921ffb2321a51718dc875
2 changes: 1 addition & 1 deletion trunk/fs/block_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ struct super_block *freeze_bdev(struct block_device *bdev)
sb->s_frozen = SB_FREEZE_WRITE;
smp_wmb();

__fsync_super(sb);
fsync_super(sb);

sb->s_frozen = SB_FREEZE_TRANS;
smp_wmb();
Expand Down
7 changes: 3 additions & 4 deletions trunk/fs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ EXPORT_SYMBOL(unlock_super);
* device. Takes the superblock lock. Requires a second blkdev
* flush by the caller to complete the operation.
*/
void __fsync_super(struct super_block *sb)
static int __fsync_super(struct super_block *sb)
{
sync_inodes_sb(sb, 0);
vfs_dq_sync(sb);
Expand All @@ -300,7 +300,7 @@ void __fsync_super(struct super_block *sb)
unlock_super(sb);
if (sb->s_op->sync_fs)
sb->s_op->sync_fs(sb, 1);
sync_blockdev(sb->s_bdev);
return sync_blockdev(sb->s_bdev);
}

/*
Expand All @@ -310,8 +310,7 @@ void __fsync_super(struct super_block *sb)
*/
int fsync_super(struct super_block *sb)
{
__fsync_super(sb);
return sync_blockdev(sb->s_bdev);
return __fsync_super(sb);
}
EXPORT_SYMBOL_GPL(fsync_super);

Expand Down
1 change: 0 additions & 1 deletion trunk/include/linux/fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -2078,7 +2078,6 @@ extern int filemap_fdatawrite_range(struct address_space *mapping,
extern int vfs_fsync(struct file *file, struct dentry *dentry, int datasync);
extern void sync_supers(void);
extern void sync_filesystems(int wait);
extern void __fsync_super(struct super_block *sb);
extern void emergency_sync(void);
extern void emergency_remount(void);
extern int do_remount_sb(struct super_block *sb, int flags,
Expand Down

0 comments on commit 2a2c9f7

Please sign in to comment.