From: Tejun Heo <tj@kernel.org>
To: Oleg Nesterov <oleg@redhat.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Daniel Vetter <daniel.vetter@ffwll.ch>,
Dave Jones <davej@redhat.com>,
David Howells <dhowells@redhat.com>,
Imre Deak <imre.deak@intel.com>, Jens Axboe <axboe@kernel.dk>,
Linus Torvalds <torvalds@linux-foundation.org>,
Lukas Czerner <lczerner@redhat.com>,
"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] wait: introduce prepare_to_wait_event()
Date: Thu, 6 Jun 2013 14:36:36 -0700 [thread overview]
Message-ID: <20130606213636.GJ5045@htj.dyndns.org> (raw)
In-Reply-To: <20130606200334.GC23628@redhat.com>
Hello, Oleg.
On Thu, Jun 06, 2013 at 10:03:34PM +0200, Oleg Nesterov wrote:
> Add the new helper, prepare_to_wait_event() which should only be used
> by wait_event_common/etc.
>
> prepare_to_wait_event() returns -ERESTARTSYS if signal_pending_state()
> is true, otherwise it calls prepare_to_wait(). This allows to uninline
> the signal-pending checks in wait_event_*.
>
> Also, it can initialize wait->private/func. We do not care they were
> already initialized, the values are the same. This also shaves a couple
> of insns from the inlined code.
>
> Unlike the previous change, this patch "reliably" shrinks the size of
> generated code for every wait_event*() call.
>
> Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Which tree are the patches based on? I'm getting conflicts on
linus#master, mmotd and next.
Reviewed-by: Tejun Heo <tj@kernel.org>
But a couple nits.
> +int
I don't think we need to keep the unnecessary line break here. All
other functions in the file don't do it except for the two
prepare_to_wait functions. No need to give the weirdos more power. :)
> +prepare_to_wait_event(wait_queue_head_t *q, wait_queue_t *wait, int state)
> +{
> + if (signal_pending_state(state, current))
> + return -ERESTARTSYS;
> +
> + wait->private = current;
> + wait->func = autoremove_wake_function;
> + prepare_to_wait(q, wait, state);
I wonder whether it'd be worthwhile to make prepare_to_wait() inline
so that it can be inlined into the above. I think gcc is smart enough
to emit inline for in-file stuff and then build a proper function for
external references. No biggie. Just wondering.
Thanks.
--
tejun
next prev parent reply other threads:[~2013-06-06 21:36 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-06 20:02 [PATCH 0/2] introduce wait_event_common() Oleg Nesterov
2013-06-06 20:03 ` [PATCH 1/2] wait: introduce wait_event_common(wq, condition, state, timeout) Oleg Nesterov
2013-06-18 22:06 ` Andrew Morton
2013-06-19 16:14 ` Oleg Nesterov
2013-06-06 20:03 ` [PATCH 2/2] wait: introduce prepare_to_wait_event() Oleg Nesterov
2013-06-06 21:36 ` Tejun Heo [this message]
2013-06-07 13:07 ` Oleg Nesterov
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=20130606213636.GJ5045@htj.dyndns.org \
--to=tj@kernel.org \
--cc=akpm@linux-foundation.org \
--cc=axboe@kernel.dk \
--cc=daniel.vetter@ffwll.ch \
--cc=davej@redhat.com \
--cc=dhowells@redhat.com \
--cc=imre.deak@intel.com \
--cc=lczerner@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=oleg@redhat.com \
--cc=paulmck@linux.vnet.ibm.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
all inboxes | Powered by JetHome®