aboutsummaryrefslogtreecommitdiffstats
path: root/fs/jfs/jfs_logmgr.c
diff options
context:
space:
mode:
authorDave Kleikamp <dave.kleikamp@oracle.com>2013-05-01 11:08:38 -0500
committerBen Hutchings <ben@decadent.org.uk>2013-06-19 02:16:45 +0100
commitb4b9150c21cd3babf406f40f7b29933c1c5f0f99 (patch)
tree13818106e61e92a893d2b467f293a644f29ce5be /fs/jfs/jfs_logmgr.c
parent23005ee8bad9bc505bb15006c02cab01a8718550 (diff)
downloadkernel_samsung_smdk4412-b4b9150c21cd3babf406f40f7b29933c1c5f0f99.zip
kernel_samsung_smdk4412-b4b9150c21cd3babf406f40f7b29933c1c5f0f99.tar.gz
kernel_samsung_smdk4412-b4b9150c21cd3babf406f40f7b29933c1c5f0f99.tar.bz2
jfs: fix a couple races
commit 73aaa22d5ffb2630456bac2f9a4ed9b81d0d7271 upstream. This patch fixes races uncovered by xfstests testcase 068. One race is the result of jfs_sync() trying to write a sync point to the journal after it has been frozen (or possibly in the process). Since freezing sync's the journal, there is no need to write a sync point so we simply want to return. The second involves jfs_write_inode() being called on a deleted inode. It calls jfs_flush_journal which is held up by the jfs_commit thread doing the final iput on the same deleted inode, which itself is waiting for the I_SYNC flag to be cleared. jfs_write_inode need not do anything when i_nlink is zero, which is the easy fix. Reported-by: Michael L. Semon <mlsemon35@gmail.com> Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com> Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Diffstat (limited to 'fs/jfs/jfs_logmgr.c')
-rw-r--r--fs/jfs/jfs_logmgr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/jfs/jfs_logmgr.c b/fs/jfs/jfs_logmgr.c
index cc5f811..bfb2a91 100644
--- a/fs/jfs/jfs_logmgr.c
+++ b/fs/jfs/jfs_logmgr.c
@@ -1058,7 +1058,8 @@ static int lmLogSync(struct jfs_log * log, int hard_sync)
*/
void jfs_syncpt(struct jfs_log *log, int hard_sync)
{ LOG_LOCK(log);
- lmLogSync(log, hard_sync);
+ if (!test_bit(log_QUIESCE, &log->flag))
+ lmLogSync(log, hard_sync);
LOG_UNLOCK(log);
}