Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755690AbdC1Vs4 (ORCPT ); Tue, 28 Mar 2017 17:48:56 -0400 Received: from cloudserver094114.home.net.pl ([79.96.170.134]:43557 "EHLO cloudserver094114.home.net.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754318AbdC1Vsz (ORCPT ); Tue, 28 Mar 2017 17:48:55 -0400 From: "Rafael J. Wysocki" To: Shanker Donthineni Cc: Len Brown , linux-acpi , linux-kernel , Vikram Sethi Subject: Re: [PATCH] ACPI : Update platform device numa node based on _PXM method Date: Tue, 28 Mar 2017 23:43:12 +0200 Message-ID: <1932728.uFK6bUjlgv@aspire.rjw.lan> User-Agent: KMail/4.14.10 (Linux/4.10.0+; KDE/4.14.9; x86_64; ; ) In-Reply-To: <1490108070-24061-1-git-send-email-shankerd@codeaurora.org> References: <1490108070-24061-1-git-send-email-shankerd@codeaurora.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1227 Lines: 35 On Tuesday, March 21, 2017 09:54:30 AM Shanker Donthineni wrote: > 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 What exactly is the motivation here? > --- > 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); >