diff options
| author | Alan Cox <alc@FreeBSD.org> | 2003-08-02 17:08:21 +0000 |
|---|---|---|
| committer | Alan Cox <alc@FreeBSD.org> | 2003-08-02 17:08:21 +0000 |
| commit | 884962ae4eca91c92d38aa48896ee675a99398a2 (patch) | |
| tree | 280746484654754b8eac4bd5c1275f3f27af8380 /sys/kern/sys_process.c | |
| parent | e4e2c6131383a895ccfa487d09a0eb9fbfbc8388 (diff) | |
Notes
Diffstat (limited to 'sys/kern/sys_process.c')
| -rw-r--r-- | sys/kern/sys_process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/sys_process.c b/sys/kern/sys_process.c index 370b75708cfed..aa791036b5c8f 100644 --- a/sys/kern/sys_process.c +++ b/sys/kern/sys_process.c @@ -177,7 +177,7 @@ proc_rwmem(struct proc *p, struct uio *uio) reqprot = writing ? (VM_PROT_WRITE | VM_PROT_OVERRIDE_WRITE) : VM_PROT_READ; - kva = kmem_alloc_pageable(kernel_map, PAGE_SIZE); + kva = kmem_alloc_nofault(kernel_map, PAGE_SIZE); /* * Only map in one page at a time. We don't have to, but it |
