svn commit: r364368 - head/sys/netgraph
Marko Zec
zec at FreeBSD.org
Tue Aug 18 22:46:47 UTC 2020
Author: zec
Date: Tue Aug 18 22:46:46 2020
New Revision: 364368
URL: https://svnweb.freebsd.org/changeset/base/364368
Log:
Increase BER to PER lookup table size in an attempt to mitigate panics
with LRO and TSO.
Reported by: rstone
Modified:
head/sys/netgraph/ng_pipe.h
Modified: head/sys/netgraph/ng_pipe.h
==============================================================================
--- head/sys/netgraph/ng_pipe.h Tue Aug 18 22:15:51 2020 (r364367)
+++ head/sys/netgraph/ng_pipe.h Tue Aug 18 22:46:46 2020 (r364368)
@@ -43,7 +43,7 @@
#define NG_PIPE_HOOK_UPPER "upper"
#define NG_PIPE_HOOK_LOWER "lower"
-#define MAX_FSIZE 16384 /* Largest supported frame size, in bytes, for BER */
+#define MAX_FSIZE 65536 /* Largest supported frame size, in bytes, for BER */
#define MAX_OHSIZE 256 /* Largest supported dummy-framing size, in bytes */
/* Statistics structure for one hook */
More information about the svn-src-all
mailing list