Skip to content

Commit

Permalink
xen/acpi: Move xen_acpi_get_pxm to Xen's acpi.h
Browse files Browse the repository at this point in the history
So that it could be reused by Xen CPU hotplug logic.

Signed-off-by: Liu, Jinsong <jinsong.liu@intel.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
  • Loading branch information
Liu Jinsong authored and Konrad Rzeszutek Wilk committed Feb 20, 2013
1 parent b22ff77 commit 40a5863
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
18 changes: 0 additions & 18 deletions drivers/xen/xen-acpi-memhotplug.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,24 +65,6 @@ static int xen_hotadd_memory(int pxm, struct acpi_memory_info *info)
return rc;
}

static int xen_acpi_get_pxm(acpi_handle h)
{
unsigned long long pxm;
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 pxm;
status = acpi_get_parent(handle, &phandle);
} while (ACPI_SUCCESS(status));

return -ENXIO;
}

static int xen_acpi_memory_enable_device(struct acpi_memory_device *mem_device)
{
int pxm, result;
Expand Down
18 changes: 18 additions & 0 deletions include/xen/acpi.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,22 @@ static inline void xen_acpi_sleep_register(void)
}
#endif

static inline int xen_acpi_get_pxm(acpi_handle h)
{
unsigned long long pxm;
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 pxm;
status = acpi_get_parent(handle, &phandle);
} while (ACPI_SUCCESS(status));

return -ENXIO;
}

#endif /* _XEN_ACPI_H */

0 comments on commit 40a5863

Please sign in to comment.