diff options
author | dr146992 <none@none> | 2006-10-28 16:33:34 -0700 |
---|---|---|
committer | dr146992 <none@none> | 2006-10-28 16:33:34 -0700 |
commit | 08ee25ae754a3b9ee3786f304f066ae14dc6e379 (patch) | |
tree | dadaf27f9aba488c64f239dd98d14ddf1e08c8d3 /usr/src/uts/common/inet/tcp/tcp.c | |
parent | 314f82a5c916420023909fe2fa360ff4491045d3 (diff) | |
download | illumos-joyent-08ee25ae754a3b9ee3786f304f066ae14dc6e379.tar.gz |
6343157 svcadm disable ipfilter does not flush the rules
6484763 PFHOOKS breaks post-ACQUIRE ESP processing
6485599 msgpullup/pullupmsg now implies either M_DATA or M_MULTIDATA
6485731 panic in fil.c trying to release ipf_mutex while not held
6485761 ipfilter kernel module always enables itself on load
6485781 mutex_enter: bad mutex in ipflog_read
6485943 MSG_FWCOOKED_* survived attempted genocide
6486513 too much of a good thing can be bad
6486575 use ipf -D twice will panic the system
6487360 physical_in hook inserted twice into ip_input() for onnv putback
Diffstat (limited to 'usr/src/uts/common/inet/tcp/tcp.c')
-rw-r--r-- | usr/src/uts/common/inet/tcp/tcp.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/usr/src/uts/common/inet/tcp/tcp.c b/usr/src/uts/common/inet/tcp/tcp.c index 2361fcaacc..9f9a7a4507 100644 --- a/usr/src/uts/common/inet/tcp/tcp.c +++ b/usr/src/uts/common/inet/tcp/tcp.c @@ -18495,7 +18495,7 @@ tcp_send_data(tcp_t *tcp, queue_t *q, mblk_t *mp) ill_t *, NULL, ill_t *, out_ill, ipha_t *, ipha, mblk_t *, mp); FW_HOOKS(ip4_physical_out_event, ipv4firewall_physical_out, - MSG_FWCOOKED_OUT, NULL, out_ill, ipha, mp, mp); + NULL, out_ill, ipha, mp, mp); DTRACE_PROBE1(ip4__physical__out__end, mblk_t *, mp); if (mp != NULL) putnext(ire->ire_stq, mp); @@ -20103,8 +20103,7 @@ legacy_send_no_md: mblk_t *, mp); FW_HOOKS(ip4_physical_out_event, ipv4firewall_physical_out, - MSG_FWCOOKED_OUT, NULL, ill, ipha, - mp, mp); + NULL, ill, ipha, mp, mp); DTRACE_PROBE1( ip4__physical__out__end, mblk_t *, mp); @@ -20117,8 +20116,7 @@ legacy_send_no_md: mblk_t *, mp); FW_HOOKS6(ip6_physical_out_event, ipv6firewall_physical_out, - MSG_FWCOOKED_OUT, NULL, ill, ip6h, - mp, mp); + NULL, ill, ip6h, mp, mp); DTRACE_PROBE1( ip6__physical__out__end, mblk_t *, mp); |