diff options
author | Mike Galbraith <efault@gmx.de> | 2008-02-08 07:20:23 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 12:22:34 -0500 |
commit | 18914b1884ebdbcd4d4454100502a23d1d2dba43 (patch) | |
tree | e52412029b3c0d977e12454feb2a13f8415df6d9 /fs/fs-writeback.c | |
parent | abe8be3abe4c2043bd766f32d7eba62c12dbb0b3 (diff) |
write_inode_now(): avoid unnecessary synchronous write
We shouldn't use WB_SYNC_ALL if the caller is asking for asynchronous
treatment.
Signed-off-by: Mike Galbraith <efault@gmx.de>
Acked-by: Jan Kara <jack@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/fs-writeback.c')
-rw-r--r-- | fs/fs-writeback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c index db80ce9eb1d0..c0076077d338 100644 --- a/fs/fs-writeback.c +++ b/fs/fs-writeback.c | |||
@@ -655,7 +655,7 @@ int write_inode_now(struct inode *inode, int sync) | |||
655 | int ret; | 655 | int ret; |
656 | struct writeback_control wbc = { | 656 | struct writeback_control wbc = { |
657 | .nr_to_write = LONG_MAX, | 657 | .nr_to_write = LONG_MAX, |
658 | .sync_mode = WB_SYNC_ALL, | 658 | .sync_mode = sync ? WB_SYNC_ALL : WB_SYNC_NONE, |
659 | .range_start = 0, | 659 | .range_start = 0, |
660 | .range_end = LLONG_MAX, | 660 | .range_end = LLONG_MAX, |
661 | }; | 661 | }; |