On Wed, 22 Sep 2004 08:52:59 -0600, Alex Williamson wrote: > On Wed, 2004-09-22 at 22:15 +0900, Keiichiro Tokunaga wrote: > > > > I would like to suggest introducing a new function 'acpi_get_pxm()' > > since other drivers might need it in the future. Acutally, ACPI container > > hotplug will be using it soon. > > > > Here is a patch creating the function. > > > > Nice, I have a couple I/O locality patches that could be simplified > with this function. > > > +#ifdef CONFIG_ACPI_NUMA > > +int acpi_get_pxm(acpi_handle handle); > > +#else > > +static inline int acpi_get_pxm(acpi_handle hanle) > Trivial typo here ---> ^^^^^ handle Oh, good catch:) Thanks! Keiichiro Tokunaga Name: acpi_pxm_support.patch Status: 2.6.9-rc2 Signed-off-by: Keiichiro Tokunaga <tokuanga.keiich@jp.fujitsu.com> Description: Introduce acpi_get_pxm(). The code has been refreshed a little bit from the first version. --- linux-2.6.9-rc2-fix-kei/drivers/acpi/numa.c | 21 ++++++++++++++++++++- linux-2.6.9-rc2-fix-kei/include/linux/acpi.h | 8 ++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) diff -puN drivers/acpi/numa.c~acpi_pxm_support drivers/acpi/numa.c --- linux-2.6.9-rc2-fix/drivers/acpi/numa.c~acpi_pxm_support 2004-09-22 18:53:53.000000000 +0900 +++ linux-2.6.9-rc2-fix-kei/drivers/acpi/numa.c 2004-09-23 02:07:50.948628719 +0900 @@ -22,7 +22,7 @@ * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * */ - +#include <linux/module.h> #include <linux/config.h> #include <linux/init.h> #include <linux/kernel.h> @@ -195,3 +195,22 @@ acpi_numa_init() acpi_numa_arch_fixup(); return 0; } + +int +acpi_get_pxm(acpi_handle h) +{ + unsigned long pxm = -1; + acpi_status status; + acpi_handle handle ; + acpi_handle phandle = h; + + do { + handle = phandle; + status = acpi_evaluate_integer(handle, "_PXM", NULL, &pxm); + if (ACPI_SUCCESS(status)) + return (int)pxm; + status = acpi_get_parent(handle, &phandle); + } while(ACPI_SUCCESS(status)); + return -1; +} +EXPORT_SYMBOL(acpi_get_pxm); diff -puN include/linux/acpi.h~acpi_pxm_support include/linux/acpi.h --- linux-2.6.9-rc2-fix/include/linux/acpi.h~acpi_pxm_support 2004-09-22 18:53:53.000000000 +0900 +++ linux-2.6.9-rc2-fix-kei/include/linux/acpi.h 2004-09-23 02:08:18.792537695 +0900 @@ -477,4 +477,12 @@ static inline int acpi_blacklisted(void) #endif /*!CONFIG_ACPI_INTERPRETER*/ +#ifdef CONFIG_ACPI_NUMA +int acpi_get_pxm(acpi_handle handle); +#else +static inline int acpi_get_pxm(acpi_handle handle) +{ + return 0; +} +#endif #endif /*_LINUX_ACPI_H*/ _ - To unsubscribe from this list: send the line "unsubscribe linux-ia64" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Wed Sep 22 13:16:40 2004
This archive was generated by hypermail 2.1.8 : 2005-08-02 09:20:30 EST