The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: Tejun Heo <tj@kernel.org>
To: Johannes Berg <johannes@sipsolutions.net>
Cc: LKML <linux-kernel@vger.kernel.org>
Subject: Re: workqueue_set_max_active(wq, 0)?
Date: Thu, 15 Dec 2011 11:12:12 -0800	[thread overview]
Message-ID: <20111215191212.GD32002@google.com> (raw)
In-Reply-To: <1323974620.1082.7.camel@jlt3.sipsolutions.net>

Hello,

On Thu, Dec 15, 2011 at 07:43:40PM +0100, Johannes Berg wrote:
> Hm, good point. We can't abstract out all of it -- the freezer API
> doesn't want to wait for it to finish -- but probably a bit of it.
> 
> How do you iterate workqueues? We'd have to do that for the freezer
> part, unless we want to work on CWQs again.

By Locking workqueue_lock and walking workqueues list.  Hmmm...

> Actually I'm not really sure I understand the differences between WQ,
> CWQ and GCWQ...

WQ is workqueue - the part visible to users.

CWQ is cpu workqueue.  Each wq has its own set of cpu workqueues for
all CPUs (there are exceptions but this should be a good enough
explanation).  A WQ is always a set of cwq's.  WQ chooses which CWQ to
use on queue but most of actual processing happens on CWQs.

GCWQ stands for global cpu workqueue - there's one for each CPU.  This
is per-cpu global worker pool used by all workqueues.  Every CWQ on a
CPU shares the GCWQ on that CPU.

The reason why FREEZING currently is on GCWQ is because freezing is a
system wide operation.  If we're gonna implement pause, I think it
should probably be in cwq.

> > I think it would be great if this can be abstracted out so that both
> > the freezer and explicit pausing use the same facility.  They aren't
> > that different after all.
> 
> I'll take a look tomorrow. If you want to beat me to it ... ;-)

Heh heh, [un]fortunately, I'm pretty occupied at the moment.  :P

Thank you.

-- 
tejun

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

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-12-09  9:54 workqueue_set_max_active(wq, 0)? Johannes Berg
2011-12-09 16:57 ` Tejun Heo
2011-12-09 16:59   ` Johannes Berg
2011-12-15 15:38   ` Johannes Berg
2011-12-15 18:35     ` Tejun Heo
2011-12-15 18:43       ` Johannes Berg
2011-12-15 19:12         ` Tejun Heo [this message]
2011-12-15 19:26           ` Johannes Berg
2011-12-15 19:31             ` 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=20111215191212.GD32002@google.com \
    --to=tj@kernel.org \
    --cc=johannes@sipsolutions.net \
    --cc=linux-kernel@vger.kernel.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