Date: Thu, 25 Oct 2012 08:38:43 +0000 (UTC) From: Kevin Lo <kevlo@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r242075 - head/share/man/man9 Message-ID: <201210250838.q9P8chPe012680@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kevlo Date: Thu Oct 25 08:38:43 2012 New Revision: 242075 URL: http://svn.freebsd.org/changeset/base/242075 Log: Fix MINCLSIZE. It should be MHLEN + 1. Reviewed by: glebius Modified: head/share/man/man9/mbuf.9 Modified: head/share/man/man9/mbuf.9 ============================================================================== --- head/share/man/man9/mbuf.9 Thu Oct 25 08:37:08 2012 (r242074) +++ head/share/man/man9/mbuf.9 Thu Oct 25 08:38:43 2012 (r242075) @@ -331,10 +331,9 @@ The system defines an advisory macro .Dv MINCLSIZE , which is the smallest amount of data to put into an .Vt mbuf cluster . -It is equal to the sum of -.Dv MLEN -and -.Dv MHLEN . +It is equal to +.Dv MHLEN +plus one. It is typically preferable to store data into the data region of an .Vt mbuf , if size permits, as opposed to allocating a separate
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210250838.q9P8chPe012680>