OSDN Git Service

xen-netback: Remove redundant initialization of variable err
authorColin Ian King <colin.king@canonical.com>
Wed, 13 Oct 2021 16:51:42 +0000 (17:51 +0100)
committerDavid S. Miller <davem@davemloft.net>
Fri, 15 Oct 2021 10:02:36 +0000 (11:02 +0100)
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>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/xen-netback/netback.c

index 32d5bc4..0f7fd15 100644 (file)
@@ -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);