Messages in this thread Patch in this message |  | | | From | Nigel Cunningham <> | | Subject | [ 10/10] [Suspend2] Memory needed for modules. | | Date | Wed, 01 Feb 2006 21:37:30 +1000 |
| |
Calculate the amount of memory required for the modules that will be used. Utilised when preparing to suspend, to ensure that we have sufficient memory available for doing our work.
Signed-off-by: Nigel Cunningham <nigel@suspend2.net>
kernel/power/modules.c | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/kernel/power/modules.c b/kernel/power/modules.c index 9c27957..e7e7e93 100644 --- a/kernel/power/modules.c +++ b/kernel/power/modules.c @@ -38,6 +38,28 @@ unsigned long header_storage_for_modules return bytes; } +/* + * memory_for_modules + * + * Returns the amount of memory requested by modules for + * doing their work during the cycle. + */ + +unsigned long memory_for_modules(void) +{ + unsigned long bytes = 0; + struct suspend_module_ops *this_module; + + list_for_each_entry(this_module, &suspend_modules, module_list) { + if (this_module->disabled) + continue; + if (this_module->memory_needed) + bytes += this_module->memory_needed(); + } + + return ((bytes + PAGE_SIZE - 1) >> PAGE_SHIFT); +} + /* find_module_given_name * Functionality : Return a module (if found), given a pointer * to its name -- Nigel Cunningham nigel at suspend2 dot net - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |