svn commit: r289492 - head/sys/sys

John-Mark Gurney jmg at FreeBSD.org
Sun Oct 18 08:08:38 UTC 2015


Author: jmg
Date: Sun Oct 18 08:08:37 2015
New Revision: 289492
URL: https://svnweb.freebsd.org/changeset/base/289492

Log:
  page sized is not spelled 4096 on all arches...

Modified:
  head/sys/sys/mbuf.h

Modified: head/sys/sys/mbuf.h
==============================================================================
--- head/sys/sys/mbuf.h	Sun Oct 18 07:33:44 2015	(r289491)
+++ head/sys/sys/mbuf.h	Sun Oct 18 08:08:37 2015	(r289492)
@@ -344,7 +344,7 @@ struct mbuf {
  */
 #define	EXT_CLUSTER	1	/* mbuf cluster */
 #define	EXT_SFBUF	2	/* sendfile(2)'s sf_bufs */
-#define	EXT_JUMBOP	3	/* jumbo cluster 4096 bytes */
+#define	EXT_JUMBOP	3	/* jumbo cluster page sized */
 #define	EXT_JUMBO9	4	/* jumbo cluster 9216 bytes */
 #define	EXT_JUMBO16	5	/* jumbo cluster 16184 bytes */
 #define	EXT_PACKET	6	/* mbuf+cluster from packet zone */


More information about the svn-src-all mailing list