Date: Mon, 06 Oct 2014 17:52:01 +0000 From: bugzilla-noreply@freebsd.org To: freebsd-net@FreeBSD.org Subject: [Bug 193053] ixgbe(4) IXGBE_LEGACY_TX + ALTQ path broken Message-ID: <bug-193053-2472-rEqrUTiwYK@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-193053-2472@https.bugs.freebsd.org/bugzilla/> References: <bug-193053-2472@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193053 --- Comment #14 from Dan <dan_256@yahoo.com> --- I think a patch like the following would make using legacy mode easier. This one is for IGB, but a similar one would work for IXGBE: Index: sys/conf/options =================================================================== --- sys/conf/options (revision 272659) +++ sys/conf/options (working copy) @@ -405,6 +405,7 @@ ETHER_8023 opt_ef.h ETHER_II opt_ef.h ETHER_SNAP opt_ef.h +IGB_LEGACY_TX opt_igb.h INET opt_inet.h INET6 opt_inet6.h IPDIVERT Index: sys/dev/e1000/if_igb.c =================================================================== --- sys/dev/e1000/if_igb.c (revision 272659) +++ sys/dev/e1000/if_igb.c (working copy) @@ -33,6 +33,8 @@ /*$FreeBSD$*/ +#include "opt_igb.h" + #include "opt_inet.h" #include "opt_inet6.h" Index: sys/dev/e1000/if_igb.h =================================================================== --- sys/dev/e1000/if_igb.h (revision 272659) +++ sys/dev/e1000/if_igb.h (working copy) @@ -35,6 +35,8 @@ #ifndef _IGB_H_DEFINED_ #define _IGB_H_DEFINED_ +#include "opt_igb.h" + /* Tunables */ /* -- You are receiving this mail because: You are the assignee for the bug.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-193053-2472-rEqrUTiwYK>