summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/inc/pfsense-utils.inc8
1 files changed, 7 insertions, 1 deletions
diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc
index dc7385e..d64e6d3d 100644
--- a/etc/inc/pfsense-utils.inc
+++ b/etc/inc/pfsense-utils.inc
@@ -445,7 +445,13 @@ function is_jumbo_capable($int) {
* http://www.freebsd.org/cgi/man.cgi?query=vlan&manpath=FreeBSD+6.0-RELEASE&format=html
* Only the following drivers support large frames
*/
- $capable = array("bfe", "bge", "dc", "de", "em", "fxp", "gem", "hme",
+ /* 'de' chipset purposely left out of this list
+ * requires defining BIG_PACKET in the
+ * /usr/src/sys/pci/if_de.c source file and rebuilding the
+ * kernel or module. The hack works only for the 21041,
+ * 21140, and 21140A chips.
+ */
+ $capable = array("bfe", "bge", "dc", "em", "fxp", "gem", "hme",
"ixgb", "nge", "re", "rl", "sis", "ste", "ti", "tl", "tx",
"txp", "xl");
OpenPOWER on IntegriCloud