diff options
| author | Alan Cox <alc@FreeBSD.org> | 2009-06-07 19:38:26 +0000 |
|---|---|---|
| committer | Alan Cox <alc@FreeBSD.org> | 2009-06-07 19:38:26 +0000 |
| commit | 0a2e596a936e3841a8fd0f59940ee1f74777b404 (patch) | |
| tree | 68d74e068916a4fdd1a70c4eef2639718f803b20 /sys/kern/kern_exec.c | |
| parent | db77ea6c22a3ad7192a41b68df5556a77001a086 (diff) | |
Notes
Diffstat (limited to 'sys/kern/kern_exec.c')
| -rw-r--r-- | sys/kern/kern_exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c index 2eec5e9d9cd4..4e66c955bc97 100644 --- a/sys/kern/kern_exec.c +++ b/sys/kern/kern_exec.c @@ -927,7 +927,7 @@ exec_map_first_page(imgp) } #endif ma[0] = vm_page_grab(object, 0, VM_ALLOC_NORMAL | VM_ALLOC_RETRY); - if ((ma[0]->valid & VM_PAGE_BITS_ALL) != VM_PAGE_BITS_ALL) { + if (ma[0]->valid != VM_PAGE_BITS_ALL) { initial_pagein = VM_INITIAL_PAGEIN; if (initial_pagein > object->size) initial_pagein = object->size; |
