]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
net/mlx5e: fix another maybe-uninitialized false-positive
authorArnd Bergmann <arnd@arndb.de>
Fri, 3 Feb 2017 16:37:03 +0000 (17:37 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 6 Feb 2017 21:35:12 +0000 (16:35 -0500)
In commit abeffce ("net/mlx5e: Fix a -Wmaybe-uninitialized warning"), I fixed a
gcc warning for the ipv4 offload handling. Now we get the same warning for the
added ipv6 support:

drivers/net/ethernet/mellanox/mlx5/core/en_tc.c:815:40: warning: 'out_dev' may be used uninitialized in this function [-Wmaybe-uninitialized]

We can apply the same workaround here as well.

Fixes: ce99f6b97fcd ("net/mlx5e: Support SRIOV TC encapsulation offloads for IPv6 tunnels")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlx5/core/en_tc.c

index e3cf5f484153089a0a93bc355a8a874c09cb3918..d87a82682cb55162a1dae947012ab731d8ffb4a7 100644 (file)
@@ -731,8 +731,8 @@ static int mlx5e_route_lookup_ipv6(struct mlx5e_priv *priv,
        int ret;
 
        dst = ip6_route_output(dev_net(mirred_dev), NULL, fl6);
-       if (dst->error) {
-               ret = dst->error;
+       ret = dst->error;
+       if (ret) {
                dst_release(dst);
                return ret;
        }