diff options
author | Jan Kara <jack@suse.cz> | 2012-05-03 14:48:02 +0200 |
---|---|---|
committer | Fengguang Wu <fengguang.wu@intel.com> | 2012-05-06 13:43:41 +0800 |
commit | dbd5768f87ff6fb0a4fe09c4d7b6c4a24de99430 (patch) | |
tree | 42ea94ea733538f797aa745945fc43c4d1b89217 /fs/xfs/xfs_super.c | |
parent | 7994e6f7254354e03028a11f98a27bd67dace9f1 (diff) | |
download | linux-dbd5768f87ff6fb0a4fe09c4d7b6c4a24de99430.tar.gz linux-dbd5768f87ff6fb0a4fe09c4d7b6c4a24de99430.tar.bz2 linux-dbd5768f87ff6fb0a4fe09c4d7b6c4a24de99430.zip |
vfs: Rename end_writeback() to clear_inode()
After we moved inode_sync_wait() from end_writeback() it doesn't make sense
to call the function end_writeback() anymore. Rename it to clear_inode()
which well says what the function really does - set I_CLEAR flag.
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Diffstat (limited to 'fs/xfs/xfs_super.c')
-rw-r--r-- | fs/xfs/xfs_super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c index dab9a5f6dfd6..5b806f23ad0a 100644 --- a/fs/xfs/xfs_super.c +++ b/fs/xfs/xfs_super.c @@ -926,7 +926,7 @@ xfs_fs_evict_inode( trace_xfs_evict_inode(ip); truncate_inode_pages(&inode->i_data, 0); - end_writeback(inode); + clear_inode(inode); XFS_STATS_INC(vn_rele); XFS_STATS_INC(vn_remove); XFS_STATS_DEC(vn_active); |