]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
net: libwx: fix to enable RSS
authorJiawen Wu <jiawenwu@trustnetic.com>
Thu, 4 Sep 2025 02:43:22 +0000 (10:43 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 19 Sep 2025 14:37:30 +0000 (16:37 +0200)
commit 157cf360c4a8751f7f511a71cc3a283b5d27f889 upstream.

Now when SRIOV is enabled, PF with multiple queues can only receive
all packets on queue 0. This is caused by an incorrect flag judgement,
which prevents RSS from being enabled.

In fact, RSS is supported for the functions when SRIOV is enabled.
Remove the flag judgement to fix it.

Fixes: c52d4b898901 ("net: libwx: Redesign flow when sriov is enabled")
Cc: stable@vger.kernel.org
Signed-off-by: Jiawen Wu <jiawenwu@trustnetic.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://patch.msgid.link/A3B7449A08A044D0+20250904024322.87145-1-jiawenwu@trustnetic.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/ethernet/wangxun/libwx/wx_hw.c

index f0823aa1ede607f9ec276d43e58436b71ea7f25e..bb1dcdf5fd0d58be610ccfca8f250e133f4ca040 100644 (file)
@@ -2071,10 +2071,6 @@ static void wx_setup_mrqc(struct wx *wx)
 {
        u32 rss_field = 0;
 
-       /* VT, and RSS do not coexist at the same time */
-       if (test_bit(WX_FLAG_VMDQ_ENABLED, wx->flags))
-               return;
-
        /* Disable indicating checksum in descriptor, enables RSS hash */
        wr32m(wx, WX_PSR_CTL, WX_PSR_CTL_PCSD, WX_PSR_CTL_PCSD);