Skip to content

Commit

Permalink
net/mlx4_en: fix error return code in mlx4_en_get_qp()
Browse files Browse the repository at this point in the history
Fix to return a negative error code from the error handling
case instead of 0.

Fixes: 837052d ('net/mlx4_en: Add netdev support for TCP/IP offloads of vxlan tunneling')
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Wei Yongjun authored and David S. Miller committed Jan 7, 2014
1 parent 4a8deae commit 9ba75fb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions drivers/net/ethernet/mellanox/mlx4/en_netdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -632,8 +632,9 @@ static int mlx4_en_get_qp(struct mlx4_en_priv *priv)
if (err)
goto steer_err;

if (mlx4_en_tunnel_steer_add(priv, priv->dev->dev_addr, *qpn,
&priv->tunnel_reg_id))
err = mlx4_en_tunnel_steer_add(priv, priv->dev->dev_addr, *qpn,
&priv->tunnel_reg_id);
if (err)
goto tunnel_err;

entry = kmalloc(sizeof(*entry), GFP_KERNEL);
Expand Down

0 comments on commit 9ba75fb

Please sign in to comment.