| To: | xfs@xxxxxxxxxxx, elder@xxxxxxxxxx |
|---|---|
| Subject: | [PATCH] xfs: remove unecessary AIL push wakeups |
| From: | JiSheng Zhang <jszhang3@xxxxxxxxxxxxxxxx> |
| Date: | Fri, 13 Jan 2012 01:30:28 +0800 |
| Cc: | linux-kernel@xxxxxxxxxxxxxxx |
In commit 0030807c66("xfs: revert to using a kthread for AIL pushing"),
AIL pushing is revert back to use a kthread. But unfortunately, it
introduced a regression: there are unnecessary AIL push wakeups during
idle, ~20 wakeups/s. This change remove the wakeups by reverting a bit
more: set "tout" value as zero during idle.
Signed-off-by: JiSheng Zhang <jszhang3@xxxxxxxxxxxxxxxx>
---
fs/xfs/xfs_trans_ail.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fs/xfs/xfs_trans_ail.c b/fs/xfs/xfs_trans_ail.c
index ed9252b..2014387 100644
--- a/fs/xfs/xfs_trans_ail.c
+++ b/fs/xfs/xfs_trans_ail.c
@@ -508,7 +508,7 @@ out_done:
ailp->xa_last_pushed_lsn = 0;
ailp->xa_log_flush = 0;
- tout = 50;
+ tout = 0;
} else if (XFS_LSN_CMP(lsn, target) >= 0) {
/*
* We reached the target so wait a bit longer for I/O to
--
1.7.8.3
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH] xfstests 273: Create lost+found to pass _check_scratch_fs, Eryu Guan |
|---|---|
| Next by Date: | Re: [PATCH] xfstests 278: Ensure lost+found is not created with wrong link count (V4), Mark Tinguely |
| Previous by Thread: | [PATCH] xfstests 273 274 275: do test in dedicated dir and leave test files in it, Eryu Guan |
| Next by Thread: | Re: [PATCH] xfs: remove unecessary AIL push wakeups, Christoph Hellwig |
| Indexes: | [Date] [Thread] [Top] [All Lists] |