Date: Mon, 9 Jul 2007 19:22:58 GMT From: Kip Macy <kmacy@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 123223 for review Message-ID: <200707091922.l69JMwIp097470@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=123223 Change 123223 by kmacy@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200707091922.l69JMwIp097470>