Message ID | 20211013165142.135795-1-colin.king@canonical.com (mailing list archive) |
---|---|
State | Accepted |
Commit | bacc8daf97d4199316328a5d18eeafbe447143c5 |
Headers | show |
Series | xen-netback: Remove redundant initialization of variable err | expand |
Hello: This patch was applied to netdev/net-next.git (master) by David S. Miller <davem@davemloft.net>: On Wed, 13 Oct 2021 17:51:42 +0100 you wrote: > From: Colin Ian King <colin.king@canonical.com> > > The variable err is being initialized with a value that is never read, it > is being updated immediately afterwards. The assignment is redundant and > can be removed. > > Addresses-Coverity: ("Unused value") > Signed-off-by: Colin Ian King <colin.king@canonical.com> > > [...] Here is the summary with links: - xen-netback: Remove redundant initialization of variable err https://git.kernel.org/netdev/net-next/c/bacc8daf97d4 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/drivers/net/xen-netback/netback.c b/drivers/net/xen-netback/netback.c index 32d5bc4919d8..0f7fd159f0f2 100644 --- a/drivers/net/xen-netback/netback.c +++ b/drivers/net/xen-netback/netback.c @@ -1474,7 +1474,7 @@ int xenvif_map_frontend_data_rings(struct xenvif_queue *queue, struct xen_netif_tx_sring *txs; struct xen_netif_rx_sring *rxs; RING_IDX rsp_prod, req_prod; - int err = -ENOMEM; + int err; err = xenbus_map_ring_valloc(xenvif_to_xenbus_device(queue->vif), &tx_ring_ref, 1, &addr);