ocfs2-devel.oss.oracle.com archive mirror
 help / color / mirror / Atom feed
* [Ocfs2-devel] [PATCH 1/2] ocfs2: Flush drive's caches on fdatasync
@ 2010-07-29 12:00 Jan Kara
  2010-07-29 12:00 ` [Ocfs2-devel] [PATCH 2/2] ocfs2: Remove ocfs2_sync_inode() Jan Kara
  2010-07-30  2:07 ` [Ocfs2-devel] [PATCH 1/2] ocfs2: Flush drive's caches on fdatasync Tao Ma
  0 siblings, 2 replies; 6+ messages in thread
From: Jan Kara @ 2010-07-29 12:00 UTC (permalink / raw)
  To: ocfs2-devel

We have to issue a cache flush during fdatasync even if inode doesn't have
I_DIRTY_DATASYNC set because we still have to get written *data* to disk to
observe fdatasync() guarantees.

Signed-off-by: Jan Kara <jack@suse.cz>
---
 fs/ocfs2/file.c |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c
index 2b10b36..5659d85 100644
--- a/fs/ocfs2/file.c
+++ b/fs/ocfs2/file.c
@@ -36,6 +36,7 @@
 #include <linux/writeback.h>
 #include <linux/falloc.h>
 #include <linux/quotaops.h>
+#include <linux/blkdev.h>
 
 #define MLOG_MASK_PREFIX ML_INODE
 #include <cluster/masklog.h>
@@ -190,8 +191,15 @@ static int ocfs2_sync_file(struct file *file, int datasync)
 	if (err)
 		goto bail;
 
-	if (datasync && !(inode->i_state & I_DIRTY_DATASYNC))
+	if (datasync && !(inode->i_state & I_DIRTY_DATASYNC)) {
+		/*
+		 * Although inode doesn't need writing, we still have to flush
+		 * drive's caches to get data to the platter
+		 */
+		blkdev_issue_flush(inode->i_sb->s_bdev, GFP_KERNEL, NULL,
+				   BLKDEV_IFL_WAIT);
 		goto bail;
+	}
 
 	journal = osb->journal->j_journal;
 	err = jbd2_journal_force_commit(journal);
-- 
1.6.4.2

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2010-08-02  5:47 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-29 12:00 [Ocfs2-devel] [PATCH 1/2] ocfs2: Flush drive's caches on fdatasync Jan Kara
2010-07-29 12:00 ` [Ocfs2-devel] [PATCH 2/2] ocfs2: Remove ocfs2_sync_inode() Jan Kara
2010-07-30  2:07 ` [Ocfs2-devel] [PATCH 1/2] ocfs2: Flush drive's caches on fdatasync Tao Ma
2010-07-30  2:12   ` Sunil Mushran
2010-07-30 14:47   ` Jan Kara
2010-08-02  5:47     ` Tao Ma

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).