git: b0b0e4ee00b1 - main - NOTES: Update the default MSIZE and MCLSHIFT values
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 24 Aug 2022 23:57:52 UTC
The branch main has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=b0b0e4ee00b16cdbe5400e05f63934fdda1b133a commit b0b0e4ee00b16cdbe5400e05f63934fdda1b133a Author: Mark Johnston <markj@FreeBSD.org> AuthorDate: 2022-08-24 23:55:20 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2022-08-24 23:57:33 +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 MFC after: 1 week --- sys/conf/NOTES | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/conf/NOTES b/sys/conf/NOTES index 93da6c78a4b6..9279441f991c 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -2013,8 +2013,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