Browse Source

ramips: increase NAPI weight for mt7621 to improve routing performance a bit more

Signed-off-by: Felix Fietkau <[email protected]>

SVN-Revision: 44918
Felix Fietkau 11 years ago
parent
commit
37912d66c2

+ 3 - 3
target/linux/ramips/files/drivers/net/ethernet/ralink/ralink_soc_eth.c

@@ -1486,9 +1486,9 @@ static int fe_probe(struct platform_device *pdev)
 
 	napi_weight = 32;
 	if (priv->flags & FE_FLAG_NAPI_WEIGHT) {
-		napi_weight *= 2;
-		priv->tx_ring_size *= 2;
-		priv->rx_ring_size *= 2;
+		napi_weight *= 4;
+		priv->tx_ring_size *= 4;
+		priv->rx_ring_size *= 4;
 	}
 	netif_napi_add(netdev, &priv->rx_napi, fe_poll, napi_weight);
 	fe_set_ethtool_ops(netdev);