svn commit: r321179 - head/sys/dev/cxgbe/tom

Navdeep Parhar np at FreeBSD.org
Wed Jul 19 01:49:02 UTC 2017


Author: np
Date: Wed Jul 19 01:49:01 2017
New Revision: 321179
URL: https://svnweb.freebsd.org/changeset/base/321179

Log:
  cxgbe/t4_tom: Log more details about the newly ESTABLISHED tid to the
  trace buffer.
  
  MFC after:	3 days

Modified:
  head/sys/dev/cxgbe/tom/t4_cpl_io.c

Modified: head/sys/dev/cxgbe/tom/t4_cpl_io.c
==============================================================================
--- head/sys/dev/cxgbe/tom/t4_cpl_io.c	Tue Jul 18 23:35:19 2017	(r321178)
+++ head/sys/dev/cxgbe/tom/t4_cpl_io.c	Wed Jul 19 01:49:01 2017	(r321179)
@@ -385,8 +385,8 @@ make_established(struct toepcb *toep, uint32_t snd_isn
 	    tp->t_state == TCPS_SYN_RECEIVED,
 	    ("%s: TCP state %s", __func__, tcpstates[tp->t_state]));
 
-	CTR4(KTR_CXGBE, "%s: tid %d, toep %p, inp %p",
-	    __func__, toep->tid, toep, inp);
+	CTR6(KTR_CXGBE, "%s: tid %d, so %p, inp %p, tp %p, toep %p",
+	    __func__, toep->tid, so, inp, tp, toep);
 
 	tp->t_state = TCPS_ESTABLISHED;
 	tp->t_starttime = ticks;


More information about the svn-src-head mailing list