summaryrefslogtreecommitdiffstats
path: root/sys/sparc64
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2013-08-22 07:39:53 +0000
committerkib <kib@FreeBSD.org>2013-08-22 07:39:53 +0000
commitba12eedccd58fdeb0e4a9fcb875df2207242789c (patch)
treeebc7f0d660b0d8af7dbd22f485c3a5f29bc589bf /sys/sparc64
parent40e805bbd20a3dc78b0a587d39959e082125340f (diff)
downloadFreeBSD-src-ba12eedccd58fdeb0e4a9fcb875df2207242789c.zip
FreeBSD-src-ba12eedccd58fdeb0e4a9fcb875df2207242789c.tar.gz
Remove the deprecated VM_ALLOC_RETRY flag for the vm_page_grab(9).
The flag was mandatory since r209792, where vm_page_grab(9) was changed to only support the alloc retry semantic. Suggested and reviewed by: alc Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'sys/sparc64')
-rw-r--r--sys/sparc64/sparc64/pmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sparc64/sparc64/pmap.c b/sys/sparc64/sparc64/pmap.c
index fe7ad85..eacc318 100644
--- a/sys/sparc64/sparc64/pmap.c
+++ b/sys/sparc64/sparc64/pmap.c
@@ -1230,7 +1230,7 @@ pmap_pinit(pmap_t pm)
VM_OBJECT_WLOCK(pm->pm_tsb_obj);
for (i = 0; i < TSB_PAGES; i++) {
m = vm_page_grab(pm->pm_tsb_obj, i, VM_ALLOC_NOBUSY |
- VM_ALLOC_RETRY | VM_ALLOC_WIRED | VM_ALLOC_ZERO);
+ VM_ALLOC_WIRED | VM_ALLOC_ZERO);
m->valid = VM_PAGE_BITS_ALL;
m->md.pmap = pm;
ma[i] = m;
OpenPOWER on IntegriCloud