Message ID | 20250304-lan-enable-tso-v1-1-b398eb9976ba@kernel.org (mailing list archive) |
---|---|
State | Accepted |
Commit | a202dfe31cae2f2120297a7142385d80a5577d42 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next] net: airoha: Enable TSO/Scatter Gather for LAN port | expand |
On Tue, Mar 04, 2025 at 04:46:40PM +0100, Lorenzo Bianconi wrote: > 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>
Hello: This patch was applied to netdev/net-next.git (main) by Jakub Kicinski <kuba@kernel.org>: On Tue, 04 Mar 2025 16:46:40 +0100 you wrote: > 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> > --- > drivers/net/ethernet/airoha/airoha_eth.c | 1 + > 1 file changed, 1 insertion(+) > > [...] Here is the summary with links: - [net-next] net: airoha: Enable TSO/Scatter Gather for LAN port https://git.kernel.org/netdev/net-next/c/a202dfe31cae You are awesome, thank you!
diff --git a/drivers/net/ethernet/airoha/airoha_eth.c b/drivers/net/ethernet/airoha/airoha_eth.c index ff837168845d6cacf97708b8b9462829162407bd..8210d8f75debd792ddb05a8ebb64825d3159bc2c 100644 --- a/drivers/net/ethernet/airoha/airoha_eth.c +++ b/drivers/net/ethernet/airoha/airoha_eth.c @@ -2474,6 +2474,7 @@ static int airoha_alloc_gdm_port(struct airoha_eth *eth, 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);