* help for ACPI_CONTAINER sucks
@ 2005-01-15 22:21 Grant Grundler
[not found] ` <20050115222129.GB10070-lGaJ6EKWmV+kGg0756fqLw@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Grant Grundler @ 2005-01-15 22:21 UTC (permalink / raw)
To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
Help for ACPI_CONTAINER is just useless:
This is the ACPI generic container driver which supports
ACPI0004, PNP0A05 and PNP0A06 devices.
Help should explain what those devices are and what might not work
unless I enable ACPI_CONTAINER. As a !acpi_developer I have no clue
and am just annoyed by the question.
Here is a fictious example (I have no clue about ACPI) might provide
some guidance on what I was expecting:
The ACPI generic container driver provides support for:
ACPI0004 - Hotplug IO
PNP0A05 - Hotplug CPU
PNP0A06 - Hotplug Memory
One can use those devices but can't access hotplug features
unless this option is enabled.
If one selects "m", this driver can be loaded with
"modprobe acpi_container".
hth,
grant
-------------------------------------------------------
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: help for ACPI_CONTAINER sucks
[not found] ` <20050115222129.GB10070-lGaJ6EKWmV+kGg0756fqLw@public.gmane.org>
@ 2005-01-18 5:49 ` Keiichiro Tokunaga
[not found] ` <20050118144924.2ab0749e.tokunaga.keiich-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Keiichiro Tokunaga @ 2005-01-18 5:49 UTC (permalink / raw)
To: Grant Grundler
Cc: tokunaga.keiich-+CUm20s59erQFUHtdCDX3A,
acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
Hi Grant,
I'm sorry, the help doesn't help... Let me explain it here
and I'm attaching a patch.
The ACPI spec allows one or more "devices", to be described
in a (ACPI0004, PNP0A05, PNP0A06) "container" object. This is
typically used to describe CPUs, memory, root bridges, P2P
bridges etc. in any arbitrary combination. The intent is to
describe the machine, so the contents of a container will
depend on machine topology. A container can be used, for
example, to describe a NUMA compute node with CPUs and memory
or an IO node with bridges and slots. ACPI firmware doesn't
really build container objects today, so these are really useful
in the hot-plug context, at least for now. The intent of the
new code is to allow an ACPI container to be _physically_
inserted or removed. It depends on the corresponding _logical_
hotplug functionality (e.g. cpu/memory hotplug) to exist elsewhere
in the kernel. The current ACPI code only supports a compute
node with CPUs and memory.
Thanks,
Keiichiro Tokunaga
---
linux-2.6.11-rc1-kei-kei/drivers/acpi/Kconfig | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
diff -puN drivers/acpi/Kconfig~fix-help-container drivers/acpi/Kconfig
--- linux-2.6.11-rc1-kei/drivers/acpi/Kconfig~fix-help-container 2005-01-17 11:37:39.000000000 +0900
+++ linux-2.6.11-rc1-kei-kei/drivers/acpi/Kconfig 2005-01-18 14:27:09.000000000 +0900
@@ -339,7 +339,12 @@ config ACPI_CONTAINER
depends on ACPI && EXPERIMENTAL
default (ACPI_HOTPLUG_MEMORY || ACPI_HOTPLUG_CPU || ACPI_HOTPLUG_IO)
---help---
- This is the ACPI generic container driver which supports
- ACPI0004, PNP0A05 and PNP0A06 devices
+ This allows _physical_ insertion and removal of CPUs and memory.
+ This can be useful, for example, on NUMA machines that support
+ ACPI based physical hotplug of nodes, or non-NUMA machines that
+ support physical cpu/memory hot-plug.
+
+ If one selects "m", this driver can be loaded with
+ "modprobe acpi_container".
endmenu
_
On Sat, 15 Jan 2005 15:21:29 -0700 Grant Grundler wrote:
>
> Help for ACPI_CONTAINER is just useless:
> This is the ACPI generic container driver which supports
> ACPI0004, PNP0A05 and PNP0A06 devices.
>
> Help should explain what those devices are and what might not work
> unless I enable ACPI_CONTAINER. As a !acpi_developer I have no clue
> and am just annoyed by the question.
>
> Here is a fictious example (I have no clue about ACPI) might provide
> some guidance on what I was expecting:
> The ACPI generic container driver provides support for:
> ACPI0004 - Hotplug IO
> PNP0A05 - Hotplug CPU
> PNP0A06 - Hotplug Memory
>
> One can use those devices but can't access hotplug features
> unless this option is enabled.
>
> If one selects "m", this driver can be loaded with
> "modprobe acpi_container".
>
> hth,
> grant
>
>
> -------------------------------------------------------
> The SF.Net email is sponsored by: Beat the post-holiday blues
> Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
> It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt
> _______________________________________________
> Acpi-devel mailing list
> Acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
> https://lists.sourceforge.net/lists/listinfo/acpi-devel
-------------------------------------------------------
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: help for ACPI_CONTAINER sucks
[not found] ` <20050118144924.2ab0749e.tokunaga.keiich-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
@ 2005-01-18 20:07 ` Grant Grundler
0 siblings, 0 replies; 3+ messages in thread
From: Grant Grundler @ 2005-01-18 20:07 UTC (permalink / raw)
To: Keiichiro Tokunaga; +Cc: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
On Tue, Jan 18, 2005 at 02:49:24PM +0900, Keiichiro Tokunaga wrote:
> I'm sorry, the help doesn't help... Let me explain it here
> and I'm attaching a patch.
Thanks!
You explanation was excellent and the patch looks good.
thanks again,
grant
-------------------------------------------------------
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2005-01-18 20:07 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-01-15 22:21 help for ACPI_CONTAINER sucks Grant Grundler
[not found] ` <20050115222129.GB10070-lGaJ6EKWmV+kGg0756fqLw@public.gmane.org>
2005-01-18 5:49 ` Keiichiro Tokunaga
[not found] ` <20050118144924.2ab0749e.tokunaga.keiich-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
2005-01-18 20:07 ` Grant Grundler
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox