]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
octeontx2-af: Fix mbox INTR handler when num VFs > 64
authorGeetha sowjanya <gakula@marvell.com>
Thu, 27 Mar 2025 09:14:41 +0000 (14:44 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 10 Apr 2025 12:30:59 +0000 (14:30 +0200)
[ Upstream commit 0fdba88a211508984eb5df62008c29688692b134 ]

When number of RVU VFs > 64, the vfs value passed to "rvu_queue_work"
function is incorrect. Due to which mbox workqueue entries for
VFs 0 to 63 never gets added to workqueue.

Fixes: 9bdc47a6e328 ("octeontx2-af: Mbox communication support btw AF and it's VFs")
Signed-off-by: Geetha sowjanya <gakula@marvell.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://patch.msgid.link/20250327091441.1284-1-gakula@marvell.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/ethernet/marvell/octeontx2/af/rvu.c

index 78309821ce298dab9c69c086752a7a88bb8c0d86..f8e86f253563571e562fc5bde2817475437c462b 100644 (file)
@@ -2056,7 +2056,7 @@ static irqreturn_t rvu_mbox_intr_handler(int irq, void *rvu_irq)
                rvupf_write64(rvu, RVU_PF_VFPF_MBOX_INTX(1), intr);
 
                rvu_queue_work(&rvu->afvf_wq_info, 64, vfs, intr);
-               vfs -= 64;
+               vfs = 64;
        }
 
        intr = rvupf_read64(rvu, RVU_PF_VFPF_MBOX_INTX(0));