From: Yinghai Lu <Yinghai.Lu@Sun.COM>
To: akpm@linux-foundation.org, ak@suse.de, clameter@sgi.com,
rientjes@google.com, Greg KH <greg@kroah.com>
Cc: Linux Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: [PATCH 1/4] try parent numa_node at first before using default
Date: Tue, 03 Jul 2007 17:31:02 -0700 [thread overview]
Message-ID: <200707031731.02456.yinghai.lu@sun.com> (raw)
In-Reply-To: <200707031835.l63IZo9K008197@imap1.linux-foundation.org>
[PATCH 1/4] try parent numa_node at first before using default
Signed-off-by: Yinghai Lu <yinghai.lu@sun.com>
diff --git a/drivers/base/core.c b/drivers/base/core.c
index dd40d78..c344d82 100644
--- a/drivers/base/core.c
+++ b/drivers/base/core.c
@@ -547,6 +547,8 @@ static void klist_children_put(struct klist_node *n)
void device_initialize(struct device *dev)
{
+ int node;
+
kobj_set_kset_s(dev, devices_subsys);
kobject_init(&dev->kobj);
klist_init(&dev->klist_children, klist_children_get,
@@ -557,7 +559,9 @@ void device_initialize(struct device *dev)
spin_lock_init(&dev->devres_lock);
INIT_LIST_HEAD(&dev->devres_head);
device_init_wakeup(dev, 0);
- set_dev_node(dev, -1);
+
+ node = dev->parent ? dev_to_node(dev->parent) : -1;
+ set_dev_node(dev, node);
}
#ifdef CONFIG_SYSFS_DEPRECATED
next prev parent reply other threads:[~2007-07-04 0:34 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-07-03 18:35 + x86_64-get-mp_bus_to_node-as-early.patch added to -mm tree akpm
2007-07-04 0:31 ` Yinghai Lu [this message]
2007-07-10 0:44 ` [PATCH 1/4] try parent numa_node at first before using default Greg KH
2007-07-10 0:52 ` Christoph Lameter
2007-07-10 4:49 ` Greg KH
2007-07-10 6:22 ` Yinghai Lu
2007-07-10 1:03 ` Yinghai Lu
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=200707031731.02456.yinghai.lu@sun.com \
--to=yinghai.lu@sun.com \
--cc=ak@suse.de \
--cc=akpm@linux-foundation.org \
--cc=clameter@sgi.com \
--cc=greg@kroah.com \
--cc=linux-kernel@vger.kernel.org \
--cc=rientjes@google.com \
/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.