[PATCH 1/3] [2.6.26] memory: Introduce exports for memory notifiers
Hannes Hering
hannes.hering at linux.vnet.ibm.com
Wed May 7 22:43:01 EST 2008
This patch introduces two exports to allow modules to use memory notifiers.
Signed-off-by: Hannes Hering <hering2 at de.ibm.com>
---
diff --git a/drivers/base/memory.c b/drivers/base/memory.c
index 8ce6de5..937e825 100644
--- a/drivers/base/memory.c
+++ b/drivers/base/memory.c
@@ -53,11 +53,13 @@ int register_memory_notifier(struct notifier_block *nb)
{
return blocking_notifier_chain_register(&memory_chain, nb);
}
+EXPORT_SYMBOL(register_memory_notifier);
void unregister_memory_notifier(struct notifier_block *nb)
{
blocking_notifier_chain_unregister(&memory_chain, nb);
}
+EXPORT_SYMBOL(unregister_memory_notifier);
/*
* register_memory - Setup a sysfs device for a memory block
--
1.5.5.1
More information about the Linuxppc-dev
mailing list