diff options
author | Felix Fietkau <nbd@nbd.name> | 2018-07-14 08:32:36 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2018-07-14 08:32:39 +0200 |
commit | 2601e34fad9e523b87c310386ba9b7bace4025e2 (patch) | |
tree | 0cfef22c15875cd8ff0247ca54c9b2cb2ed9ea6f /target/linux/ramips/files-4.14/drivers | |
parent | 154c0c4006daf41e2cbb6c8b7ad5557f83dfea3e (diff) | |
download | upstream-2601e34fad9e523b87c310386ba9b7bace4025e2.tar.gz upstream-2601e34fad9e523b87c310386ba9b7bace4025e2.tar.bz2 upstream-2601e34fad9e523b87c310386ba9b7bace4025e2.zip |
ramips: ethernet: disable fraglist support
The code has some remaining issues that cause ethernet hangs, so
disable it for now until we can get it fixed
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'target/linux/ramips/files-4.14/drivers')
-rw-r--r-- | target/linux/ramips/files-4.14/drivers/net/ethernet/mediatek/soc_mt7621.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ramips/files-4.14/drivers/net/ethernet/mediatek/soc_mt7621.c b/target/linux/ramips/files-4.14/drivers/net/ethernet/mediatek/soc_mt7621.c index 96d3909a48..392e0ea2e5 100644 --- a/target/linux/ramips/files-4.14/drivers/net/ethernet/mediatek/soc_mt7621.c +++ b/target/linux/ramips/files-4.14/drivers/net/ethernet/mediatek/soc_mt7621.c @@ -143,7 +143,7 @@ static void mt7621_init_data(struct fe_soc_data *data, netdev->hw_features = NETIF_F_IP_CSUM | NETIF_F_RXCSUM | NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_SG | NETIF_F_TSO | - NETIF_F_TSO6 | NETIF_F_IPV6_CSUM | NETIF_F_FRAGLIST | + NETIF_F_TSO6 | NETIF_F_IPV6_CSUM | NETIF_F_TSO_MANGLEID; } |