svn commit: r299182 - head/sys/dev/e1000

Sean Bruno sbruno at FreeBSD.org
Fri May 6 15:41:39 UTC 2016


Author: sbruno
Date: Fri May  6 15:41:38 2016
New Revision: 299182
URL: https://svnweb.freebsd.org/changeset/base/299182

Log:
  If ALTQ is defined in the kern conf, switch to Legacy Mode.
  
  PR:		208409
  Submitted by:	freebsd at mcwest.org
  MFC after:	2 weeks

Modified:
  head/sys/dev/e1000/if_igb.h

Modified: head/sys/dev/e1000/if_igb.h
==============================================================================
--- head/sys/dev/e1000/if_igb.h	Fri May  6 15:37:06 2016	(r299181)
+++ head/sys/dev/e1000/if_igb.h	Fri May  6 15:41:38 2016	(r299182)
@@ -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-all mailing list