Several modules reference vmalloc and it's no longer an inline,
so I think it needs to be exported. Please tell me if I'm wrong.
diff -ruN linux/mm/Makefile lin/mm/Makefile
--- linux/mm/Makefile Sun Jun 9 05:53:08 2002
+++ lin/mm/Makefile Sun Jun 9 05:52:17 2002
@@ -10,7 +10,7 @@
O_TARGET := mm.o
export-objs := shmem.o filemap.o mempool.o page_alloc.o \
- page-writeback.o
+ page-writeback.o vmalloc.o
obj-y := memory.o mmap.o filemap.o mprotect.o mlock.o mremap.o \
vmalloc.o slab.o bootmem.o swap.o vmscan.o page_io.o \
diff -ruN linux/mm/vmalloc.c lin/mm/vmalloc.c
--- linux/mm/vmalloc.c Sun Jun 9 05:53:01 2002
+++ lin/mm/vmalloc.c Sun Jun 9 05:52:17 2002
@@ -8,6 +8,7 @@
#include <linux/config.h>
#include <linux/slab.h>
+#include <linux/module.h>
#include <linux/vmalloc.h>
#include <linux/spinlock.h>
#include <linux/highmem.h>
@@ -354,3 +355,5 @@
read_unlock(&vmlist_lock);
return buf - buf_start;
}
+
+EXPORT_SYMBOL(vmalloc);
-- Skip - 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/
This archive was generated by hypermail 2b29 : Sat Jun 15 2002 - 22:00:13 EST