xen/netback: fix build warning
authorJuergen Gross <jgross@suse.com>
Wed, 7 Dec 2022 07:19:38 +0000 (08:19 +0100)
committerJuergen Gross <jgross@suse.com>
Wed, 7 Dec 2022 15:03:21 +0000 (16:03 +0100)
Commit ad7f402ae4f4 ("xen/netback: Ensure protocol headers don't fall in
the non-linear area") introduced a (valid) build warning. There have
even been reports of this problem breaking networking of Xen guests.

Fixes: ad7f402ae4f4 ("xen/netback: Ensure protocol headers don't fall in the non-linear area")
Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Ross Lagerwall <ross.lagerwall@citrix.com>
Tested-by: Jason Andryuk <jandryuk@gmail.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
drivers/net/xen-netback/netback.c

index 054ac0e..bf627af 100644 (file)
@@ -530,7 +530,7 @@ static int xenvif_tx_check_gop(struct xenvif_queue *queue,
        const bool sharedslot = nr_frags &&
                                frag_get_pending_idx(&shinfo->frags[0]) ==
                                    copy_pending_idx(skb, copy_count(skb) - 1);
-       int i, err;
+       int i, err = 0;
 
        for (i = 0; i < copy_count(skb); i++) {
                int newerr;