diff options
| author | Andrew Gallatin <gallatin@FreeBSD.org> | 2026-05-21 13:28:46 +0000 |
|---|---|---|
| committer | Andrew Gallatin <gallatin@FreeBSD.org> | 2026-05-21 13:34:40 +0000 |
| commit | d7cde43f95bf432b6894c3cf804a8dffe99461e4 (patch) | |
| tree | 28c2c9b413cd91526db107420907df6e35eeced5 | |
| parent | 81b47a7c604f1d563283759572fa7a1f9d4dc56f (diff) | |
| -rw-r--r-- | sys/net/if_loop.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/net/if_loop.c b/sys/net/if_loop.c index 33ddd3a8540e..fc5ce9548bcc 100644 --- a/sys/net/if_loop.c +++ b/sys/net/if_loop.c @@ -219,7 +219,9 @@ looutput(struct ifnet *ifp, struct mbuf *m, const struct sockaddr *dst, if_inc_counter(ifp, IFCOUNTER_OPACKETS, 1); if_inc_counter(ifp, IFCOUNTER_OBYTES, m->m_pkthdr.len); +#ifdef RSS M_HASHTYPE_CLEAR(m); +#endif /* BPF writes need to be handled specially. */ if (dst->sa_family == AF_UNSPEC || dst->sa_family == pseudo_AF_HDRCMPLT) |
