public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Tejun Heo <tj@kernel.org>
To: Steven Whitehouse <swhiteho@redhat.com>
Cc: David Teigland <teigland@redhat.com>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	linux-kernel@vger.kernel.org
Subject: Re: [GIT PULL] dlm fix for 2.6.38
Date: Sat, 12 Feb 2011 16:51:00 +0100	[thread overview]
Message-ID: <20110212155100.GR3770@htj.dyndns.org> (raw)
In-Reply-To: <1297525475.2584.1.camel@dolmen>

Hello,

On Sat, Feb 12, 2011 at 03:44:35PM +0000, Steven Whitehouse wrote:
> > diff --git a/fs/dlm/lowcomms.c b/fs/dlm/lowcomms.c
> > index 9c64ae9..2d8c87b 100644
> > --- a/fs/dlm/lowcomms.c
> > +++ b/fs/dlm/lowcomms.c
> > @@ -1468,15 +1468,13 @@ static void work_stop(void)
> >  
> >  static int work_start(void)
> >  {
> > -	recv_workqueue = alloc_workqueue("dlm_recv", WQ_MEM_RECLAIM |
> > -					 WQ_HIGHPRI | WQ_FREEZEABLE, 0);
> > +	recv_workqueue = create_singlethread_workqueue("dlm_recv");

recv_workqueue was multithread one even before the conversion.  It
probably is best to leave this part alone.

> > -	send_workqueue = alloc_workqueue("dlm_send", WQ_MEM_RECLAIM |
> > -					 WQ_HIGHPRI | WQ_FREEZEABLE, 0);
> > +	send_workqueue = create_singlethread_workqueue("dlm_send");

send_workqueue was converted from ST to MT but the correct way at this
point would be,

	alloc_ordered_workqueue("dlm_send",
				WQ_MEM_RECLAIM | WQ_HIGHPRI | WQ_FREEZEABLE);

> >  	if (!send_workqueue) {
> >  		log_print("can't start dlm_send");
> >  		destroy_workqueue(recv_workqueue);
> > 
> > 
> 
> What is the issue here? If there is a problem with the workqueues then
> we should ask Tejun about it,

Yeah, what kind of problem was it?  There's only one work per
connection so reordering is not a problem.  All the workqueue
operations use proper locking, so the conversion seemed safe to me.
What am I missing?

Thanks.

-- 
tejun

  reply	other threads:[~2011-02-12 15:51 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-02-11 23:38 [GIT PULL] dlm fix for 2.6.38 David Teigland
2011-02-12 15:44 ` Steven Whitehouse
2011-02-12 15:51   ` Tejun Heo [this message]
2011-02-14 15:38     ` David Teigland
2011-02-14 15:46       ` Tejun Heo
2011-02-14 16:21         ` David Teigland
2011-02-14 16:24           ` 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=20110212155100.GR3770@htj.dyndns.org \
    --to=tj@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=swhiteho@redhat.com \
    --cc=teigland@redhat.com \
    --cc=torvalds@linux-foundation.org \
    /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