Author: jhb
Date: Mon Aug 19 18:50:56 2019
New Revision: 351228
URL: https://svnweb.freebsd.org/changeset/base/351228

Log:
  MFC 348791: Fix debug trace after removal of pdu_overhead.

Modified:
  stable/11/sys/dev/cxgbe/tom/t4_tls.c
Directory Properties:
  stable/11/   (props changed)

Changes in other areas also in this revision:
Modified:
  stable/12/sys/dev/cxgbe/tom/t4_tls.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/11/sys/dev/cxgbe/tom/t4_tls.c
==============================================================================
--- stable/11/sys/dev/cxgbe/tom/t4_tls.c        Mon Aug 19 18:15:17 2019        
(r351227)
+++ stable/11/sys/dev/cxgbe/tom/t4_tls.c        Mon Aug 19 18:50:56 2019        
(r351228)
@@ -1594,8 +1594,8 @@ do_rx_tls_cmp(struct sge_iq *iq, const struct rss_head
        sbappendstream_locked(sb, m, 0);
        rx_credits = sbspace(sb) > tp->rcv_wnd ? sbspace(sb) - tp->rcv_wnd : 0;
 #ifdef VERBOSE_TRACES
-       CTR5(KTR_CXGBE, "%s: tid %u PDU overhead %d rx_credits %u rcv_wnd %u",
-           __func__, tid, pdu_overhead, rx_credits, tp->rcv_wnd);
+       CTR4(KTR_CXGBE, "%s: tid %u rx_credits %u rcv_wnd %u",
+           __func__, tid, rx_credits, tp->rcv_wnd);
 #endif
        if (rx_credits > 0 && sbused(sb) + tp->rcv_wnd < sb->sb_lowat) {
                rx_credits = send_rx_credits(sc, toep, rx_credits);
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to