From: Andrew Morton <akpm@osdl.org>
To: thockin@sun.com
Cc: linux-kernel@vger.kernel.org
Subject: Re: calling flush_scheduled_work()
Date: Fri, 12 Mar 2004 15:27:47 -0800 [thread overview]
Message-ID: <20040312152747.0b3f74d3.akpm@osdl.org> (raw)
In-Reply-To: <20040312205814.GY1333@sun.com>
Tim Hockin <thockin@sun.com> wrote:
>
> We've recently bumped into an issue, and I'm not sure which is the real bug.
>
> In short we have a case where mntput() is called from the kevetd workqueue.
> When that mntput() hit an NFS mount, we got a deadlock. It turns out that
> deep in the RPC code, someone calls flush_scheduled_work(). Deadlock.
Seems simple enough to fix the workqueue code to handle this situation.
Wanna test this for me?
---
25-akpm/kernel/workqueue.c | 8 ++++++++
1 files changed, 8 insertions(+)
diff -puN kernel/workqueue.c~flush_scheduled_work-deadlock-fix kernel/workqueue.c
--- 25/kernel/workqueue.c~flush_scheduled_work-deadlock-fix Fri Mar 12 15:24:29 2004
+++ 25-akpm/kernel/workqueue.c Fri Mar 12 15:25:46 2004
@@ -229,6 +229,14 @@ void fastcall flush_workqueue(struct wor
continue;
cwq = wq->cpu_wq + cpu;
+ if (cwq->thread == current) {
+ /*
+ * Probably keventd trying to flush its own queue.
+ * So just run it by hand rather than deadlocking
+ */
+ run_workqueue(cwq);
+ continue;
+ }
spin_lock_irq(&cwq->lock);
sequence_needed = cwq->insert_sequence;
_
next prev parent reply other threads:[~2004-03-12 23:25 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-03-12 20:58 Tim Hockin
2004-03-12 22:00 ` Trond Myklebust
2004-03-12 22:38 ` Tim Hockin
2004-03-12 23:19 ` Trond Myklebust
2004-03-12 23:27 ` Tim Hockin
2004-03-12 23:27 ` Andrew Morton [this message]
2004-03-13 0:20 ` Tim Hockin
2004-03-13 1:17 ` Trond Myklebust
2004-03-13 2:12 ` Andrew Morton
2004-03-13 2:24 ` Trond Myklebust
2004-03-13 11:45 Stefan Rompf
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=20040312152747.0b3f74d3.akpm@osdl.org \
--to=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=thockin@sun.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®