summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjhb <jhb@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>2020-10-29 22:14:34 +0000
committerjhb <jhb@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>2020-10-29 22:14:34 +0000
commitebfc03fdfb8e6bb4a68f893b20f5da7590db56a6 (patch)
treea7af484b6d91a4b58715079e76aef065a3a48701
parent6aceffe3a863cd95d888b3149c6ec73f85ed659a (diff)
downloadfreebsd-ebfc03fdfb8e6bb4a68f893b20f5da7590db56a6.tar.gz
freebsd-ebfc03fdfb8e6bb4a68f893b20f5da7590db56a6.tar.bz2
Store the new send tag in the right place.
r350501 added the 'st' parameter, but did not pass it down to if_snd_tag_alloc(). Reviewed by: gallatin Sponsored by: Netflix Differential Revision: https://reviews.freebsd.org/D26997 git-svn-id: http://svn.freebsd.org/base/head@367146 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
-rw-r--r--sys/netinet/in_pcb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c
index 37438dd68c7..46f6d114b8b 100644
--- a/sys/netinet/in_pcb.c
+++ b/sys/netinet/in_pcb.c
@@ -3333,7 +3333,7 @@ in_pcbattach_txrtlmt(struct inpcb *inp, struct ifnet *ifp,
if (ifp->if_snd_tag_alloc == NULL) {
error = EOPNOTSUPP;
} else {
- error = ifp->if_snd_tag_alloc(ifp, &params, &inp->inp_snd_tag);
+ error = ifp->if_snd_tag_alloc(ifp, &params, st);
#ifdef INET
if (error == 0) {