diff options
author | Anton Altaparmakov <aia21@cantab.net> | 2005-09-08 20:35:33 +0100 |
---|---|---|
committer | Anton Altaparmakov <aia21@cantab.net> | 2005-09-08 20:35:33 +0100 |
commit | f25dfb5e44fa8641961780d681bc1871abcfb861 (patch) | |
tree | f51bfcdd7baa9ee52f27bf196a32e44ee5cb5d5a /fs/ntfs/file.c | |
parent | 8e08ceaeacd5d300aaad166f2eef8bfc37e09831 (diff) | |
download | linux-3.10-f25dfb5e44fa8641961780d681bc1871abcfb861.tar.gz linux-3.10-f25dfb5e44fa8641961780d681bc1871abcfb861.tar.bz2 linux-3.10-f25dfb5e44fa8641961780d681bc1871abcfb861.zip |
NTFS: Remove bogus setting of PageError in ntfs_read_compressed_block().
Signed-off-by: Anton Altaparmakov <aia21@cantab.net>
Diffstat (limited to 'fs/ntfs/file.c')
-rw-r--r-- | fs/ntfs/file.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/fs/ntfs/file.c b/fs/ntfs/file.c index e0f530ce6b9..be9fd1dd423 100644 --- a/fs/ntfs/file.c +++ b/fs/ntfs/file.c @@ -1,7 +1,7 @@ /* - * file.c - NTFS kernel file operations. Part of the Linux-NTFS project. + * file.c - NTFS kernel file operations. Part of the Linux-NTFS project. * - * Copyright (c) 2001-2004 Anton Altaparmakov + * Copyright (c) 2001-2005 Anton Altaparmakov * * This program/include file is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as published @@ -94,6 +94,11 @@ static int ntfs_file_fsync(struct file *filp, struct dentry *dentry, if (!datasync || !NInoNonResident(NTFS_I(vi))) ret = ntfs_write_inode(vi, 1); write_inode_now(vi, !datasync); + /* + * NOTE: If we were to use mapping->private_list (see ext2 and + * fs/buffer.c) for dirty blocks then we could optimize the below to be + * sync_mapping_buffers(vi->i_mapping). + */ err = sync_blockdev(vi->i_sb->s_bdev); if (unlikely(err && !ret)) ret = err; |