Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 06 Oct 2014 17:56:59 +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-Hj53Knnmag@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 #15 from ncrogers@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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-193053-2472-Hj53Knnmag>