From: Oleg Nesterov <oleg@tv-sign.ru>
To: linux-kernel@vger.kernel.org
Cc: Andi Kleen <ak@suse.de>, "David S. Miller" <davem@davemloft.net>,
Russell King <rmk@arm.linux.org.uk>,
Rusty Russell <rusty@rustcorp.com.au>,
Andrew Morton <akpm@osdl.org>
Subject: [PATCH 4/5] vmalloc: use __vmalloc_area in arch/x86_64/
Date: Sun, 06 Mar 2005 21:56:45 +0300 [thread overview]
Message-ID: <422B526D.C6814232@tv-sign.ru> (raw)
Replace open coded __vmalloc() with __vmalloc_area().
Uncompiled, untested.
Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
--- 2.6.11/arch/x86_64/kernel/module.c~ 2005-03-06 21:25:41.000000000 +0300
+++ 2.6.11/arch/x86_64/kernel/module.c 2005-03-06 21:32:34.000000000 +0300
@@ -29,107 +29,27 @@
#include <asm/pgtable.h>
#define DEBUGP(fmt...)
-
-static struct vm_struct *mod_vmlist;
void module_free(struct module *mod, void *module_region)
{
- struct vm_struct **prevp, *map;
- int i;
- unsigned long addr = (unsigned long)module_region;
-
- if (!addr)
- return;
- write_lock(&vmlist_lock);
- for (prevp = &mod_vmlist ; (map = *prevp) ; prevp = &map->next) {
- if ((unsigned long)map->addr == addr) {
- *prevp = map->next;
- goto found;
- }
- }
- write_unlock(&vmlist_lock);
- printk("Trying to unmap nonexistent module vm area (%lx)\n", addr);
- return;
- found:
- unmap_vm_area(map);
- write_unlock(&vmlist_lock);
- if (map->pages) {
- for (i = 0; i < map->nr_pages; i++)
- if (map->pages[i])
- __free_page(map->pages[i]);
- kfree(map->pages);
- }
- kfree(map);
+ vfree(module_region);
}
void *module_alloc(unsigned long size)
{
- struct vm_struct **p, *tmp, *area;
- struct page **pages;
- void *addr;
- unsigned int nr_pages, array_size, i;
+ struct vm_struct *area;
if (!size)
- return NULL;
+ return NULL;
size = PAGE_ALIGN(size);
if (size > MODULES_LEN)
return NULL;
- area = (struct vm_struct *) kmalloc(sizeof(*area), GFP_KERNEL);
+ area = __get_vm_area(size, VM_ALLOC, MODULES_VADDR, MODULES_END);
if (!area)
return NULL;
- memset(area, 0, sizeof(struct vm_struct));
- write_lock(&vmlist_lock);
- addr = (void *) MODULES_VADDR;
- for (p = &mod_vmlist; (tmp = *p); p = &tmp->next) {
- void *next;
- DEBUGP("vmlist %p %lu addr %p\n", tmp->addr, tmp->size, addr);
- if (size + (unsigned long) addr + PAGE_SIZE < (unsigned long) tmp->addr)
- break;
- next = (void *) (tmp->size + (unsigned long) tmp->addr);
- if (next > addr)
- addr = next;
- }
-
- if ((unsigned long)addr + size >= MODULES_END) {
- write_unlock(&vmlist_lock);
- kfree(area);
- return NULL;
- }
- DEBUGP("addr %p\n", addr);
-
- area->next = *p;
- *p = area;
- area->size = size + PAGE_SIZE;
- area->addr = addr;
- write_unlock(&vmlist_lock);
-
- nr_pages = size >> PAGE_SHIFT;
- array_size = (nr_pages * sizeof(struct page *));
-
- area->nr_pages = nr_pages;
- area->pages = pages = kmalloc(array_size, GFP_KERNEL);
- if (!area->pages)
- goto fail;
-
- memset(area->pages, 0, array_size);
- for (i = 0; i < nr_pages; i++) {
- area->pages[i] = alloc_page(GFP_KERNEL);
- if (area->pages[i] == NULL)
- goto fail;
- }
-
- if (map_vm_area(area, PAGE_KERNEL_EXEC, &pages))
- goto fail;
-
- memset(addr, 0, size);
- DEBUGP("module_alloc size %lu = %p\n", size, addr);
- return addr;
-
-fail:
- module_free(NULL, addr);
- return NULL;
+ return __vmalloc_area(area, GFP_KERNEL, PAGE_KERNEL_EXEC);
}
/* We don't need anything special. */
reply other threads:[~2005-03-06 17:55 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=422B526D.C6814232@tv-sign.ru \
--to=oleg@tv-sign.ru \
--cc=ak@suse.de \
--cc=akpm@osdl.org \
--cc=davem@davemloft.net \
--cc=linux-kernel@vger.kernel.org \
--cc=rmk@arm.linux.org.uk \
--cc=rusty@rustcorp.com.au \
/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
all inboxes | Powered by JetHome®