All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Leizhen (ThunderTown)" <thunder.leizhen-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
To: Grant Likely
	<grant.likely-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
	Rob Herring <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	devicetree <devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	Greg Kroah-Hartman
	<gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org>,
	linux-kernel
	<linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Cc: Zefan Li <lizefan-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>,
	Xinwei Hu <huxinwei-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>,
	Tianhong Ding
	<dingtianhong-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>,
	Hanjun Guo <guohanjun-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
Subject: Re: [PATCH v2 1/1] of: to support binding numa node to specified device in devicetree
Date: Thu, 10 Sep 2015 19:28:32 +0800	[thread overview]
Message-ID: <55F16960.4010402@huawei.com> (raw)
In-Reply-To: <1440475702-7720-2-git-send-email-thunder.leizhen-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>

Hi all,

Can somebody take a few moments to review it? This patch is
too small, only changed two lines.

Thanks,
Thunder.

On 2015/8/25 12:08, Zhen Lei wrote:
> For now, in function device_add, the new device will be forced to
> inherit the numa node of its parent. But this will override the device's
> numa node which configured in devicetree.
> 
> Signed-off-by: Zhen Lei <thunder.leizhen-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
> ---
>  drivers/base/core.c |  2 +-
>  drivers/of/device.c | 11 ++++++-----
>  2 files changed, 7 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/base/core.c b/drivers/base/core.c
> index dafae6d..e06de82 100644
> --- a/drivers/base/core.c
> +++ b/drivers/base/core.c
> @@ -1017,7 +1017,7 @@ int device_add(struct device *dev)
>  		dev->kobj.parent = kobj;
> 
>  	/* use parent numa_node */
> -	if (parent)
> +	if (parent && (dev_to_node(dev) == NUMA_NO_NODE))
>  		set_dev_node(dev, dev_to_node(parent));
> 
>  	/* first, register with generic layer. */
> diff --git a/drivers/of/device.c b/drivers/of/device.c
> index 8b91ea2..e5f47ce 100644
> --- a/drivers/of/device.c
> +++ b/drivers/of/device.c
> @@ -60,11 +60,12 @@ int of_device_add(struct platform_device *ofdev)
>  	ofdev->name = dev_name(&ofdev->dev);
>  	ofdev->id = -1;
> 
> -	/* device_add will assume that this device is on the same node as
> -	 * the parent. If there is no parent defined, set the node
> -	 * explicitly */
> -	if (!ofdev->dev.parent)
> -		set_dev_node(&ofdev->dev, of_node_to_nid(ofdev->dev.of_node));
> +	/*
> +	 * If this device has not binding numa node in devicetree, that is
> +	 * of_node_to_nid returns NUMA_NO_NODE. device_add will assume that this
> +	 * device is on the same node as the parent.
> +	 */
> +	set_dev_node(&ofdev->dev, of_node_to_nid(ofdev->dev.of_node));
> 
>  	return device_add(&ofdev->dev);
>  }
> --
> 2.5.0
> 
> 
> 
> .
> 

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

WARNING: multiple messages have this Message-ID (diff)
From: "Leizhen (ThunderTown)" <thunder.leizhen@huawei.com>
To: Grant Likely <grant.likely@linaro.org>,
	Rob Herring <robh+dt@kernel.org>,
	devicetree <devicetree@vger.kernel.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	linux-kernel <linux-kernel@vger.kernel.org>
Cc: Zefan Li <lizefan@huawei.com>, Xinwei Hu <huxinwei@huawei.com>,
	"Tianhong Ding" <dingtianhong@huawei.com>,
	Hanjun Guo <guohanjun@huawei.com>
Subject: Re: [PATCH v2 1/1] of: to support binding numa node to specified device in devicetree
Date: Thu, 10 Sep 2015 19:28:32 +0800	[thread overview]
Message-ID: <55F16960.4010402@huawei.com> (raw)
In-Reply-To: <1440475702-7720-2-git-send-email-thunder.leizhen@huawei.com>

Hi all,

Can somebody take a few moments to review it? This patch is
too small, only changed two lines.

Thanks,
Thunder.

On 2015/8/25 12:08, Zhen Lei wrote:
> For now, in function device_add, the new device will be forced to
> inherit the numa node of its parent. But this will override the device's
> numa node which configured in devicetree.
> 
> Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
> ---
>  drivers/base/core.c |  2 +-
>  drivers/of/device.c | 11 ++++++-----
>  2 files changed, 7 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/base/core.c b/drivers/base/core.c
> index dafae6d..e06de82 100644
> --- a/drivers/base/core.c
> +++ b/drivers/base/core.c
> @@ -1017,7 +1017,7 @@ int device_add(struct device *dev)
>  		dev->kobj.parent = kobj;
> 
>  	/* use parent numa_node */
> -	if (parent)
> +	if (parent && (dev_to_node(dev) == NUMA_NO_NODE))
>  		set_dev_node(dev, dev_to_node(parent));
> 
>  	/* first, register with generic layer. */
> diff --git a/drivers/of/device.c b/drivers/of/device.c
> index 8b91ea2..e5f47ce 100644
> --- a/drivers/of/device.c
> +++ b/drivers/of/device.c
> @@ -60,11 +60,12 @@ int of_device_add(struct platform_device *ofdev)
>  	ofdev->name = dev_name(&ofdev->dev);
>  	ofdev->id = -1;
> 
> -	/* device_add will assume that this device is on the same node as
> -	 * the parent. If there is no parent defined, set the node
> -	 * explicitly */
> -	if (!ofdev->dev.parent)
> -		set_dev_node(&ofdev->dev, of_node_to_nid(ofdev->dev.of_node));
> +	/*
> +	 * If this device has not binding numa node in devicetree, that is
> +	 * of_node_to_nid returns NUMA_NO_NODE. device_add will assume that this
> +	 * device is on the same node as the parent.
> +	 */
> +	set_dev_node(&ofdev->dev, of_node_to_nid(ofdev->dev.of_node));
> 
>  	return device_add(&ofdev->dev);
>  }
> --
> 2.5.0
> 
> 
> 
> .
> 


  parent reply	other threads:[~2015-09-10 11:28 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-25  4:08 [PATCH 0/1] of: to support binding numa node to specified device Zhen Lei
2015-08-25  4:08 ` Zhen Lei
     [not found] ` <1440475702-7720-1-git-send-email-thunder.leizhen-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2015-08-25  4:08   ` [PATCH 1/1] of: to support binding numa node to specified device in devicetree Zhen Lei
2015-08-25  4:08     ` Zhen Lei
     [not found]     ` <1440475702-7720-2-git-send-email-thunder.leizhen-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2015-09-10 11:28       ` Leizhen (ThunderTown) [this message]
2015-09-10 11:28         ` [PATCH v2 " Leizhen (ThunderTown)
2015-09-10 11:06 ` [PATCH v2 0/1] of: to support binding numa node to specified device Leizhen (ThunderTown)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=55F16960.4010402@huawei.com \
    --to=thunder.leizhen-hv44wf8li93qt0dzr+alfa@public.gmane.org \
    --cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=dingtianhong-hv44wF8Li93QT0dZR+AlfA@public.gmane.org \
    --cc=grant.likely-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
    --cc=gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org \
    --cc=guohanjun-hv44wF8Li93QT0dZR+AlfA@public.gmane.org \
    --cc=huxinwei-hv44wF8Li93QT0dZR+AlfA@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=lizefan-hv44wF8Li93QT0dZR+AlfA@public.gmane.org \
    --cc=robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.