[PATCH 27/34] net: mana: Use the correct WQE count for ringing RQ doorbell
authorLong Li <longli@microsoft.com>
Mon, 17 Jul 2023 19:35:39 +0000 (12:35 -0700)
committerSalvatore Bonaccorso <carnil@debian.org>
Fri, 1 Nov 2024 04:23:37 +0000 (05:23 +0100)
The hardware specification specifies that WQE_COUNT should set to 0 for
the Receive Queue. Although currently the hardware doesn't enforce the
check, in the future releases it may check on this value.

Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com>
Reviewed-by: Dexuan Cui <decui@microsoft.com>
Signed-off-by: Long Li <longli@microsoft.com>
Link: https://lore.kernel.org/r/1689622539-5334-3-git-send-email-longli@linuxonhyperv.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
(cherry picked from commit f5e39b57124fd4715d7f0e2f841b8609b38f3e40)
Signed-off-by: Bastian Blank <waldi@debian.org>
Gbp-Pq: Topic features/all/ethernet-microsoft
Gbp-Pq: Name 0027-net-mana-Use-the-correct-WQE-count-for-ringing-RQ-do.patch

drivers/net/ethernet/microsoft/mana/gdma_main.c

index 97a1845c676af85f4edb222e24c3d7689c164307..6108a481edcbb923e1b85027bb61c8567fe50d83 100644 (file)
@@ -300,8 +300,11 @@ static void mana_gd_ring_doorbell(struct gdma_context *gc, u32 db_index,
 
 void mana_gd_wq_ring_doorbell(struct gdma_context *gc, struct gdma_queue *queue)
 {
+       /* Hardware Spec specifies that software client should set 0 for
+        * wqe_cnt for Receive Queues. This value is not used in Send Queues.
+        */
        mana_gd_ring_doorbell(gc, queue->gdma_dev->doorbell, queue->type,
-                             queue->id, queue->head * GDMA_WQE_BU_SIZE, 1);
+                             queue->id, queue->head * GDMA_WQE_BU_SIZE, 0);
 }
 
 void mana_gd_ring_cq(struct gdma_queue *cq, u8 arm_bit)