diff options
author | Konstantin Belousov <kib@FreeBSD.org> | 2024-11-27 14:26:53 +0000 |
---|---|---|
committer | Konstantin Belousov <kib@FreeBSD.org> | 2024-11-27 14:30:52 +0000 |
commit | 45d108ee147cc8776a659578da585b31a0ba5643 (patch) | |
tree | 127e6acde33510509b35dc4bb17e4c39ec6f1284 | |
parent | 0963af50e96d9c8e93041e9faf281c895bb53dbe (diff) |
pf_route6(): one more __sdt_used annotation
Sponsored by: The FreeBSD Foundation
-rw-r--r-- | sys/netpfil/pf/pf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netpfil/pf/pf.c b/sys/netpfil/pf/pf.c index fdec1cecb350..f6bd1b93ca1b 100644 --- a/sys/netpfil/pf/pf.c +++ b/sys/netpfil/pf/pf.c @@ -8090,7 +8090,7 @@ pf_route6(struct mbuf **m, struct pf_krule *r, struct ifnet *oifp, dst.sin6_addr.s6_addr16[1] = htons(ifp->if_index); mtag = m_tag_find(m0, PACKET_TAG_PF_REASSEMBLED, NULL); if (mtag != NULL) { - int ret; + int ret __sdt_used; ret = pf_refragment6(ifp, &m0, mtag, ifp, true); SDT_PROBE2(pf, ip6, route_to, output, ifp, ret); goto done; |