diff options
author | Andreas Rohner <andreas.rohner@gmx.net> | 2014-10-13 18:53:20 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-10-13 20:18:20 -0400 |
commit | e2c7617ae36b27f97643bfa08aabe27e630c1a76 (patch) | |
tree | 306dc0642ffbd8c4f837b7fbae960a49116053e6 /fs/nilfs2/ioctl.c | |
parent | 0f2a84f41aff6cefd1bc768738159d0cacea2f2d (diff) |
nilfs2: add missing blkdev_issue_flush() to nilfs_sync_fs()
Under normal circumstances nilfs_sync_fs() writes out the super block,
which causes a flush of the underlying block device. But this depends
on the THE_NILFS_SB_DIRTY flag, which is only set if the pointer to the
last segment crosses a segment boundary. So if only a small amount of
data is written before the call to nilfs_sync_fs(), no flush of the
block device occurs.
In the above case an additional call to blkdev_issue_flush() is needed.
To prevent unnecessary overhead, the new flag nilfs->ns_flushed_device
is introduced, which is cleared whenever new logs are written and set
whenever the block device is flushed. For convenience the function
nilfs_flush_device() is added, which contains the above logic.
Signed-off-by: Andreas Rohner <andreas.rohner@gmx.net>
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/nilfs2/ioctl.c')
-rw-r--r-- | fs/nilfs2/ioctl.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/fs/nilfs2/ioctl.c b/fs/nilfs2/ioctl.c index 422fb54b7377..9a20e513d7eb 100644 --- a/fs/nilfs2/ioctl.c +++ b/fs/nilfs2/ioctl.c | |||
@@ -1022,11 +1022,9 @@ static int nilfs_ioctl_sync(struct inode *inode, struct file *filp, | |||
1022 | return ret; | 1022 | return ret; |
1023 | 1023 | ||
1024 | nilfs = inode->i_sb->s_fs_info; | 1024 | nilfs = inode->i_sb->s_fs_info; |
1025 | if (nilfs_test_opt(nilfs, BARRIER)) { | 1025 | ret = nilfs_flush_device(nilfs); |
1026 | ret = blkdev_issue_flush(inode->i_sb->s_bdev, GFP_KERNEL, NULL); | 1026 | if (ret < 0) |
1027 | if (ret == -EIO) | 1027 | return ret; |
1028 | return ret; | ||
1029 | } | ||
1030 | 1028 | ||
1031 | if (argp != NULL) { | 1029 | if (argp != NULL) { |
1032 | down_read(&nilfs->ns_segctor_sem); | 1030 | down_read(&nilfs->ns_segctor_sem); |