[Bug 193053] ixgbe(4) IXGBE_LEGACY_TX + ALTQ path broken
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Mon Oct 6 17:56:59 UTC 2014
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193053
--- Comment #15 from ncrogers at gmail.com ---
(In reply to Dan from comment #14)
> 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:
I think thats a good idea and something that I've requested in the past. I am
not sure if there is an existing PR for it or not. Can you please start a new
PR/bug in regards to making IGB/IXGBE LEGACY a kernel option? I would like to
keep this bug focussed on fixing the IXGBE_LEGACY_TX path which currently
doesn't even compile. Thanks.
>
> 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.
More information about the freebsd-net
mailing list