Date: Mon, 23 Nov 2009 23:23:05 +0000 (UTC) From: Marcel Moolenaar <marcel@FreeBSD.org> To: cvs-src-old@freebsd.org Subject: cvs commit: src/sys/sys param.h Message-ID: <200911232323.nANNNPTU071241@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
marcel 2009-11-23 23:23:05 UTC FreeBSD src repository Modified files: sys/sys param.h Log: SVN rev 199723 on 2009-11-23 23:23:05Z by marcel Don't make MJUMPAGESIZE equal to PAGE_SIZE unconditionally. When PAGE_SIZE is 16K, MJUMPAGESIZE equals MJUM16BYTES and causes build breakages. For PAGE_SIZE < 2K, define MJUMPAGESIZE as MCLBYTES. For PAGE_SIZE > 8K, define MJUMPAGESIZE as 8K. Everywhere inbetween, define MJUMPAGESIZE as PAGE_SIZE. Thus MCLBYTES <= MJUMPAGESIZE <= 8KB. Revision Changes Path 1.440 +8 -1 src/sys/sys/param.h
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200911232323.nANNNPTU071241>