From 0250db7caa6fdfdbbfcfd0d2069c5c91a3e61980 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Fri, 11 Oct 2002 21:41:53 +0000 Subject: [PATCH] Call uma_zalloc on pvzone with M_NOWAIT, just like i386 and alpha. Otherwise we get hundreds of 'could sleep' during boot. --- sys/ia64/ia64/pmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/ia64/ia64/pmap.c b/sys/ia64/ia64/pmap.c index baeeee1cd9e6..8d88d33427db 100644 --- a/sys/ia64/ia64/pmap.c +++ b/sys/ia64/ia64/pmap.c @@ -902,7 +902,7 @@ get_pv_entry(void) pmap_pagedaemon_waken = 1; wakeup (&vm_pages_needed); } - return uma_zalloc(pvzone, M_WAITOK); + return uma_zalloc(pvzone, M_NOWAIT); } /*