[BACK]Return to um_module.c CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs / arch / um / sys-x86_64

File: [Development] / linux-2.6-xfs / arch / um / sys-x86_64 / um_module.c (download)

Revision 1.1, Tue Jun 21 15:50:10 2005 UTC (12 years, 4 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN

Merge up to 2.6.12
Merge of 2.6.x-xfs-melb:linux:22920a by kenmcd.

#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. */
}