aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/namei.c
diff options
context:
space:
mode:
authorDarrick J. Wong <darrick.wong@oracle.com>2014-04-03 17:46:48 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-04-03 19:20:53 -0400
commit2931cdcb49194503b19345c597b68fdcf78396f8 (patch)
tree2492e18b4aa23b3815b6f54112bc4667158e101a /fs/ocfs2/namei.c
parenta75fe48cad2fb81e0e2671c73aea6c78ce5626d4 (diff)
ocfs2: improve fsync efficiency and fix deadlock between aio_write and sync_file
Currently, ocfs2_sync_file grabs i_mutex and forces the current journal transaction to complete. This isn't terribly efficient, since sync_file really only needs to wait for the last transaction involving that inode to complete, and this doesn't require i_mutex. Therefore, implement the necessary bits to track the newest tid associated with an inode, and teach sync_file to wait for that instead of waiting for everything in the journal to commit. Furthermore, only issue the flush request to the drive if jbd2 hasn't already done so. This also eliminates the deadlock between ocfs2_file_aio_write() and ocfs2_sync_file(). aio_write takes i_mutex then calls ocfs2_aiodio_wait() to wait for unaligned dio writes to finish. However, if that dio completion involves calling fsync, then we can get into trouble when some ocfs2_sync_file tries to take i_mutex. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Mark Fasheh <mfasheh@suse.de> Cc: Joel Becker <jlbec@evilplan.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ocfs2/namei.c')
-rw-r--r--fs/ocfs2/namei.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/ocfs2/namei.c b/fs/ocfs2/namei.c
index 3683643f3f0e..e61e4c9a077c 100644
--- a/fs/ocfs2/namei.c
+++ b/fs/ocfs2/namei.c
@@ -495,6 +495,7 @@ static int __ocfs2_mknod_locked(struct inode *dir,
495 struct ocfs2_dinode *fe = NULL; 495 struct ocfs2_dinode *fe = NULL;
496 struct ocfs2_extent_list *fel; 496 struct ocfs2_extent_list *fel;
497 u16 feat; 497 u16 feat;
498 struct ocfs2_inode_info *oi = OCFS2_I(inode);
498 499
499 *new_fe_bh = NULL; 500 *new_fe_bh = NULL;
500 501
@@ -576,6 +577,9 @@ static int __ocfs2_mknod_locked(struct inode *dir,
576 mlog_errno(status); 577 mlog_errno(status);
577 } 578 }
578 579
580 oi->i_sync_tid = handle->h_transaction->t_tid;
581 oi->i_datasync_tid = handle->h_transaction->t_tid;
582
579 status = 0; /* error in ocfs2_create_new_inode_locks is not 583 status = 0; /* error in ocfs2_create_new_inode_locks is not
580 * critical */ 584 * critical */
581 585