diff options
author | changqing li - Sun Microsystems - Beijing China <Changqing.Li@Sun.COM> | 2009-03-27 12:26:56 +0800 |
---|---|---|
committer | changqing li - Sun Microsystems - Beijing China <Changqing.Li@Sun.COM> | 2009-03-27 12:26:56 +0800 |
commit | e982fa1bf96ba02778846eb6a0e6c361f5a6202b (patch) | |
tree | 0de338bb61e0502351195bc215fbd15721c989de | |
parent | d11274aa6f1c1462c11e04d3da70b7453f6f0ebd (diff) | |
download | illumos-gate-e982fa1bf96ba02778846eb6a0e6c361f5a6202b.tar.gz |
6812227 e1000g(intel 82571 adapter) must support MTU size of 9216
-rw-r--r-- | usr/src/uts/common/io/e1000g/README | 5 | ||||
-rw-r--r-- | usr/src/uts/common/io/e1000g/e1000g_main.c | 2 | ||||
-rw-r--r-- | usr/src/uts/common/io/e1000g/e1000g_sw.h | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/usr/src/uts/common/io/e1000g/README b/usr/src/uts/common/io/e1000g/README index 5b2c52bcd6..c81f05bff8 100644 --- a/usr/src/uts/common/io/e1000g/README +++ b/usr/src/uts/common/io/e1000g/README @@ -657,3 +657,8 @@ Notes on packaging: 6809729 Panic in function 'e1000g_rxfree_func' on T2000 6809877 e1000g E1000G_IPALIGNROOM code can be rewritten +5.3.7 +====== + This version has the following fixes: + 6812227 e1000g(intel 82571 adapter) must support MTU size of 9216 + diff --git a/usr/src/uts/common/io/e1000g/e1000g_main.c b/usr/src/uts/common/io/e1000g/e1000g_main.c index c4903db176..cec4981d5e 100644 --- a/usr/src/uts/common/io/e1000g/e1000g_main.c +++ b/usr/src/uts/common/io/e1000g/e1000g_main.c @@ -46,7 +46,7 @@ static char ident[] = "Intel PRO/1000 Ethernet"; static char e1000g_string[] = "Intel(R) PRO/1000 Network Connection"; -static char e1000g_version[] = "Driver Ver. 5.3.6"; +static char e1000g_version[] = "Driver Ver. 5.3.7"; /* * Proto types for DDI entry points diff --git a/usr/src/uts/common/io/e1000g/e1000g_sw.h b/usr/src/uts/common/io/e1000g/e1000g_sw.h index 4fd6ca8010..f17631dc21 100644 --- a/usr/src/uts/common/io/e1000g/e1000g_sw.h +++ b/usr/src/uts/common/io/e1000g/e1000g_sw.h @@ -264,7 +264,7 @@ extern "C" { #define FRAME_SIZE_UPTO_16K 16384 #define FRAME_SIZE_UPTO_9K 9234 -#define MAXIMUM_MTU 9000 +#define MAXIMUM_MTU 9216 #define DEFAULT_MTU ETHERMTU #define DEFAULT_FRAME_SIZE \ |