summaryrefslogtreecommitdiffstats
path: root/sys/vm/vm_map.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/vm/vm_map.c')
-rw-r--r--sys/vm/vm_map.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c
index ec7bb5a..5ba5895 100644
--- a/sys/vm/vm_map.c
+++ b/sys/vm/vm_map.c
@@ -61,7 +61,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_map.c,v 1.10 1995/01/09 16:05:45 davidg Exp $
+ * $Id: vm_map.c,v 1.11 1995/01/10 07:32:46 davidg Exp $
*/
/*
@@ -313,7 +313,8 @@ vm_map_entry_create(map)
vm_page_t m;
m = vm_page_alloc(kmem_object,
- mapvm - vm_map_min(kmem_map), 0);
+ mapvm - vm_map_min(kmem_map),
+ (map == kmem_map) ? VM_ALLOC_INTERRUPT : VM_ALLOC_NORMAL);
if (m) {
int newentries;
OpenPOWER on IntegriCloud