Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 5 Sep 2020 00:20:33 +0000 (UTC)
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r365350 - head/sys/netinet/tcp_stacks
Message-ID:  <202009050020.0850KXtd017363@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bz
Date: Sat Sep  5 00:20:32 2020
New Revision: 365350
URL: https://svnweb.freebsd.org/changeset/base/365350

Log:
  bbr: remove unused static function
  
  bbr_log_type_hrdwtso() is a file local static unused function.
  Remove it to avoid warnings on kernel compiles.
  
  Reviewed by:	gallatin
  Differential Revision:	https://reviews.freebsd.org/D26331

Modified:
  head/sys/netinet/tcp_stacks/bbr.c

Modified: head/sys/netinet/tcp_stacks/bbr.c
==============================================================================
--- head/sys/netinet/tcp_stacks/bbr.c	Sat Sep  5 00:19:40 2020	(r365349)
+++ head/sys/netinet/tcp_stacks/bbr.c	Sat Sep  5 00:20:32 2020	(r365350)
@@ -11716,31 +11716,6 @@ done_with_input:
 }
 
 static void
-bbr_log_type_hrdwtso(struct tcpcb *tp, struct tcp_bbr *bbr, int len, int mod, int what_we_can_send)
-{
-	if (tp->t_logstate != TCP_LOG_STATE_OFF) {
-		union tcp_log_stackspecific log;
-		struct timeval tv;
-		uint32_t cts;
-
-		cts = tcp_get_usecs(&tv);
-		bbr_fill_in_logging_data(bbr, &log.u_bbr, cts);
-		log.u_bbr.flex1 = bbr->r_ctl.rc_pace_min_segs;
-		log.u_bbr.flex2 = what_we_can_send;
-		log.u_bbr.flex3 = bbr->r_ctl.rc_pace_max_segs;
-		log.u_bbr.flex4 = len;
-		log.u_bbr.flex5 = 0;
-		log.u_bbr.flex7 = mod;
-		log.u_bbr.flex8 = 1;
-		TCP_LOG_EVENTP(tp, NULL,
-		    &tp->t_inpcb->inp_socket->so_rcv,
-		    &tp->t_inpcb->inp_socket->so_snd,
-		    TCP_HDWR_TLS, 0,
-		    0, &log, false, &tv);
-	}
-}
-
-static void
 bbr_do_segment(struct mbuf *m, struct tcphdr *th, struct socket *so,
     struct tcpcb *tp, int32_t drop_hdrlen, int32_t tlen, uint8_t iptos)
 {



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