svn commit: r291095 - head/sys/dev/de
Svatopluk Kraus
skra at FreeBSD.org
Fri Nov 20 09:37:05 UTC 2015
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;
More information about the svn-src-all
mailing list