From: Thomas Renninger <trenn@suse.de>
To: roel kluin <roel.kluin@gmail.com>
Cc: Valdis.Kletnieks@vt.edu, linux-acpi@vger.kernel.org,
Len Brown <len.brown@intel.com>
Subject: Re: [PATCH ?] ACPI: pr->id is unsigned
Date: Wed, 17 Sep 2008 09:34:20 +0200 [thread overview]
Message-ID: <200809170934.22172.trenn@suse.de> (raw)
In-Reply-To: <48D06FF3.6010406@gmail.com>
Thanks!
Len can you take this one, pls.
On Wednesday 17 September 2008 04:48:19 roel kluin wrote:
> Thomas Renninger wrote:
> > On Monday 15 September 2008 22:26:45 Valdis.Kletnieks@vt.edu wrote:
> >> On Mon, 15 Sep 2008 21:32:20 EDT, roel kluin said:
...
>
> pr->id is unsigned
>
> Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Thomas Renninger <trenn@suse.de>
> ---
> diff --git a/drivers/acpi/processor_core.c b/drivers/acpi/processor_core.c
> index ee68ac5..9f203d3 100644
> --- a/drivers/acpi/processor_core.c
> +++ b/drivers/acpi/processor_core.c
> @@ -667,7 +667,7 @@ static int __cpuinit acpi_processor_start(struct
> acpi_device *device) return 0;
> }
>
> - BUG_ON((pr->id >= nr_cpu_ids) || (pr->id < 0));
> + BUG_ON(pr->id >= nr_cpu_ids);
>
> /*
> * Buggy BIOS check
prev parent reply other threads:[~2008-09-17 7:34 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-09-16 1:32 [PATCH ?] ACPI: pr->id is unsigned roel kluin
2008-09-15 20:26 ` Valdis.Kletnieks
2008-09-16 8:45 ` Thomas Renninger
2008-09-17 2:48 ` roel kluin
2008-09-17 7:34 ` Thomas Renninger [this message]
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=200809170934.22172.trenn@suse.de \
--to=trenn@suse.de \
--cc=Valdis.Kletnieks@vt.edu \
--cc=len.brown@intel.com \
--cc=linux-acpi@vger.kernel.org \
--cc=roel.kluin@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.