From: Chen Gang <gang.chen@asianux.com>
To: paulmck@linux.vnet.ibm.com
Cc: Frederic Weisbecker <fweisbec@gmail.com>,
Thomas Gleixner <tglx@linutronix.de>,
Sedat Dilek <sedat.dilek@gmail.com>,
Andrew Morton <akpm@linux-foundation.org>,
Linus Torvalds <torvalds@linux-foundation.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] kernel/softirq.c: delete 'while' looping to improve a little performance and beautify code
Date: Thu, 13 Jun 2013 10:08:43 +0800 [thread overview]
Message-ID: <51B929AB.3040201@asianux.com> (raw)
In-Reply-To: <20130610122543.GG5146@linux.vnet.ibm.com>
On 06/10/2013 08:25 PM, Paul E. McKenney wrote:
> On Sun, Jun 09, 2013 at 08:30:19PM +0800, Chen Gang wrote:
>> >
>> > After finish the internal 'while', need not test TASKLET_STATE_SCHED
>> > again, so looping back to outside 'while' is only for set_bit().
>> >
>> > When use 'if' and set_bit() instead of 'while', it will save at least
>> > one running conditional instruction, and also will be clearer for readers
>> > (although the binary size will be a little bigger).
>> >
>> > The related patch is "1da177e Linux-2.6.12-rc2"
>> >
>> >
>> > Signed-off-by: Chen Gang <gang.chen@asianux.com>
>> > ---
>> > kernel/softirq.c | 3 ++-
>> > 1 files changed, 2 insertions(+), 1 deletions(-)
>> >
>> > diff --git a/kernel/softirq.c b/kernel/softirq.c
>> > index a5f8836..52da25f 100644
>> > --- a/kernel/softirq.c
>> > +++ b/kernel/softirq.c
>> > @@ -540,10 +540,11 @@ void tasklet_kill(struct tasklet_struct *t)
>> > if (in_interrupt())
>> > printk("Attempt to kill tasklet from interrupt\n");
>> >
>> > - while (test_and_set_bit(TASKLET_STATE_SCHED, &t->state)) {
>> > + if (test_and_set_bit(TASKLET_STATE_SCHED, &t->state)) {
>> > do {
>> > yield();
>> > } while (test_bit(TASKLET_STATE_SCHED, &t->state));
>> > + set_bit(TASKLET_STATE_SCHED, &t->state);
> This replaces an atomic test-and-set with two operations, a test and
> a set. Is this safe?
Oh, it seems not safe, at least it is not the original author's willing.
It is my fault, and also sorry for replying late.
Thanks.
--
Chen Gang
Asianux Corporation
next prev parent reply other threads:[~2013-06-13 2:09 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-09 12:30 [PATCH] kernel/softirq.c: delete 'while' looping to improve a little performance and beautify code Chen Gang
2013-06-10 12:25 ` Paul E. McKenney
2013-06-13 2:08 ` Chen Gang [this message]
2013-06-10 14:15 ` Thomas Gleixner
2013-06-13 2:10 ` Chen Gang
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=51B929AB.3040201@asianux.com \
--to=gang.chen@asianux.com \
--cc=akpm@linux-foundation.org \
--cc=fweisbec@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=paulmck@linux.vnet.ibm.com \
--cc=sedat.dilek@gmail.com \
--cc=tglx@linutronix.de \
--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