Commit 58a63729 authored by Long Li's avatar Long Li Committed by Paolo Abeni

net: mana: Fix doorbell out of order violation and avoid unnecessary doorbell rings

After napi_complete_done() is called when NAPI is polling in the current
process context, another NAPI may be scheduled and start running in
softirq on another CPU and may ring the doorbell before the current CPU
does. When combined with unnecessary rings when there is no need to arm
the CQ, it triggers error paths in the hardware.

This patch fixes this by calling napi_complete_done() after doorbell
rings. It limits the number of unnecessary rings when there is
no need to arm. MANA hardware specifies that there must be one doorbell
ring every 8 CQ wraparounds. This driver guarantees one doorbell ring as
soon as the number of consumed CQEs exceeds 4 CQ wraparounds. In practical
workloads, the 4 CQ wraparounds proves to be big enough that it rarely
exceeds this limit before all the napi weight is consumed.

To implement this, add a per-CQ counter cq->work_done_since_doorbell,
and make sure the CQ is armed as soon as passing 4 wraparounds of the CQ.

Cc: stable@vger.kernel.org
Fixes: e1b5683f ("net: mana: Move NAPI from EQ to CQ")
Reviewed-by: default avatarHaiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: default avatarLong Li <longli@microsoft.com>
Link: https://patch.msgid.link/1723219138-29887-1-git-send-email-longli@linuxonhyperv.comSigned-off-by: default avatarPaolo Abeni <pabeni@redhat.com>
parent 6e1918ff
...@@ -1792,7 +1792,6 @@ static void mana_poll_rx_cq(struct mana_cq *cq) ...@@ -1792,7 +1792,6 @@ static void mana_poll_rx_cq(struct mana_cq *cq)
static int mana_cq_handler(void *context, struct gdma_queue *gdma_queue) static int mana_cq_handler(void *context, struct gdma_queue *gdma_queue)
{ {
struct mana_cq *cq = context; struct mana_cq *cq = context;
u8 arm_bit;
int w; int w;
WARN_ON_ONCE(cq->gdma_cq != gdma_queue); WARN_ON_ONCE(cq->gdma_cq != gdma_queue);
...@@ -1803,16 +1802,23 @@ static int mana_cq_handler(void *context, struct gdma_queue *gdma_queue) ...@@ -1803,16 +1802,23 @@ static int mana_cq_handler(void *context, struct gdma_queue *gdma_queue)
mana_poll_tx_cq(cq); mana_poll_tx_cq(cq);
w = cq->work_done; w = cq->work_done;
cq->work_done_since_doorbell += w;
if (w < cq->budget &&
napi_complete_done(&cq->napi, w)) { if (w < cq->budget) {
arm_bit = SET_ARM_BIT; mana_gd_ring_cq(gdma_queue, SET_ARM_BIT);
} else { cq->work_done_since_doorbell = 0;
arm_bit = 0; napi_complete_done(&cq->napi, w);
} else if (cq->work_done_since_doorbell >
cq->gdma_cq->queue_size / COMP_ENTRY_SIZE * 4) {
/* MANA hardware requires at least one doorbell ring every 8
* wraparounds of CQ even if there is no need to arm the CQ.
* This driver rings the doorbell as soon as we have exceeded
* 4 wraparounds.
*/
mana_gd_ring_cq(gdma_queue, 0);
cq->work_done_since_doorbell = 0;
} }
mana_gd_ring_cq(gdma_queue, arm_bit);
return w; return w;
} }
......
...@@ -275,6 +275,7 @@ struct mana_cq { ...@@ -275,6 +275,7 @@ struct mana_cq {
/* NAPI data */ /* NAPI data */
struct napi_struct napi; struct napi_struct napi;
int work_done; int work_done;
int work_done_since_doorbell;
int budget; int budget;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment