[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1268401704-9034-1-git-send-email-ext-jani.1.nikula@nokia.com>
Date: Fri, 12 Mar 2010 15:48:24 +0200
From: Jani Nikula <ext-jani.1.nikula@...ia.com>
To: Trond.Myklebust@...app.com, bfields@...ldses.org, neilb@...e.de,
davem@...emloft.net
Cc: linux-nfs@...r.kernel.org, netdev@...r.kernel.org,
akpm@...ux-foundation.org, ext-jani.1.nikula@...ia.com
Subject: [PATCH] sunrpc: fix error path - actually return ERR_PTR() on error
Signed-off-by: Jani Nikula <ext-jani.1.nikula@...ia.com>
---
NOTE: I'm afraid I'm unable to test this; please consider this more a
bug report than a complete patch.
---
net/sunrpc/xprtsock.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/net/sunrpc/xprtsock.c b/net/sunrpc/xprtsock.c
index 7124129..5b83ff9 100644
--- a/net/sunrpc/xprtsock.c
+++ b/net/sunrpc/xprtsock.c
@@ -2481,7 +2481,7 @@ static struct rpc_xprt *xs_setup_bc_tcp(struct xprt_create *args)
struct svc_sock *bc_sock;
if (!args->bc_xprt)
- ERR_PTR(-EINVAL);
+ return ERR_PTR(-EINVAL);
xprt = xs_setup_xprt(args, xprt_tcp_slot_table_entries);
if (IS_ERR(xprt))
--
1.6.5.2
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists