The branch stable/13 has been updated by markj:

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

commit 7e6232140fa28f2f086309ad227c8c5cd75a9001
Author:     Mark Johnston <[email protected]>
AuthorDate: 2022-08-24 23:55:20 +0000
Commit:     Mark Johnston <[email protected]>
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

Reply via email to