Commit cacf32e9 authored by David S. Miller's avatar David S. Miller
Browse files

mlx5: Return -EINVAL when WARN_ON_ONCE triggers in mlx5e_tls_resync().



Return value was changes to 'int' from void but this return statement
was not updated, or it slipped in via a merge.

Fixes: b5d9a834 ("net/tls: don't clear TX resync flag on error")
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 08cc83cc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -170,7 +170,7 @@ static int mlx5e_tls_resync(struct net_device *netdev, struct sock *sk,
	u64 rcd_sn = *(u64 *)rcd_sn_data;

	if (WARN_ON_ONCE(direction != TLS_OFFLOAD_CTX_DIR_RX))
		return;
		return -EINVAL;
	rx_ctx = mlx5e_get_tls_rx_context(tls_ctx);

	netdev_info(netdev, "resyncing seq %d rcd %lld\n", seq,