This is an automatically generated commit. When doing `git bisect`, consider `git bisect --skip`. Signed-off-by: Kenneth Kasilag <kenneth@kasilag.me> Link: https://github.com/openwrt/openwrt/pull/21019 Signed-off-by: Jonas Jelonek <jelonek.jonas@gmail.com>
28 lines
1.0 KiB
Diff
28 lines
1.0 KiB
Diff
From a202dfe31cae2f2120297a7142385d80a5577d42 Mon Sep 17 00:00:00 2001
|
|
From: Lorenzo Bianconi <lorenzo@kernel.org>
|
|
Date: Tue, 4 Mar 2025 16:46:40 +0100
|
|
Subject: [PATCH 6/6] net: airoha: Enable TSO/Scatter Gather for LAN port
|
|
|
|
Set net_device vlan_features in order to enable TSO and Scatter Gather
|
|
for DSA user ports.
|
|
|
|
Reviewed-by: Mateusz Polchlopek <mateusz.polchlopek@intel.com>
|
|
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
|
|
Reviewed-by: Simon Horman <horms@kernel.org>
|
|
Link: https://patch.msgid.link/20250304-lan-enable-tso-v1-1-b398eb9976ba@kernel.org
|
|
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
|
---
|
|
drivers/net/ethernet/airoha/airoha_eth.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/drivers/net/ethernet/airoha/airoha_eth.c
|
|
+++ b/drivers/net/ethernet/airoha/airoha_eth.c
|
|
@@ -2523,6 +2523,7 @@ static int airoha_alloc_gdm_port(struct
|
|
NETIF_F_SG | NETIF_F_TSO |
|
|
NETIF_F_HW_TC;
|
|
dev->features |= dev->hw_features;
|
|
+ dev->vlan_features = dev->hw_features;
|
|
dev->dev.of_node = np;
|
|
dev->irq = qdma->irq;
|
|
SET_NETDEV_DEV(dev, eth->dev);
|