Date: Mon, 31 Jan 2011 17:44:56 GMT From: Edward Tomasz Napierala <trasz@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 188385 for review Message-ID: <201101311744.p0VHiuvg086868@skunkworks.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/@@188385?ac=10 Change 188385 by trasz@trasz_victim8 on 2011/01/31 17:44:18 Fix build on i386 even more. Affected files ... .. //depot/projects/soc2009/trasz_limits/sys/i386/linux/imgact_linux.c#12 edit .. //depot/projects/soc2009/trasz_limits/sys/vm/vm_pageout.c#25 edit Differences ... ==== //depot/projects/soc2009/trasz_limits/sys/i386/linux/imgact_linux.c#12 (text+ko) ==== @@ -34,6 +34,7 @@ #include <sys/param.h> #include <sys/systm.h> +#include <sys/container.h> #include <sys/exec.h> #include <sys/imgact.h> #include <sys/imgact_aout.h> ==== //depot/projects/soc2009/trasz_limits/sys/vm/vm_pageout.c#25 (text+ko) ==== @@ -1738,7 +1738,8 @@ if (rsize > ravailable) tryagain++; if (tryagain > 20) { - printf("still too much: rsize = %ld, ravailable = %zd\n", rsize, ravailable); + printf("still too much: rsize = %ju, ravailable = %ju\n", + (uintmax_t)rsize, (uintmax_t)ravailable); tryagain = 0; } }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201101311744.p0VHiuvg086868>