summaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/journal.c
diff options
context:
space:
mode:
authorMark Fasheh2006-02-09 22:23:39 +0100
committerMark Fasheh2006-02-16 21:04:10 +0100
commit745ae8ba29e729ec922393fa4d9448c385673599 (patch)
tree280e0a766e5b008648942172517b491d6c585a39 /fs/ocfs2/journal.c
parent[PATCH] ocfs2: manually grant remote recovery lock (diff)
downloadkernel-qcow2-linux-745ae8ba29e729ec922393fa4d9448c385673599.tar.gz
kernel-qcow2-linux-745ae8ba29e729ec922393fa4d9448c385673599.tar.xz
kernel-qcow2-linux-745ae8ba29e729ec922393fa4d9448c385673599.zip
[PATCH] ocfs2: only checkpoint journal when asked to
Disable automatic checkpointing of the journal - this is a relic from older ocfs2 days. Worth quite a bit of performance on longer running single node tests. Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs/ocfs2/journal.c')
-rw-r--r--fs/ocfs2/journal.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/ocfs2/journal.c b/fs/ocfs2/journal.c
index fa0bcac5ceae..d329c9df90ae 100644
--- a/fs/ocfs2/journal.c
+++ b/fs/ocfs2/journal.c
@@ -1584,10 +1584,9 @@ static int ocfs2_commit_thread(void *arg)
while (!(kthread_should_stop() &&
atomic_read(&journal->j_num_trans) == 0)) {
- wait_event_interruptible_timeout(osb->checkpoint_event,
- atomic_read(&journal->j_num_trans)
- || kthread_should_stop(),
- OCFS2_CHECKPOINT_INTERVAL);
+ wait_event_interruptible(osb->checkpoint_event,
+ atomic_read(&journal->j_num_trans)
+ || kthread_should_stop());
status = ocfs2_commit_cache(osb);
if (status < 0)