Commit de3c4507 authored by Brice Goglin's avatar Brice Goglin Committed by Jeff Garzik

[PATCH] myri10ge: Full vlan frame in small_bytes

Receive full vlan frames into smalls when running with a jumbo MTU.
Signed-off-by: default avatarBrice Goglin <brice@myri.com>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent 52ea6fb3
...@@ -1650,8 +1650,8 @@ static int myri10ge_open(struct net_device *dev) ...@@ -1650,8 +1650,8 @@ static int myri10ge_open(struct net_device *dev)
? (128 - MXGEFW_PAD) ? (128 - MXGEFW_PAD)
: (SMP_CACHE_BYTES - MXGEFW_PAD); : (SMP_CACHE_BYTES - MXGEFW_PAD);
else else
/* enough for an ETH_DATA_LEN frame */ /* enough for a vlan encapsulated ETH_DATA_LEN frame */
mgp->small_bytes = ETH_FRAME_LEN; mgp->small_bytes = VLAN_ETH_FRAME_LEN;
/* Override the small buffer size? */ /* Override the small buffer size? */
if (myri10ge_small_bytes > 0) if (myri10ge_small_bytes > 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment