From: Damjan Marion Date: Wed, 5 May 2021 12:36:04 +0000 (+0200) Subject: avf: remove dead store X-Git-Tag: v21.10-rc0~125 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=a7cea39b335efbad736addf926a9fb2c8c64a460;p=vpp.git avf: remove dead store Type: fix Change-Id: Ic8d965aecea6b5b729e3f414235e676d62de779a Signed-off-by: Damjan Marion --- diff --git a/src/plugins/avf/output.c b/src/plugins/avf/output.c index f35f7bb962b..7b940eb57f3 100644 --- a/src/plugins/avf/output.c +++ b/src/plugins/avf/output.c @@ -455,7 +455,6 @@ retry: } txq->next = next & mask; - next = txq->next; avf_tail_write (txq->qtx_tail, txq->next); txq->n_enqueued += n_desc; n_left -= n_enq;