Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 31 Aug 2022 15:39:01 GMT
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 7e6232140fa2 - stable/13 - NOTES: Update the default MSIZE and MCLSHIFT values
Message-ID:  <202208311539.27VFd1jW089565@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=7e6232140fa28f2f086309ad227c8c5cd75a9001

commit 7e6232140fa28f2f086309ad227c8c5cd75a9001
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2022-08-24 23:55:20 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2022-08-31 15:38:14 +0000

    NOTES: Update the default MSIZE and MCLSHIFT values
    
    After commit 840327e5ddf3 ("mbuf: Don't support PAGE_SIZE < 4K"), these
    defaults were causing LINT kernel builds to fail.
    
    Reported by:    Jenkins
    
    (cherry picked from commit b0b0e4ee00b16cdbe5400e05f63934fdda1b133a)
---
 sys/conf/NOTES | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/conf/NOTES b/sys/conf/NOTES
index 9c4aca472a17..885e3ba23f1a 100644
--- a/sys/conf/NOTES
+++ b/sys/conf/NOTES
@@ -2031,8 +2031,8 @@ device		rtwnfw
 # mismatch between the mbuf size assumed by the kernel and the mbuf size
 # assumed by a module.  The only driver that currently has the ability to
 # detect a mismatch is ti(4).
-options 	MCLSHIFT=12	# mbuf cluster shift in bits, 12 == 4KB
-options 	MSIZE=512	# mbuf size in bytes
+options 	MCLSHIFT=11	# mbuf cluster shift in bits, 12 == 4KB
+options 	MSIZE=256	# mbuf size in bytes
 
 #
 # Sound drivers



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202208311539.27VFd1jW089565>