From bc5c48f12fa7c75013fb35702e1f8f07c1ff6d7f Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Mon, 13 Jul 2009 18:11:59 +0000 Subject: [PATCH] Correct an error of omission in r195649 ("Add support to the virtual memory system for configuring machine-dependent memory attributes: ..."). In r195649, the "vm_cache_mode_t/vm_memattr_t" parameter was removed from vm_phys_alloc_contig(). Approved by: re (kensmith) --- sys/sun4v/sun4v/pmap.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/sun4v/sun4v/pmap.c b/sys/sun4v/sun4v/pmap.c index 984c3a054121..a754ce943e5d 100644 --- a/sys/sun4v/sun4v/pmap.c +++ b/sys/sun4v/sun4v/pmap.c @@ -1297,8 +1297,7 @@ pmap_alloc_zeroed_contig_pages(int npages, uint64_t alignment) while (m == NULL) { for (i = 0; phys_avail[i + 1] != 0; i += 2) { m = vm_phys_alloc_contig(npages, phys_avail[i], - phys_avail[i + 1], alignment, (1UL<<34), - VM_CACHE_DEFAULT); + phys_avail[i + 1], alignment, (1UL<<34)); if (m) goto found; }