* ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for 2.6.25-rc6)
2008-03-26 8:16 ` Ingo Molnar
@ 2008-03-26 15:32 ` Len Brown
2008-03-26 15:45 ` Corentin CHARY
2008-03-26 15:56 ` Bjorn Helgaas
0 siblings, 2 replies; 9+ messages in thread
From: Len Brown @ 2008-03-26 15:32 UTC (permalink / raw)
To: Ingo Molnar, Corentin CHARY
Cc: Bjorn Helgaas, Linus Torvalds, Andrew Morton, linux-acpi,
linux-kernel, linux-pm
> btw., saw this ACPI-ish commit in rc7:
>
> | commit b97d4803400a4442b0e4ae14d0bd8e83994b9004
> | Author: Bjorn Helgaas <bjorn.helgaas@hp.com>
> | Date: Tue Mar 25 11:21:11 2008 -0600
> |
> | ACPI: fix Medion _PRT quirk (use "ISA_", not "ISA")
>
> a grep shows that we've got one other case of an "ISA" string in the
> ACPI code - is the patch below needed too?
>
> Ingo
>
> -------------------->
> Subject: acpi: fix asus isa
> From: Ingo Molnar <mingo@elte.hu>
> Date: Wed Mar 26 09:05:07 CET 2008
>
> Signed-off-by: Ingo Molnar <mingo@elte.hu>
> ---
> drivers/acpi/asus_acpi.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> Index: linux-x86.q/drivers/acpi/asus_acpi.c
> ===================================================================
> --- linux-x86.q.orig/drivers/acpi/asus_acpi.c
> +++ linux-x86.q/drivers/acpi/asus_acpi.c
> @@ -149,7 +149,7 @@ struct asus_hotk {
> };
>
> /* Here we go */
> -#define A1x_PREFIX "\\_SB.PCI0.ISA.EC0."
> +#define A1x_PREFIX "\\_SB.PCI0.ISA_.EC0."
>From an AML point of view, ISA is just as legal as "ISA_"
The NameString paramter to Device() can be 1 to 4 characters.
So if this is correct or not depends on what the BIOS programmer
for the Asus A1x choose to write. Perhaps Corentin 'Iksaif' CHARY
can confirm if the driver is working properly on that system.
-Len
> #define L3C_PREFIX "\\_SB.PCI0.PX40.ECD0."
> #define M1A_PREFIX "\\_SB.PCI0.PX40.EC0."
> #define P30_PREFIX "\\_SB.PCI0.LPCB.EC0."
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for 2.6.25-rc6)
2008-03-26 15:32 ` ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for 2.6.25-rc6) Len Brown
@ 2008-03-26 15:45 ` Corentin CHARY
2008-03-26 16:33 ` Henrique de Moraes Holschuh
2008-03-26 15:56 ` Bjorn Helgaas
1 sibling, 1 reply; 9+ messages in thread
From: Corentin CHARY @ 2008-03-26 15:45 UTC (permalink / raw)
To: Len Brown
Cc: Ingo Molnar, Bjorn Helgaas, Linus Torvalds, Andrew Morton,
linux-acpi, linux-kernel, linux-pm
On Wednesday 26 March 2008 16:32:20 Len Brown wrote:
> So if this is correct or not depends on what the BIOS programmer
> for the Asus A1x choose to write. Perhaps Corentin 'Iksaif' CHARY
> can confirm if the driver is working properly on that system.
Hi,
Sorry I don't have an A1x to test that, and this was here a long time before I start working on acpi4asus.
But, see that grep :
chary_c@foo /usr/src/linux/drivers/misc $ grep ISA *
asus-laptop.c: "\\_SB.PCI0.ISA.EC0._Q10", /* A1x */
thinkpad_acpi.c:IBM_HANDLE(ec, root, "\\_SB.PCI0.ISA.EC0", /* 240, 240x */
thinkpad_acpi.c: "\\_SB.PCI.ISA.EC", /* 570 */
thinkpad_acpi.c: "\\_SB.PCI0.ISA0.EC0", /* 600e/x, 770e, 770x */
thinkpad_acpi.c: "\\_SB.PCI0.ISA.EC", /* A21e, A2xm/p, T20-22, X20-21 */
thinkpad_acpi.c: "\\_SB.PCI.ISA.SLCE", /* 570 */
So it seems to work for thinkpads.
I think this patch isn't needed.
--
Corentin 'Iksaif' CHARY
http://xf.iksaif.net
--
To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for 2.6.25-rc6)
2008-03-26 15:32 ` ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for 2.6.25-rc6) Len Brown
2008-03-26 15:45 ` Corentin CHARY
@ 2008-03-26 15:56 ` Bjorn Helgaas
2008-03-26 17:24 ` Alexey Starikovskiy
1 sibling, 1 reply; 9+ messages in thread
From: Bjorn Helgaas @ 2008-03-26 15:56 UTC (permalink / raw)
To: Len Brown
Cc: Ingo Molnar, Corentin CHARY, Linus Torvalds, Andrew Morton,
linux-acpi, linux-kernel, linux-pm
On Wednesday 26 March 2008 09:32:20 am Len Brown wrote:
> > /* Here we go */
> > -#define A1x_PREFIX "\\_SB.PCI0.ISA.EC0."
> > +#define A1x_PREFIX "\\_SB.PCI0.ISA_.EC0."
>
> From an AML point of view, ISA is just as legal as "ISA_"
> The NameString paramter to Device() can be 1 to 4 characters.
>
> So if this is correct or not depends on what the BIOS programmer
> for the Asus A1x choose to write. Perhaps Corentin 'Iksaif' CHARY
> can confirm if the driver is working properly on that system.
I'm curious about how this works. I disassembled the DSDT from
http://bugzilla.kernel.org/show_bug.cgi?id=4773 (I attached the disassembly
at http://bugzilla.kernel.org/attachment.cgi?id=15448&action=view), and
the _PRT contains "_SB" and "ISA" (no trailing underscores):
Package (0x04)
{
0x000DFFFF,
0x00,
\_SB.PCI0.ISA.LNKA,
0x00
}
But by the time we get to acpi_pci_irq_add_entry(), we've added the
underscores somewhere (see
http://bugzilla.kernel.org/attachment.cgi?id=15423&action=view):
0000:00:0d[A] -> \_SB_.PCI0.ISA_.LNKA
I don't know where this happens, but it certainly confused me, and
it seems like it could lead to other bugs.
Bjorn
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for 2.6.25-rc6)
2008-03-26 15:45 ` Corentin CHARY
@ 2008-03-26 16:33 ` Henrique de Moraes Holschuh
0 siblings, 0 replies; 9+ messages in thread
From: Henrique de Moraes Holschuh @ 2008-03-26 16:33 UTC (permalink / raw)
To: Corentin CHARY
Cc: linux-kernel, linux-acpi, linux-pm, Ingo Molnar, Linus Torvalds,
Andrew Morton, Bjorn Helgaas
On Wed, 26 Mar 2008, Corentin CHARY wrote:
> thinkpad_acpi.c:IBM_HANDLE(ec, root, "\\_SB.PCI0.ISA.EC0", /* 240, 240x */
> thinkpad_acpi.c: "\\_SB.PCI.ISA.EC", /* 570 */
> thinkpad_acpi.c: "\\_SB.PCI0.ISA0.EC0", /* 600e/x, 770e, 770x */
> thinkpad_acpi.c: "\\_SB.PCI0.ISA.EC", /* A21e, A2xm/p, T20-22, X20-21 */
> thinkpad_acpi.c: "\\_SB.PCI.ISA.SLCE", /* 570 */
>
> So it seems to work for thinkpads.
ThinkPads use "ISA" as the node (not ISA_ or anything else like that),
and the ACPICA node match routine works properly.
So please don't touch thinkpad-acpi's ".ISA." stuff.
--
"One disk to rule them all, One disk to find them. One disk to bring
them all and in the darkness grind them. In the Land of Redmond
where the shadows lie." -- The Silicon Valley Tarot
Henrique Holschuh
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for 2.6.25-rc6)
2008-03-26 15:56 ` Bjorn Helgaas
@ 2008-03-26 17:24 ` Alexey Starikovskiy
2008-03-26 18:47 ` Bjorn Helgaas
0 siblings, 1 reply; 9+ messages in thread
From: Alexey Starikovskiy @ 2008-03-26 17:24 UTC (permalink / raw)
To: Bjorn Helgaas
Cc: Len Brown, Ingo Molnar, Corentin CHARY, Linus Torvalds,
Andrew Morton, linux-acpi, linux-kernel, linux-pm
Bjorn Helgaas wrote:
> I'm curious about how this works. I disassembled the DSDT from
> http://bugzilla.kernel.org/show_bug.cgi?id=4773 (I attached the disassembly
> at http://bugzilla.kernel.org/attachment.cgi?id=15448&action=view), and
> the _PRT contains "_SB" and "ISA" (no trailing underscores):
>
> Package (0x04)
> {
> 0x000DFFFF,
> 0x00,
> \_SB.PCI0.ISA.LNKA,
> 0x00
> }
>
> But by the time we get to acpi_pci_irq_add_entry(), we've added the
> underscores somewhere (see
> http://bugzilla.kernel.org/attachment.cgi?id=15423&action=view):
>
> 0000:00:0d[A] -> \_SB_.PCI0.ISA_.LNKA
>
> I don't know where this happens, but it certainly confused me, and
> it seems like it could lead to other bugs.
>
ACPI is supposed to add trailing underscore for pad all names to 4 bytes.
So ISA will be padded to ISA_.
Regards,
Alex.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for 2.6.25-rc6)
2008-03-26 17:24 ` Alexey Starikovskiy
@ 2008-03-26 18:47 ` Bjorn Helgaas
2008-03-26 19:21 ` Alexey Starikovskiy
0 siblings, 1 reply; 9+ messages in thread
From: Bjorn Helgaas @ 2008-03-26 18:47 UTC (permalink / raw)
To: Alexey Starikovskiy
Cc: Len Brown, Ingo Molnar, Corentin CHARY, Linus Torvalds,
Andrew Morton, linux-acpi, linux-kernel, linux-pm
On Wednesday 26 March 2008 11:24:41 am Alexey Starikovskiy wrote:
> Bjorn Helgaas wrote:
> > I'm curious about how this works. I disassembled the DSDT from
> > http://bugzilla.kernel.org/show_bug.cgi?id=4773 (I attached the disassembly
> > at http://bugzilla.kernel.org/attachment.cgi?id=15448&action=view), and
> > the _PRT contains "_SB" and "ISA" (no trailing underscores):
> >
> > Package (0x04)
> > {
> > 0x000DFFFF,
> > 0x00,
> > \_SB.PCI0.ISA.LNKA,
> > 0x00
> > }
> >
> > But by the time we get to acpi_pci_irq_add_entry(), we've added the
> > underscores somewhere (see
> > http://bugzilla.kernel.org/attachment.cgi?id=15423&action=view):
> >
> > 0000:00:0d[A] -> \_SB_.PCI0.ISA_.LNKA
> >
> > I don't know where this happens, but it certainly confused me, and
> > it seems like it could lead to other bugs.
> >
> ACPI is supposed to add trailing underscore for pad all names to 4 bytes.
> So ISA will be padded to ISA_.
The questions are "where does this happen?" and "why does it not
apply to other things like asus_acpi.c?"
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for 2.6.25-rc6)
2008-03-26 18:47 ` Bjorn Helgaas
@ 2008-03-26 19:21 ` Alexey Starikovskiy
0 siblings, 0 replies; 9+ messages in thread
From: Alexey Starikovskiy @ 2008-03-26 19:21 UTC (permalink / raw)
To: Bjorn Helgaas
Cc: Len Brown, Ingo Molnar, Corentin CHARY, Linus Torvalds,
Andrew Morton, linux-acpi, linux-kernel, linux-pm
Bjorn Helgaas wrote:
> On Wednesday 26 March 2008 11:24:41 am Alexey Starikovskiy wrote:
>
>> Bjorn Helgaas wrote:
>>
>>> I'm curious about how this works. I disassembled the DSDT from
>>> http://bugzilla.kernel.org/show_bug.cgi?id=4773 (I attached the disassembly
>>> at http://bugzilla.kernel.org/attachment.cgi?id=15448&action=view), and
>>> the _PRT contains "_SB" and "ISA" (no trailing underscores):
>>>
>>> Package (0x04)
>>> {
>>> 0x000DFFFF,
>>> 0x00,
>>> \_SB.PCI0.ISA.LNKA,
>>> 0x00
>>> }
>>>
>>> But by the time we get to acpi_pci_irq_add_entry(), we've added the
>>> underscores somewhere (see
>>> http://bugzilla.kernel.org/attachment.cgi?id=15423&action=view):
>>>
>>> 0000:00:0d[A] -> \_SB_.PCI0.ISA_.LNKA
>>>
>>> I don't know where this happens, but it certainly confused me, and
>>> it seems like it could lead to other bugs.
>>>
>>>
>> ACPI is supposed to add trailing underscore for pad all names to 4 bytes.
>> So ISA will be padded to ISA_.
>>
>
> The questions are "where does this happen?" and "why does it not
> apply to other things like asus_acpi.c?"
>
1. drivers/acpi/namespace/nsutils.c:419
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for 2.6.25-rc6)
[not found] ` <B28E9812BAF6E2498B7EC5C427F293A4048009DF@orsmsx415.amr.corp.intel.com>
@ 2008-03-27 5:28 ` Len Brown
2008-03-27 16:28 ` Moore, Robert
0 siblings, 1 reply; 9+ messages in thread
From: Len Brown @ 2008-03-27 5:28 UTC (permalink / raw)
To: Moore, Robert, linux-acpi; +Cc: aystarik, Lin, Ming M
Bob,
Wouldn't it be less confusing if the dis-assembler
also adding the trailing underscores to match what
is actually done by the interpreter?
thanks,
-Len
On Wednesday 26 March 2008, Moore, Robert wrote:
> References, ACPI specification 3.0b:
>
>
> 5.3 ACPI Namespace
>
> By convention, when an ASL compiler pads a name shorter than 4
> characters, it is done so with trailing underscores ('_'). See the
> language definition for AML NameSeg in Section 16, "ACPI Source Language
> Reference."
>
> (Reference should point to section 18, AML reference)
>
>
>
> 18.2.2 Name Objects Encoding
>
> NameSeg := <LeadNameChar NameChar NameChar NameChar>
> // Notice that NameSegs shorter than 4 characters are filled with
> // trailing underscores ('_'s).
>
>
>
>
>
> -----Original Message-----
> From: Moore, Robert
> Sent: Wednesday, March 26, 2008 6:59 PM
> To: 'Len Brown'
> Cc: 'aystarik@gmail.com'; Lin, Ming M
> Subject: RE: Re: ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for
> 2.6.25-rc6)
>
> Whenever an ACPI namepath is parsed (each 4 character name within a
> namepath is called a "nameseg"), each nameseg is padded out with
> underscores if it is shorter than 4 characters. This happens whenever a
> named object is created and whenever a reference to a name is
> encountered.
>
> Thus, internally, ALL namesegs are exactly 4 characters, no need to add
> code to handle variable-length namesegs.
>
> Thus, smaller code and fewer bugs. This is also mentioned in the ACPI
> spec somewhere.
>
> Bob
>
>
> Example:
>
> Name (I, 0x1234)
>
> Will be entered into the namespace as
>
> I___
>
> A reference to I such as
>
> Store (\DEV0\I, Local0)
>
> Will convert "I" to "I___" during AML parsing.
>
>
>
> -----Original Message-----
> From: Len Brown [mailto:lenb@kernel.org]
> Sent: Wednesday, March 26, 2008 11:00 AM
> To: Moore, Robert
> Subject: Fwd: Re: ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for
> 2.6.25-rc6)
>
> Bob,
> can you comment on this thread?
>
> thanks,
> -Len
>
> ---------- Forwarded Message ----------
>
> Subject: Re: ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for 2.6.25-rc6)
> Date: Wednesday 26 March 2008
> From: Alexey Starikovskiy < aystarik@gmail.com >
> To: Bjorn Helgaas <bjorn.helgaas@hp.com>
>
> Bjorn Helgaas wrote:
> > I'm curious about how this works. I disassembled the DSDT from
> > http://bugzilla.kernel.org/show_bug.cgi?id=4773 (I attached the
> disassembly
> > at http://bugzilla.kernel.org/attachment.cgi?id=15448&action=view),
> and
> > the _PRT contains "_SB" and "ISA" (no trailing underscores):
> >
> > Package (0x04)
> > {
> > 0x000DFFFF,
> > 0x00,
> > \_SB.PCI0.ISA.LNKA,
> > 0x00
> > }
> >
> > But by the time we get to acpi_pci_irq_add_entry(), we've added the
> > underscores somewhere (see
> > http://bugzilla.kernel.org/attachment.cgi?id=15423&action=view):
> >
> > 0000:00:0d[A] -> \_SB_.PCI0.ISA_.LNKA
> >
> > I don't know where this happens, but it certainly confused me, and
> > it seems like it could lead to other bugs.
> >
> ACPI is supposed to add trailing underscore for pad all names to 4
> bytes.
> So ISA will be padded to ISA_.
>
> Regards,
> Alex.
>
> -------------------------------------------------------
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for 2.6.25-rc6)
2008-03-27 5:28 ` ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for 2.6.25-rc6) Len Brown
@ 2008-03-27 16:28 ` Moore, Robert
0 siblings, 0 replies; 9+ messages in thread
From: Moore, Robert @ 2008-03-27 16:28 UTC (permalink / raw)
To: Len Brown, linux-acpi; +Cc: aystarik, Lin, Ming M, Therien, Guy
The disassembler dumps out the actual code -- including namesegs and
namepaths -- as they appear in the AML. I don't want the disassembler
changing or embellishing anything, I want to see the original ASL.
Bob
>-----Original Message-----
>From: Len Brown [mailto:lenb@kernel.org]
>Sent: Wednesday, March 26, 2008 10:29 PM
>To: Moore, Robert; linux-acpi@vger.kernel.org
>Cc: aystarik@gmail.com; Lin, Ming M
>Subject: Re: ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for 2.6.25-rc6)
>
>Bob,
>Wouldn't it be less confusing if the dis-assembler
>also adding the trailing underscores to match what
>is actually done by the interpreter?
>
>thanks,
>-Len
>
>On Wednesday 26 March 2008, Moore, Robert wrote:
>> References, ACPI specification 3.0b:
>>
>>
>> 5.3 ACPI Namespace
>>
>> By convention, when an ASL compiler pads a name shorter than 4
>> characters, it is done so with trailing underscores ('_'). See the
>> language definition for AML NameSeg in Section 16, "ACPI Source
Language
>> Reference."
>>
>> (Reference should point to section 18, AML reference)
>>
>>
>>
>> 18.2.2 Name Objects Encoding
>>
>> NameSeg := <LeadNameChar NameChar NameChar NameChar>
>> // Notice that NameSegs shorter than 4 characters are filled with
>> // trailing underscores ('_'s).
>>
>>
>>
>>
>>
>> -----Original Message-----
>> From: Moore, Robert
>> Sent: Wednesday, March 26, 2008 6:59 PM
>> To: 'Len Brown'
>> Cc: 'aystarik@gmail.com'; Lin, Ming M
>> Subject: RE: Re: ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for
>> 2.6.25-rc6)
>>
>> Whenever an ACPI namepath is parsed (each 4 character name within a
>> namepath is called a "nameseg"), each nameseg is padded out with
>> underscores if it is shorter than 4 characters. This happens whenever
a
>> named object is created and whenever a reference to a name is
>> encountered.
>>
>> Thus, internally, ALL namesegs are exactly 4 characters, no need to
add
>> code to handle variable-length namesegs.
>>
>> Thus, smaller code and fewer bugs. This is also mentioned in the ACPI
>> spec somewhere.
>>
>> Bob
>>
>>
>> Example:
>>
>> Name (I, 0x1234)
>>
>> Will be entered into the namespace as
>>
>> I___
>>
>> A reference to I such as
>>
>> Store (\DEV0\I, Local0)
>>
>> Will convert "I" to "I___" during AML parsing.
>>
>>
>>
>> -----Original Message-----
>> From: Len Brown [mailto:lenb@kernel.org]
>> Sent: Wednesday, March 26, 2008 11:00 AM
>> To: Moore, Robert
>> Subject: Fwd: Re: ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for
>> 2.6.25-rc6)
>>
>> Bob,
>> can you comment on this thread?
>>
>> thanks,
>> -Len
>>
>> ---------- Forwarded Message ----------
>>
>> Subject: Re: ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for
2.6.25-rc6)
>> Date: Wednesday 26 March 2008
>> From: Alexey Starikovskiy < aystarik@gmail.com >
>> To: Bjorn Helgaas <bjorn.helgaas@hp.com>
>>
>> Bjorn Helgaas wrote:
>> > I'm curious about how this works. I disassembled the DSDT from
>> > http://bugzilla.kernel.org/show_bug.cgi?id=4773 (I attached the
>> disassembly
>> > at http://bugzilla.kernel.org/attachment.cgi?id=15448&action=view),
>> and
>> > the _PRT contains "_SB" and "ISA" (no trailing underscores):
>> >
>> > Package (0x04)
>> > {
>> > 0x000DFFFF,
>> > 0x00,
>> > \_SB.PCI0.ISA.LNKA,
>> > 0x00
>> > }
>> >
>> > But by the time we get to acpi_pci_irq_add_entry(), we've added the
>> > underscores somewhere (see
>> > http://bugzilla.kernel.org/attachment.cgi?id=15423&action=view):
>> >
>> > 0000:00:0d[A] -> \_SB_.PCI0.ISA_.LNKA
>> >
>> > I don't know where this happens, but it certainly confused me, and
>> > it seems like it could lead to other bugs.
>> >
>> ACPI is supposed to add trailing underscore for pad all names to 4
>> bytes.
>> So ISA will be padded to ISA_.
>>
>> Regards,
>> Alex.
>>
>> -------------------------------------------------------
>>
>
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2008-03-27 16:32 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <200803261400.22662.lenb@kernel.org>
[not found] ` <B28E9812BAF6E2498B7EC5C427F293A4048009DF@orsmsx415.amr.corp.intel.com>
2008-03-27 5:28 ` ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for 2.6.25-rc6) Len Brown
2008-03-27 16:28 ` Moore, Robert
2008-03-18 9:10 [GIT PATCH] ACPI patches for 2.6.25-rc6 Len Brown
2008-03-26 8:16 ` Ingo Molnar
2008-03-26 15:32 ` ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for 2.6.25-rc6) Len Brown
2008-03-26 15:45 ` Corentin CHARY
2008-03-26 16:33 ` Henrique de Moraes Holschuh
2008-03-26 15:56 ` Bjorn Helgaas
2008-03-26 17:24 ` Alexey Starikovskiy
2008-03-26 18:47 ` Bjorn Helgaas
2008-03-26 19:21 ` Alexey Starikovskiy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox