[Bug 193053] ixgbe(4) IXGBE_LEGACY_TX + ALTQ path broken
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Mon Oct 6 17:52:01 UTC 2014
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193053
--- Comment #14 from Dan <dan_256 at 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.
More information about the freebsd-net
mailing list