public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <gregkh@suse.de>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>,
	Yinghai Lu <yhlu.kernel@gmail.com>, Ingo Molnar <mingo@elte.hu>,
	Len Brown <lenb@kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	linux-acpi <linux-acpi@vger.kernel.org>
Subject: Re: acpi_cpu_freq_init warning...
Date: Tue, 6 May 2008 14:38:01 -0700	[thread overview]
Message-ID: <20080506213801.GA26345@suse.de> (raw)
In-Reply-To: <alpine.LFD.1.10.0805061325270.32269@woody.linux-foundation.org>

On Tue, May 06, 2008 at 01:27:37PM -0700, Linus Torvalds wrote:
> 
> 
> On Tue, 6 May 2008, Greg KH wrote:
> 
> > On Wed, May 07, 2008 at 04:02:53AM +0900, OGAWA Hirofumi wrote:
> > > Linus Torvalds <torvalds@linux-foundation.org> writes:
> > > 
> > > > On Tue, 6 May 2008, OGAWA Hirofumi wrote:
> > > >> -	if ((drv->entry.next != drv->entry.prev) ||
> > > >> +	if ((drv->entry.next != drv->entry.prev) &&
> > > >>  	    (drv->entry.next != NULL)) {
> > > >
> > > > Umm. That code still makes no sense.
> > > >
> > > > The "drv->entry.next == drv->entry.prev" condition will trigger under 
> > > > *three* different circumstances:
> > > >
> > > >  - next/prev == NULL (uninitialized). Checked for by the explicit check 
> > > >    against NULL.
> > > >
> > > >  - list empty (both next/prev point back to itself), which I assume the 
> > > >    check was *meant* for.
> > > >
> > > >  - list has only *one* entry, when next/prev both point to the list head.
> > > >
> > > > and I'm pretty damn sure that whoever wrote that code didn't mean that 
> > > > last one, but who knows..
> > > >
> > > > The fact is, looking at next/prev this way is a sure way to have bugs.
> > > >
> > > > What is that PoS *trying* to test for? I assume it is meant to test for
> > > >
> > > > 	/* Is the list initialized and non-empty? */
> > > > 	if (drv->entry.next && !list_empty(&drv->entry)) {
> > > > 		...
> > > >
> > > > and dammit, just doing it that way is shorter and simpler.
> > 
> > But I don't think that will work as others have pointed out, this
> > structure's list field isn't initialized yet.
> 
> Umm. And what do you think the test for drv->entry.next is there for?

Doh, nevermind, I don't know what I was thinking, this should be fine.

I think I need a nap...

greg k-h

  reply	other threads:[~2008-05-06 21:38 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-05-06  2:51 acpi_cpu_freq_init warning Yinghai Lu
2008-05-06  6:29 ` OGAWA Hirofumi
2008-05-06  6:47   ` Greg KH
2008-05-06  7:13     ` OGAWA Hirofumi
2008-05-06 14:47   ` Linus Torvalds
2008-05-06 19:02     ` OGAWA Hirofumi
2008-05-06 20:20       ` Greg KH
2008-05-06 20:27         ` Linus Torvalds
2008-05-06 21:38           ` Greg KH [this message]
2008-05-06 15:44   ` Thomas Renninger

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=20080506213801.GA26345@suse.de \
    --to=gregkh@suse.de \
    --cc=hirofumi@mail.parknet.co.jp \
    --cc=lenb@kernel.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    --cc=torvalds@linux-foundation.org \
    --cc=yhlu.kernel@gmail.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