Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Nov 2015 09:37:04 +0000 (UTC)
From:      Svatopluk Kraus <skra@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r291095 - head/sys/dev/de
Message-ID:  <201511200937.tAK9b4Jm019878@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: skra
Date: Fri Nov 20 09:37:04 2015
New Revision: 291095
URL: https://svnweb.freebsd.org/changeset/base/291095

Log:
  Fix build when KTR is defined but not KTR_TULIP.
  
  Approved by:	kib (mentor)

Modified:
  head/sys/dev/de/if_de.c

Modified: head/sys/dev/de/if_de.c
==============================================================================
--- head/sys/dev/de/if_de.c	Fri Nov 20 09:34:59 2015	(r291094)
+++ head/sys/dev/de/if_de.c	Fri Nov 20 09:37:04 2015	(r291095)
@@ -3937,8 +3937,8 @@ tulip_txput(tulip_softc_t * const sc, st
 	    segcnt++;
 	    m0 = m0->m_next;
     }
-#endif
     CTR2(KTR_TULIP, "tulip_txput: sending packet %p (%d chunks)", m, segcnt);
+#endif
     d_status = 0;
     eop = nextout = ri->ri_nextout;
     segcnt = 0;



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