linux-acpi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ACPI : Update platform device numa node based on _PXM method
@ 2017-03-21 14:54 Shanker Donthineni
  2017-03-28 21:43 ` Rafael J. Wysocki
  0 siblings, 1 reply; 6+ messages in thread
From: Shanker Donthineni @ 2017-03-21 14:54 UTC (permalink / raw)
  To: Rafael J. Wysocki, Len Brown
  Cc: linux-acpi, linux-kernel, Vikram Sethi, Shanker Donthineni

The optional _PXM method evaluates to an integer that identifies the
proximity domain of a device object. This patch implements support for
ACPI _PXM method and updates the platform device numa node id using
acpi_get_node(), which provides the PXM to NUMA mapping information.

Signed-off-by: Shanker Donthineni <shankerd@codeaurora.org>
---
 drivers/acpi/acpi_platform.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/acpi/acpi_platform.c b/drivers/acpi/acpi_platform.c
index b4c1a6a..83d953e 100644
--- a/drivers/acpi/acpi_platform.c
+++ b/drivers/acpi/acpi_platform.c
@@ -119,11 +119,14 @@ struct platform_device *acpi_create_platform_device(struct acpi_device *adev,
 	if (IS_ERR(pdev))
 		dev_err(&adev->dev, "platform device creation failed: %ld\n",
 			PTR_ERR(pdev));
-	else
+	else {
+		set_dev_node(&pdev->dev, acpi_get_node(adev->handle));
 		dev_dbg(&adev->dev, "created platform device %s\n",
 			dev_name(&pdev->dev));
+	}
 
 	kfree(resources);
+
 	return pdev;
 }
 EXPORT_SYMBOL_GPL(acpi_create_platform_device);
-- 
Qualcomm Datacenter Technologies, Inc. on behalf of the Qualcomm Technologies, Inc.
Qualcomm Technologies, Inc. is a member of the Code Aurora Forum, a Linux Foundation Collaborative Project.

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-03-29 10:24 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-21 14:54 [PATCH] ACPI : Update platform device numa node based on _PXM method Shanker Donthineni
2017-03-28 21:43 ` Rafael J. Wysocki
2017-03-28 22:14   ` Shanker Donthineni
2017-03-28 22:15     ` Rafael J. Wysocki
2017-03-28 22:51       ` Shanker Donthineni
2017-03-29 10:24         ` Rafael J. Wysocki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).