mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-10-29 22:43:48 +00:00
26 lines
862 B
Diff
26 lines
862 B
Diff
|
From 311bb4a115f653ff9f3202873303483007906c8f Mon Sep 17 00:00:00 2001
|
||
|
From: Kevin Mihelich <kevin@archlinuxarm.org>
|
||
|
Date: Sun, 31 Aug 2014 08:45:13 -0600
|
||
|
Subject: [PATCH] disable mv643xx_eth TSO
|
||
|
|
||
|
---
|
||
|
drivers/net/ethernet/marvell/mv643xx_eth.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/drivers/net/ethernet/marvell/mv643xx_eth.c b/drivers/net/ethernet/marvell/mv643xx_eth.c
|
||
|
index b151a94..e04af62 100644
|
||
|
--- a/drivers/net/ethernet/marvell/mv643xx_eth.c
|
||
|
+++ b/drivers/net/ethernet/marvell/mv643xx_eth.c
|
||
|
@@ -3110,7 +3110,7 @@ static int mv643xx_eth_probe(struct platform_device *pdev)
|
||
|
dev->watchdog_timeo = 2 * HZ;
|
||
|
dev->base_addr = 0;
|
||
|
|
||
|
- dev->features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO;
|
||
|
+ dev->features = NETIF_F_SG | NETIF_F_IP_CSUM;
|
||
|
dev->vlan_features = dev->features;
|
||
|
|
||
|
dev->features |= NETIF_F_RXCSUM;
|
||
|
--
|
||
|
1.9.0
|
||
|
|