summaryrefslogtreecommitdiffstats
path: root/sys/vm/memguard.h
diff options
context:
space:
mode:
authorjeff <jeff@FreeBSD.org>2013-08-07 06:21:20 +0000
committerjeff <jeff@FreeBSD.org>2013-08-07 06:21:20 +0000
commitde4ecca21340ce4d0bf9182cac133c14e031218e (patch)
tree950bad07f0aeeeae78036d82b9aa11ae998c3654 /sys/vm/memguard.h
parente141f5c0bac3839e4886a26e1ba796f4e46e6455 (diff)
downloadFreeBSD-src-de4ecca21340ce4d0bf9182cac133c14e031218e.zip
FreeBSD-src-de4ecca21340ce4d0bf9182cac133c14e031218e.tar.gz
Replace kernel virtual address space allocation with vmem. This provides
transparent layering and better fragmentation. - Normalize functions that allocate memory to use kmem_* - Those that allocate address space are named kva_* - Those that operate on maps are named kmap_* - Implement recursive allocation handling for kmem_arena in vmem. Reviewed by: alc Tested by: pho Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'sys/vm/memguard.h')
-rw-r--r--sys/vm/memguard.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/vm/memguard.h b/sys/vm/memguard.h
index 9ec4ffd..9e99e98 100644
--- a/sys/vm/memguard.h
+++ b/sys/vm/memguard.h
@@ -33,10 +33,11 @@
struct malloc_type;
struct vm_map;
+struct vmem;
#ifdef DEBUG_MEMGUARD
unsigned long memguard_fudge(unsigned long, const struct vm_map *);
-void memguard_init(struct vm_map *);
+void memguard_init(struct vmem *);
void *memguard_alloc(unsigned long, int);
void *memguard_realloc(void *, unsigned long, struct malloc_type *, int);
void memguard_free(void *);
OpenPOWER on IntegriCloud