diff options
author | Jan Kara <jack@suse.cz> | 2010-08-05 20:32:46 +0200 |
---|---|---|
committer | Joel Becker <joel.becker@oracle.com> | 2010-09-10 08:39:44 -0700 |
commit | 4c38881f87c21ada5609a4065cb10e3e74da0d6e (patch) | |
tree | cc311dbffe1e6435e3a25151d32a82b5c9150684 /fs/ocfs2 | |
parent | 83fd9c7f65634ac440a6b9b7a63ba562f213ac60 (diff) | |
download | linux-3.10-4c38881f87c21ada5609a4065cb10e3e74da0d6e.tar.gz linux-3.10-4c38881f87c21ada5609a4065cb10e3e74da0d6e.tar.bz2 linux-3.10-4c38881f87c21ada5609a4065cb10e3e74da0d6e.zip |
ocfs2: Remove ocfs2_sync_inode()
ocfs2_sync_inode() is used only from ocfs2_sync_file(). But all data has
already been written before calling ocfs2_sync_file() and ocfs2 doesn't use
inode's private_list for tracking metadata buffers thus sync_mapping_buffers()
is superfluous as well.
Signed-off-by: Jan Kara <jack@suse.cz>
Acked-by: Mark Fasheh <mfasheh@suse.com>
Signed-off-by: Joel Becker <joel.becker@oracle.com>
Diffstat (limited to 'fs/ocfs2')
-rw-r--r-- | fs/ocfs2/file.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c index 4f9133f6368..b03f6601fd7 100644 --- a/fs/ocfs2/file.c +++ b/fs/ocfs2/file.c @@ -64,12 +64,6 @@ #include "buffer_head_io.h" -static int ocfs2_sync_inode(struct inode *inode) -{ - filemap_fdatawrite(inode->i_mapping); - return sync_mapping_buffers(inode->i_mapping); -} - static int ocfs2_init_file_private(struct inode *inode, struct file *file) { struct ocfs2_file_private *fp; @@ -187,10 +181,6 @@ static int ocfs2_sync_file(struct file *file, int datasync) mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", file, dentry, datasync, dentry->d_name.len, dentry->d_name.name); - err = ocfs2_sync_inode(dentry->d_inode); - if (err) - goto bail; - if (datasync && !(inode->i_state & I_DIRTY_DATASYNC)) { /* * We still have to flush drive's caches to get data to the |