Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 29 Oct 2020 22:14:34 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r367146 - head/sys/netinet
Message-ID:  <202010292214.09TMEY4e076572@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb
Date: Thu Oct 29 22:14:34 2020
New Revision: 367146
URL: https://svnweb.freebsd.org/changeset/base/367146

Log:
  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

Modified:
  head/sys/netinet/in_pcb.c

Modified: head/sys/netinet/in_pcb.c
==============================================================================
--- head/sys/netinet/in_pcb.c	Thu Oct 29 22:00:15 2020	(r367145)
+++ head/sys/netinet/in_pcb.c	Thu Oct 29 22:14:34 2020	(r367146)
@@ -3333,7 +3333,7 @@ in_pcbattach_txrtlmt(struct inpcb *inp, struct ifnet *
 	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) {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010292214.09TMEY4e076572>