linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Skip Ford <skip.ford@verizon.net>
To: linux-kernel@vger.kernel.org
Subject: [PATCH] Unresolved symbol - vmalloc
Date: Sun, 9 Jun 2002 05:56:30 -0400	[thread overview]
Message-ID: <20020609095134.HNIV24507.pop016.verizon.net@pool-141-150-239-239.delv.east.verizon.net> (raw)

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

                 reply	other threads:[~2002-06-09  9:51 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20020609095134.HNIV24507.pop016.verizon.net@pool-141-150-239-239.delv.east.verizon.net \
    --to=skip.ford@verizon.net \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).