You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
435 B
21 lines
435 B
#include <linux/vmalloc.h>
|
|
#include <linux/moduleloader.h>
|
|
|
|
/* Copied from i386 arch/i386/kernel/module.c */
|
|
void *module_alloc(unsigned long size)
|
|
{
|
|
if (size == 0)
|
|
return NULL;
|
|
return vmalloc_exec(size);
|
|
}
|
|
|
|
/* Free memory returned from module_alloc */
|
|
void module_free(struct module *mod, void *module_region)
|
|
{
|
|
vfree(module_region);
|
|
/*
|
|
* FIXME: If module_region == mod->init_region, trim exception
|
|
* table entries.
|
|
*/
|
|
}
|
|
|
|
|