aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/node.h
diff options
context:
space:
mode:
authorKeiichiro Tokunaga <tokunaga.keiich@jp.fujitsu.com>2005-05-08 21:28:53 +0900
committerGreg Kroah-Hartman <gregkh@suse.de>2005-06-20 15:15:29 -0700
commit4b45099b75832434c5113b9aed1499f8a69d13d5 (patch)
treedbb6cf4a3937120be0cfd6f4699926fa4689ac8d /include/linux/node.h
parent[PATCH] usbcore: Don't call device_release_driver recursively (diff)
downloadlinux-dev-4b45099b75832434c5113b9aed1499f8a69d13d5.tar.xz
linux-dev-4b45099b75832434c5113b9aed1499f8a69d13d5.zip
[PATCH] Driver core: unregister_node() for hotplug use
This adds a generic function 'unregister_node()'. It is used to remove objects of a node going away for hotplug. All the devices on the node must be unregistered before calling this function. Signed-off-by: Keiichiro Tokunaga <tokunaga.keiich@jp.fujitsu.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> diff -puN drivers/base/node.c~numa_hp_base drivers/base/node.c
Diffstat (limited to 'include/linux/node.h')
-rw-r--r--include/linux/node.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/node.h b/include/linux/node.h
index 6e0a697e594e..254dc3de650b 100644
--- a/include/linux/node.h
+++ b/include/linux/node.h
@@ -27,6 +27,7 @@ struct node {
};
extern int register_node(struct node *, int, struct node *);
+extern void unregister_node(struct node *node);
#define to_node(sys_device) container_of(sys_device, struct node, sysdev)