* [PATCH] xfs: log IO completion workqueue is a high priority queue
@ 2010-09-08 9:00 Dave Chinner
2010-09-09 1:26 ` Christoph Hellwig
0 siblings, 1 reply; 2+ messages in thread
From: Dave Chinner @ 2010-09-08 9:00 UTC (permalink / raw)
To: xfs
From: Dave Chinner <dchinner@redhat.com>
The workqueue implementation in 2.6.36-rcX has changed, resulting in the
workqueues no longer having dedicated threads for work processing. This has
caused severe livelocks under heavy parallel create workloads because the
log IO completions have been getting held up behind metadata IO completions.
Hence log commits would stall, memory allocation would stall because pages
could not be cleaned, and lock contention on the AIL during inode IO completion
processing was being seen to slow everything down even further.
By making the log Io completion workqueue a high priority workqueue, they are
queued ahead of all data/metadata IO completions and processed before the
data/metadata completions. Hence the log never gets stalled, and operations
needed to clean memory can continue as quickly as possible. This avoids the
livelock conditions and allos the system to keep running under heavy load as
per normal.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
---
fs/xfs/linux-2.6/xfs_buf.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/fs/xfs/linux-2.6/xfs_buf.c b/fs/xfs/linux-2.6/xfs_buf.c
index 6130828..2a6645f 100644
--- a/fs/xfs/linux-2.6/xfs_buf.c
+++ b/fs/xfs/linux-2.6/xfs_buf.c
@@ -1956,7 +1956,8 @@ xfs_buf_init(void)
if (!xfs_buf_zone)
goto out;
- xfslogd_workqueue = create_workqueue("xfslogd");
+ xfslogd_workqueue = alloc_workqueue("xfslogd",
+ WQ_RESCUER | WQ_HIGHPRI, 1);
if (!xfslogd_workqueue)
goto out_free_buf_zone;
--
1.7.1
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] xfs: log IO completion workqueue is a high priority queue
2010-09-08 9:00 [PATCH] xfs: log IO completion workqueue is a high priority queue Dave Chinner
@ 2010-09-09 1:26 ` Christoph Hellwig
0 siblings, 0 replies; 2+ messages in thread
From: Christoph Hellwig @ 2010-09-09 1:26 UTC (permalink / raw)
To: Dave Chinner; +Cc: xfs
On Wed, Sep 08, 2010 at 07:00:22PM +1000, Dave Chinner wrote:
> queued ahead of all data/metadata IO completions and processed before the
> data/metadata completions. Hence the log never gets stalled, and operations
> needed to clean memory can continue as quickly as possible. This avoids the
> livelock conditions and allos the system to keep running under heavy load as
> per normal.
>From a quick review of how the WQ_HIGHPRI flag is handled this look good
to me. I'm still rather suspicious of the new workqueue code, and the
complete lack of documentation for it, though.
Reviewed-by: Christoph Hellwig <hch@lst.de>
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-09-09 1:25 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-08 9:00 [PATCH] xfs: log IO completion workqueue is a high priority queue Dave Chinner
2010-09-09 1:26 ` Christoph Hellwig
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox