svn commit: r303174 - stable/10/sys/dev/e1000

Sean Bruno sbruno at FreeBSD.org
Fri Jul 22 03:16:39 UTC 2016


Author: sbruno
Date: Fri Jul 22 03:16:37 2016
New Revision: 303174
URL: https://svnweb.freebsd.org/changeset/base/303174

Log:
  MFC r299182
  If ALTQ is defined in the kern conf, switch to Legacy Mode.
  
  PR:		208409

Modified:
  stable/10/sys/dev/e1000/if_igb.h

Modified: stable/10/sys/dev/e1000/if_igb.h
==============================================================================
--- stable/10/sys/dev/e1000/if_igb.h	Fri Jul 22 03:09:47 2016	(r303173)
+++ stable/10/sys/dev/e1000/if_igb.h	Fri Jul 22 03:16:37 2016	(r303174)
@@ -35,6 +35,10 @@
 #ifndef _IF_IGB_H_
 #define _IF_IGB_H_
 
+#ifdef ALTQ
+#define IGB_LEGACY_TX
+#endif
+
 #include <sys/param.h>
 #include <sys/systm.h>
 #ifndef IGB_LEGACY_TX


More information about the svn-src-stable mailing list