mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
There is no good reason for TCP reassembly zone to be UMA_ZONE_NOFREE.
It has strong locking model, doesn't have any timers associated with entries. The entries theirselves are referenced only from the tcpcb zone, which itself is a normal zone, without the UMA_ZONE_NOFREE flag.
This commit is contained in:
parent
cac6fd1154
commit
7637c57ee1
1 changed files with 1 additions and 1 deletions
|
|
@ -108,7 +108,7 @@ tcp_reass_global_init(void)
|
|||
TUNABLE_INT_FETCH("net.inet.tcp.reass.maxsegments",
|
||||
&tcp_reass_maxseg);
|
||||
tcp_reass_zone = uma_zcreate("tcpreass", sizeof (struct tseg_qent),
|
||||
NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, UMA_ZONE_NOFREE);
|
||||
NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0);
|
||||
/* Set the zone limit and read back the effective value. */
|
||||
tcp_reass_maxseg = uma_zone_set_max(tcp_reass_zone,
|
||||
tcp_reass_maxseg);
|
||||
|
|
|
|||
Loading…
Reference in a new issue