patch-2.1.44 linux/mm/vmalloc.c
Next file: linux/net/Makefile
Previous file: linux/mm/swapfile.c
Back to the patch index
Back to the overall index
- Lines: 36
- Date:
Mon Jul 7 08:18:56 1997
- Orig file:
v2.1.43/linux/mm/vmalloc.c
- Orig date:
Sat Dec 21 04:24:05 1996
diff -u --recursive --new-file v2.1.43/linux/mm/vmalloc.c linux/mm/vmalloc.c
@@ -68,7 +68,7 @@
}
}
-static void free_area_pages(unsigned long address, unsigned long size)
+void vmfree_area_pages(unsigned long address, unsigned long size)
{
pgd_t * dir;
unsigned long end = address + size;
@@ -125,7 +125,7 @@
return 0;
}
-static int alloc_area_pages(unsigned long address, unsigned long size)
+int vmalloc_area_pages(unsigned long address, unsigned long size)
{
pgd_t * dir;
unsigned long end = address + size;
@@ -181,7 +181,7 @@
for (p = &vmlist ; (tmp = *p) ; p = &tmp->next) {
if (tmp->addr == addr) {
*p = tmp->next;
- free_area_pages(VMALLOC_VMADDR(tmp->addr), tmp->size);
+ vmfree_area_pages(VMALLOC_VMADDR(tmp->addr), tmp->size);
kfree(tmp);
return;
}
@@ -201,7 +201,7 @@
if (!area)
return NULL;
addr = area->addr;
- if (alloc_area_pages(VMALLOC_VMADDR(addr), size)) {
+ if (vmalloc_area_pages(VMALLOC_VMADDR(addr), size)) {
vfree(addr);
return NULL;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov