From: Len Brown <len.brown-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
To: Linus Torvalds <torvalds-3NddpPZAyC0@public.gmane.org>
Cc: Kernel Mailing List
<linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
ACPI Developers
<acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
Subject: [BKPATCH] ACPI for 2.6
Date: 23 Mar 2004 05:02:12 -0500 [thread overview]
Message-ID: <1080036132.21687.310.camel@dhcppc4> (raw)
Hi Linus, please do a
bk pull bk://linux-acpi.bkbits.net/linux-acpi-release-2.6.5
A couple of key fixes in this batch.
Sync x86_64 up to i386.
SCI trigger/polarity fix
yenta interrupt fix
toshiba panic on 4G/4G fix
etc.
thanks,
-Len
ps. a plain patch is also available here:
ftp://ftp.kernel.org/pub/linux/kernel/people/lenb/acpi/patches/release/2.6.5/acpi-20040311-2.6.5.diff.gz
This will update the following files:
arch/x86_64/kernel/acpi/boot.c | 619 ------------------------
Documentation/kernel-parameters.txt | 6
arch/i386/kernel/acpi/boot.c | 172 +++++-
arch/i386/kernel/dmi_scan.c | 15
arch/i386/kernel/mpparse.c | 158 +-----
arch/i386/kernel/setup.c | 34 +
arch/ia64/kernel/acpi.c | 2
arch/x86_64/kernel/Makefile | 1
arch/x86_64/kernel/acpi/Makefile | 2
arch/x86_64/kernel/mpparse.c | 77 --
arch/x86_64/kernel/setup.c | 25
drivers/acpi/Kconfig | 1
drivers/acpi/bus.c | 40 -
drivers/acpi/numa.c | 11
drivers/acpi/pci_irq.c | 14
drivers/acpi/processor.c | 4
drivers/acpi/toshiba_acpi.c | 55 +-
drivers/char/sonypi.h | 1
include/acpi/acpi_bus.h | 2
include/asm-i386/acpi.h | 6
include/asm-i386/mpspec.h | 11
include/asm-ia64/acpi.h | 2
include/asm-x86_64/acpi.h | 3
include/asm-x86_64/mpspec.h | 2
24 files changed, 335 insertions(+), 928 deletions(-)
through these ChangeSets:
<len.brown-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> (04/03/23 1.1608.1.52)
[ACPI] share i386/kernel/acpi/boot.c with x86_64
<len.brown-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> (04/03/23 1.1608.1.51)
[ACPI] toshiba_acpi 0.18 from John Belmonte
add missing copyin
<len.brown-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> (04/03/22 1.1608.1.50)
[ACPI] delete POWER_OF_TWO array (Pavel Machek)
<len.brown-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> (04/03/22 1.1608.1.49)
[ACPI] ACPI SCI shall be level/low unless explicit over-ride
http://bugzilla.kernel.org/show_bug.cgi?id=1622
add "acpi_sci=edge" and "acpi_sci=high" manual over-ride
<len.brown-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> (04/03/21 1.1608.1.48)
[ACPI] fix interrupts behind yenta cardbus bridge (David Shaohua Li)
http://bugzilla.kernel.org/show_bug.cgi?id=1564
<bjorn.helgaas-VXdhtT5mjnY@public.gmane.org> (04/03/21 1.1608.1.47)
[PATCH] clean up ACPI GSI/IRQ conversions (i386 part)
Add "acpi_gsi_to_irq()" as a generic replacement for
"acpi_irq_to_vector()".
This converts from an ACPI global system interrupt number to a Linux
IRQ.
Also, convert i386-specific terminology to use GSI when appropriate.
<len.brown-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> (04/03/21 1.1608.1.46)
[ACPI] create disable_acpi()
<len.brown-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> (04/03/18 1.1608.1.45)
[ACPI] numa.c build fix (Luming Yu)
http://bugzilla.kernel.org/show_bug.cgi?id=2131
<len.brown-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> (04/03/17 1.1608.1.44)
[ACPI] check "maxcpus=N" early -- same as NR_CPUS check.
http://bugzilla.kernel.org/show_bug.cgi?id=2317
When the BIOS enumerates physical processors before logical,
maxcpus=N/2 will now effectively disable HT.
This can be verified by boot messages warning that HT is off:
eg. "maxcpus=2" on a 2xHT system:
Total of 2 processors activated (11141.12 BogoMIPS).
WARNING: No sibling found for CPU 0.
WARNING: No sibling found for CPU 1.
-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
WARNING: multiple messages have this Message-ID (diff)
From: Len Brown <len.brown@intel.com>
To: Linus Torvalds <torvalds@osdl.org>
Cc: Kernel Mailing List <linux-kernel@vger.kernel.org>,
ACPI Developers <acpi-devel@lists.sourceforge.net>
Subject: [BKPATCH] ACPI for 2.6
Date: 23 Mar 2004 05:02:12 -0500 [thread overview]
Message-ID: <1080036132.21687.310.camel@dhcppc4> (raw)
Hi Linus, please do a
bk pull bk://linux-acpi.bkbits.net/linux-acpi-release-2.6.5
A couple of key fixes in this batch.
Sync x86_64 up to i386.
SCI trigger/polarity fix
yenta interrupt fix
toshiba panic on 4G/4G fix
etc.
thanks,
-Len
ps. a plain patch is also available here:
ftp://ftp.kernel.org/pub/linux/kernel/people/lenb/acpi/patches/release/2.6.5/acpi-20040311-2.6.5.diff.gz
This will update the following files:
arch/x86_64/kernel/acpi/boot.c | 619 ------------------------
Documentation/kernel-parameters.txt | 6
arch/i386/kernel/acpi/boot.c | 172 +++++-
arch/i386/kernel/dmi_scan.c | 15
arch/i386/kernel/mpparse.c | 158 +-----
arch/i386/kernel/setup.c | 34 +
arch/ia64/kernel/acpi.c | 2
arch/x86_64/kernel/Makefile | 1
arch/x86_64/kernel/acpi/Makefile | 2
arch/x86_64/kernel/mpparse.c | 77 --
arch/x86_64/kernel/setup.c | 25
drivers/acpi/Kconfig | 1
drivers/acpi/bus.c | 40 -
drivers/acpi/numa.c | 11
drivers/acpi/pci_irq.c | 14
drivers/acpi/processor.c | 4
drivers/acpi/toshiba_acpi.c | 55 +-
drivers/char/sonypi.h | 1
include/acpi/acpi_bus.h | 2
include/asm-i386/acpi.h | 6
include/asm-i386/mpspec.h | 11
include/asm-ia64/acpi.h | 2
include/asm-x86_64/acpi.h | 3
include/asm-x86_64/mpspec.h | 2
24 files changed, 335 insertions(+), 928 deletions(-)
through these ChangeSets:
<len.brown@intel.com> (04/03/23 1.1608.1.52)
[ACPI] share i386/kernel/acpi/boot.c with x86_64
<len.brown@intel.com> (04/03/23 1.1608.1.51)
[ACPI] toshiba_acpi 0.18 from John Belmonte
add missing copyin
<len.brown@intel.com> (04/03/22 1.1608.1.50)
[ACPI] delete POWER_OF_TWO array (Pavel Machek)
<len.brown@intel.com> (04/03/22 1.1608.1.49)
[ACPI] ACPI SCI shall be level/low unless explicit over-ride
http://bugzilla.kernel.org/show_bug.cgi?id=1622
add "acpi_sci=edge" and "acpi_sci=high" manual over-ride
<len.brown@intel.com> (04/03/21 1.1608.1.48)
[ACPI] fix interrupts behind yenta cardbus bridge (David Shaohua Li)
http://bugzilla.kernel.org/show_bug.cgi?id=1564
<bjorn.helgaas@hp.com> (04/03/21 1.1608.1.47)
[PATCH] clean up ACPI GSI/IRQ conversions (i386 part)
Add "acpi_gsi_to_irq()" as a generic replacement for
"acpi_irq_to_vector()".
This converts from an ACPI global system interrupt number to a Linux
IRQ.
Also, convert i386-specific terminology to use GSI when appropriate.
<len.brown@intel.com> (04/03/21 1.1608.1.46)
[ACPI] create disable_acpi()
<len.brown@intel.com> (04/03/18 1.1608.1.45)
[ACPI] numa.c build fix (Luming Yu)
http://bugzilla.kernel.org/show_bug.cgi?id=2131
<len.brown@intel.com> (04/03/17 1.1608.1.44)
[ACPI] check "maxcpus=N" early -- same as NR_CPUS check.
http://bugzilla.kernel.org/show_bug.cgi?id=2317
When the BIOS enumerates physical processors before logical,
maxcpus=N/2 will now effectively disable HT.
This can be verified by boot messages warning that HT is off:
eg. "maxcpus=2" on a 2xHT system:
Total of 2 processors activated (11141.12 BogoMIPS).
WARNING: No sibling found for CPU 0.
WARNING: No sibling found for CPU 1.
next reply other threads:[~2004-03-23 10:02 UTC|newest]
Thread overview: 50+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-03-23 10:02 Len Brown [this message]
2004-03-23 10:02 ` [BKPATCH] ACPI for 2.6 Len Brown
-- strict thread matches above, loose matches on Subject: below --
2004-11-09 7:47 Len Brown
2004-11-09 7:47 ` Len Brown
2004-11-12 17:42 ` Pavel Machek
[not found] ` <20041112174248.GA4267-u08AdweFZfgxtPtxi4kahqVXKuFTiq87@public.gmane.org>
2004-12-01 23:13 ` Len Brown
2004-12-01 23:13 ` Len Brown
2004-10-09 5:54 Len Brown
2004-08-14 23:08 Len Brown
[not found] <566B962EB122634D86E6EE29E83DD808182C3286@hdsmsx403.hd.intel.com>
2004-08-14 18:43 ` Len Brown
2004-08-15 16:58 ` Marcus Hartig
2004-08-14 16:40 Marcus Hartig
2004-08-14 6:55 Len Brown
2004-08-14 20:56 ` Jesse Barnes
2004-08-14 20:56 ` Jesse Barnes
2004-06-21 19:41 Len Brown
2004-06-21 19:41 ` Len Brown
[not found] <E1BbPIM-00044a-0A@sc8-sf-list2.sourceforge.net>
[not found] ` <E1BbPIM-00044a-0A-ek0oC1U1TqqnvZpeIfgr/KQD96bmaF075NbjCUgZEJk@public.gmane.org>
2004-06-19 21:22 ` Carsten Rietzschel
2004-06-18 6:42 Len Brown
2004-06-18 6:42 ` Len Brown
[not found] ` <1087540933.4487.212.camel-D2Zvc0uNKG8@public.gmane.org>
2004-06-23 13:47 ` Stefan Seyfried
2004-05-20 19:12 Len Brown
2004-05-20 19:12 ` Len Brown
2004-05-11 16:48 Len Brown
2004-05-11 16:48 ` Len Brown
2004-05-03 16:52 Len Brown
2004-04-01 10:40 Len Brown
2004-04-01 10:40 ` Len Brown
2004-03-30 1:26 Manpreet Singh
2004-03-30 0:28 Manpreet Singh
2004-03-29 17:32 Moore, Robert
2004-03-27 9:18 Manpreet Singh
2004-03-27 0:59 Len Brown
2004-03-27 0:59 ` Len Brown
[not found] ` <1080349151.16211.33.camel-D2Zvc0uNKG8@public.gmane.org>
2004-03-27 11:11 ` Marcel Holtmann
2004-03-27 11:11 ` Marcel Holtmann
2004-03-14 6:08 Len Brown
2004-03-14 6:08 ` Len Brown
2004-03-06 6:37 Len Brown
2004-03-06 6:37 ` Len Brown
2004-02-25 9:18 Len Brown
2004-02-25 9:18 ` Len Brown
2004-02-14 4:46 Len Brown
2004-02-07 9:10 Len Brown
[not found] ` <1076145027.8682.34.camel-D2Zvc0uNKG8@public.gmane.org>
2004-02-09 9:09 ` Olaf Hering
2004-02-09 9:09 ` Olaf Hering
2004-02-09 9:11 ` Olaf Hering
2004-02-09 9:11 ` Olaf Hering
2004-01-27 6:03 Len Brown
2004-01-27 6:03 ` Len Brown
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=1080036132.21687.310.camel@dhcppc4 \
--to=len.brown-ral2jqcrhueavxtiumwx3w@public.gmane.org \
--cc=acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=torvalds-3NddpPZAyC0@public.gmane.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 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.