Patch "net/mlx5e: Block rx-gro-hw feature in switchdev mode" has been added to the 5.17-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    net/mlx5e: Block rx-gro-hw feature in switchdev mode

to the 5.17-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     net-mlx5e-block-rx-gro-hw-feature-in-switchdev-mode.patch
and it can be found in the queue-5.17 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 597bbccebfc6be8c463a77e0f5fe6d39dfe36d2a
Author: Aya Levin <ayal@xxxxxxxxxx>
Date:   Mon Apr 11 17:29:08 2022 +0300

    net/mlx5e: Block rx-gro-hw feature in switchdev mode
    
    [ Upstream commit 15a5078cab30d7aa02ad14bfadebf247d95fc239 ]
    
    When the driver is in switchdev mode and rx-gro-hw is set, the RQ needs
    special CQE handling. Till then, block setting of rx-gro-hw feature in
    switchdev mode, to avoid failure while setting the feature due to
    failure while opening the RQ.
    
    Fixes: f97d5c2a453e ("net/mlx5e: Add handle SHAMPO cqe support")
    Signed-off-by: Aya Levin <ayal@xxxxxxxxxx>
    Reviewed-by: Tariq Toukan <tariqt@xxxxxxxxxx>
    Signed-off-by: Saeed Mahameed <saeedm@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_main.c b/drivers/net/ethernet/mellanox/mlx5/core/en_main.c
index 169e3524bb1c..d468daa7dc20 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/en_main.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/en_main.c
@@ -3829,6 +3829,10 @@ static netdev_features_t mlx5e_fix_uplink_rep_features(struct net_device *netdev
 	if (netdev->features & NETIF_F_NTUPLE)
 		netdev_warn(netdev, "Disabling ntuple, not supported in switchdev mode\n");
 
+	features &= ~NETIF_F_GRO_HW;
+	if (netdev->features & NETIF_F_GRO_HW)
+		netdev_warn(netdev, "Disabling HW_GRO, not supported in switchdev mode\n");
+
 	return features;
 }
 



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux