From: Tejun Heo <tj@kernel.org>
To: Dave Chinner <david@fromorbit.com>
Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org,
xfs@oss.sgi.com
Subject: Re: [2.6.36-rc3] Workqueues, XFS, dependencies and deadlocks
Date: Wed, 08 Sep 2010 10:20:27 +0200 [thread overview]
Message-ID: <4C87474B.3050405@kernel.org> (raw)
In-Reply-To: <20100908073428.GR705@dastard>
Hello,
On 09/08/2010 09:34 AM, Dave Chinner wrote:
>> I see. The use case itself shouldn't be problematic at all for cmwq
>> (sans bugs of course). In the other reply, you said "the system is
>> 100% unresponsive when the livelock occurs", which is kind of
>> puzzling. It isn't really a livelock.
>
> Actually, it is. You don't need to burn CPU to livelock, you just
> need a loop in the state machine that cannot be broken by internal
> or external events to be considered livelocked.
Yeah, but for the system to be completely unresponsive even to sysrq,
the system needs to be live/dead locked in a pretty specific way.
> However, this is not what I was calling the livelock problem - this
> is what I was calling the deadlock problem because to all external
> appearences the state machine is deadlocked on the inode lock....
>
> The livelock case I described where the system is completely
> unresponsive is the one I'm testing the WQ_HIGHPRI mod against.
>
> FWIW, having considered the above case again, and seeing what the
> WQ_HIGHPRI mod does in terms of queuing, I think that it may also
> solve this deadlock as the log IO completionwill always be queued
> ahead of the data IO completion now.
Cool, but please keep in mind that the nr_active underflow bug may end
up stalling or loosening ordering rules for a workqueue. Linus has
pulled in the pending fixes today.
>> Hmm... The point where I'm confused is that *delay()'s are busy waits.
>> They burn CPU cycles. I suppose you're referring to *sleep()'s,
>> right?
>
> fs/xfs/linux-2.6/time.h:
>
> static inline void delay(long ticks)
> {
> schedule_timeout_uninterruptible(ticks);
> }
Heh yeah, there's my confusion.
>> Probably I have overloaded the term 'concurrency' too much. In this
>> case, I meant the number of workers assigned to work items of the wq.
>> If you fire off N work items which sleep at the same time, cmwq will
>> eventually try to create N workers as each previous worker goes to
>> sleep so that the CPU doesn't sit idle while there are work items to
>> process as long as N < @wq->nr->active.
>
> Ok, so if I queue N items on a single CPU when max_active == N, they
> get spread across N worker threads on different CPUs?
They may if necessary to keep the workqueue progressing.
Thanks.
--
tejun
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
WARNING: multiple messages have this Message-ID (diff)
From: Tejun Heo <tj@kernel.org>
To: Dave Chinner <david@fromorbit.com>
Cc: linux-kernel@vger.kernel.org, xfs@oss.sgi.com,
linux-fsdevel@vger.kernel.org
Subject: Re: [2.6.36-rc3] Workqueues, XFS, dependencies and deadlocks
Date: Wed, 08 Sep 2010 10:20:27 +0200 [thread overview]
Message-ID: <4C87474B.3050405@kernel.org> (raw)
In-Reply-To: <20100908073428.GR705@dastard>
Hello,
On 09/08/2010 09:34 AM, Dave Chinner wrote:
>> I see. The use case itself shouldn't be problematic at all for cmwq
>> (sans bugs of course). In the other reply, you said "the system is
>> 100% unresponsive when the livelock occurs", which is kind of
>> puzzling. It isn't really a livelock.
>
> Actually, it is. You don't need to burn CPU to livelock, you just
> need a loop in the state machine that cannot be broken by internal
> or external events to be considered livelocked.
Yeah, but for the system to be completely unresponsive even to sysrq,
the system needs to be live/dead locked in a pretty specific way.
> However, this is not what I was calling the livelock problem - this
> is what I was calling the deadlock problem because to all external
> appearences the state machine is deadlocked on the inode lock....
>
> The livelock case I described where the system is completely
> unresponsive is the one I'm testing the WQ_HIGHPRI mod against.
>
> FWIW, having considered the above case again, and seeing what the
> WQ_HIGHPRI mod does in terms of queuing, I think that it may also
> solve this deadlock as the log IO completionwill always be queued
> ahead of the data IO completion now.
Cool, but please keep in mind that the nr_active underflow bug may end
up stalling or loosening ordering rules for a workqueue. Linus has
pulled in the pending fixes today.
>> Hmm... The point where I'm confused is that *delay()'s are busy waits.
>> They burn CPU cycles. I suppose you're referring to *sleep()'s,
>> right?
>
> fs/xfs/linux-2.6/time.h:
>
> static inline void delay(long ticks)
> {
> schedule_timeout_uninterruptible(ticks);
> }
Heh yeah, there's my confusion.
>> Probably I have overloaded the term 'concurrency' too much. In this
>> case, I meant the number of workers assigned to work items of the wq.
>> If you fire off N work items which sleep at the same time, cmwq will
>> eventually try to create N workers as each previous worker goes to
>> sleep so that the CPU doesn't sit idle while there are work items to
>> process as long as N < @wq->nr->active.
>
> Ok, so if I queue N items on a single CPU when max_active == N, they
> get spread across N worker threads on different CPUs?
They may if necessary to keep the workqueue progressing.
Thanks.
--
tejun
next prev parent reply other threads:[~2010-09-08 8:19 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-07 7:29 [2.6.36-rc3] Workqueues, XFS, dependencies and deadlocks Dave Chinner
2010-09-07 7:29 ` Dave Chinner
2010-09-07 9:04 ` Tejun Heo
2010-09-07 9:04 ` Tejun Heo
2010-09-07 10:01 ` Dave Chinner
2010-09-07 10:01 ` Dave Chinner
2010-09-07 10:35 ` Tejun Heo
2010-09-07 10:35 ` Tejun Heo
2010-09-07 12:26 ` Tejun Heo
2010-09-07 12:26 ` Tejun Heo
2010-09-07 13:02 ` Dave Chinner
2010-09-07 13:02 ` Dave Chinner
2010-09-08 8:22 ` Dave Chinner
2010-09-08 8:22 ` Dave Chinner
2010-09-08 8:51 ` Tejun Heo
2010-09-08 8:51 ` Tejun Heo
2010-09-08 10:05 ` Dave Chinner
2010-09-08 10:05 ` Dave Chinner
2010-09-08 10:05 ` Dave Chinner
2010-09-08 14:10 ` Tejun Heo
2010-09-08 14:10 ` Tejun Heo
2010-09-07 12:48 ` Dave Chinner
2010-09-07 12:48 ` Dave Chinner
2010-09-07 15:39 ` Tejun Heo
2010-09-07 15:39 ` Tejun Heo
2010-09-08 7:34 ` Dave Chinner
2010-09-08 7:34 ` Dave Chinner
2010-09-08 8:20 ` Tejun Heo [this message]
2010-09-08 8:20 ` Tejun Heo
2010-09-08 8:28 ` Dave Chinner
2010-09-08 8:28 ` Dave Chinner
2010-09-08 8:46 ` Tejun Heo
2010-09-08 8:46 ` Tejun Heo
2010-09-08 10:12 ` Dave Chinner
2010-09-08 10:12 ` Dave Chinner
2010-09-08 10:28 ` Tejun Heo
2010-09-08 10:28 ` Tejun Heo
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4C87474B.3050405@kernel.org \
--to=tj@kernel.org \
--cc=david@fromorbit.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=xfs@oss.sgi.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.