diff options
| author | Jan Kara <[email protected]> | 2011-11-07 23:20:39 +0000 |
|---|---|---|
| committer | Joel Becker <[email protected]> | 2011-11-17 10:18:57 +0000 |
| commit | 249ec93c01db8898058899a80ffb537c8d27f86f (patch) | |
| tree | 381c22ba9726ac884aa1267b91736fff3836c766 | |
| parent | ocfs2: honor O_(D)SYNC flag in fallocate (diff) | |
| download | kernel-249ec93c01db8898058899a80ffb537c8d27f86f.tar.gz kernel-249ec93c01db8898058899a80ffb537c8d27f86f.zip | |
ocfs2: Use filemap_write_and_wait() instead of write_inode_now()
Since ocfs2 has no ->write_inode method, there's no point in calling
write_inode_now() from ocfs2_cleanup_delete_inode(). Use
filemap_write_and_wait() instead. This helps us to cleanup inode writing
interfaces...
Signed-off-by: Jan Kara <[email protected]>
Signed-off-by: Joel Becker <[email protected]>
| -rw-r--r-- | fs/ocfs2/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ocfs2/inode.c b/fs/ocfs2/inode.c index b4c8bb6b8d28..c4bf6ac4a0bb 100644 --- a/fs/ocfs2/inode.c +++ b/fs/ocfs2/inode.c @@ -951,7 +951,7 @@ static void ocfs2_cleanup_delete_inode(struct inode *inode, trace_ocfs2_cleanup_delete_inode( (unsigned long long)OCFS2_I(inode)->ip_blkno, sync_data); if (sync_data) - write_inode_now(inode, 1); + filemap_write_and_wait(inode->i_mapping); truncate_inode_pages(&inode->i_data, 0); } |
