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

Commit a9fac97e authored by Wei Yongjun's avatar Wei Yongjun Committed by Greg Kroah-Hartman
Browse files

NFSv4: Fix error handling in nfs4_sp4_select_mode()



[ Upstream commit 72bf75cfc00c02aa66ef6133048f37aa5d88825c ]

Error code is set in the error handling cases but never used. Fix it.

Fixes: 937e3133 ("NFSv4.1: Ensure we clear the SP4_MACH_CRED flags in nfs4_sp4_select_mode()")
Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarAnna Schumaker <Anna.Schumaker@Netapp.com>
Signed-off-by: default avatarSasha Levin <alexander.levin@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8ac6b147
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7497,7 +7497,7 @@ static int nfs4_sp4_select_mode(struct nfs_client *clp,
	}
out:
	clp->cl_sp4_flags = flags;
	return 0;
	return ret;
}

struct nfs41_exchange_id_data {