Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 31d16664 authored by Wei Yongjun's avatar Wei Yongjun Committed by David S. Miller
Browse files

nfp: tls: fix error return code in nfp_net_tls_add()



Fix to return negative error code -EINVAL from the error handling
case instead of 0, as done elsewhere in this function.

Fixes: 1f35a56c ("nfp: tls: add/delete TLS TX connections")
Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Acked-by: default avatarJakub Kicinski <jakub.kicinski@netronome.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 107d3ce6
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -344,6 +344,7 @@ nfp_net_tls_add(struct net_device *netdev, struct sock *sk,

	if (!reply->handle[0] && !reply->handle[1]) {
		nn_dp_warn(&nn->dp, "FW returned NULL handle\n");
		err = -EINVAL;
		goto err_fw_remove;
	}