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

Commit 4cea288a authored by Ben Hutchings's avatar Ben Hutchings Committed by Trond Myklebust
Browse files

sunrpc: Propagate errors from xs_bind() through xs_create_sock()



xs_create_sock() is supposed to return a pointer or an ERR_PTR-encoded
error, but it currently returns 0 if xs_bind() fails.

Signed-off-by: default avatarBen Hutchings <bhutchings@solarflare.com>
Cc: stable@kernel.org [v2.6.37]
Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent 3fa0b4e2
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1631,7 +1631,8 @@ static struct socket *xs_create_sock(struct rpc_xprt *xprt,
	}
	xs_reclassify_socket(family, sock);

	if (xs_bind(transport, sock)) {
	err = xs_bind(transport, sock);
	if (err) {
		sock_release(sock);
		goto out;
	}