When we don't care about vlan depth, we could pass NULL instead of the
address of a unused local variable to skb_network_protocol() as a param.
Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
        int err = -ENOMEM;
        int i = 0;
        int pos;
-       int dummy;
 
        if (list_skb && !list_skb->head_frag && skb_headlen(list_skb) &&
            (skb_shinfo(head_skb)->gso_type & SKB_GSO_DODGY)) {
        }
 
        __skb_push(head_skb, doffset);
-       proto = skb_network_protocol(head_skb, &dummy);
+       proto = skb_network_protocol(head_skb, NULL);
        if (unlikely(!proto))
                return ERR_PTR(-EINVAL);