PERFORCE change 123223 for review

Kip Macy kmacy at FreeBSD.org
Mon Jul 9 19:22:59 UTC 2007


http://perforce.freebsd.org/chv.cgi?CH=123223

Change 123223 by kmacy at parmacvm:opentoe_parvm on 2007/07/09 19:22:02

	fix build complaint on 32-bit environments

Affected files ...

.. //depot/projects/opentoe/sys/vm/uma_core.c#5 edit

Differences ...

==== //depot/projects/opentoe/sys/vm/uma_core.c#5 (text+ko) ====

@@ -966,7 +966,7 @@
 	malloc_flags = (wait ? M_WAITOK : M_NOWAIT);
 	
 	return (contigmalloc(bytes, M_DEVBUF, malloc_flags, 0x0ULL,
-		0xffffffffffffULL, 1, 0));
+			     (vm_paddr_t)-1, 1, 0));
 }
 
 static void


More information about the p4-projects mailing list