summaryrefslogtreecommitdiffstats
path: root/net/sunrpc
diff options
context:
space:
mode:
authorTrond Myklebust <trond.myklebust@primarydata.com>2015-12-30 18:14:06 -0500
committerTrond Myklebust <trond.myklebust@primarydata.com>2015-12-30 18:14:06 -0500
commit0b161e6330e27c191a0ff0d44082ff7832a8c8a1 (patch)
treeb863a5e685b47fed03154ec34a0e655550d3362d /net/sunrpc
parent86fb449b07b8215443a30782dca5755d5b8b0577 (diff)
downloadlinux-0-day-0b161e6330e27c191a0ff0d44082ff7832a8c8a1.tar.gz
linux-0-day-0b161e6330e27c191a0ff0d44082ff7832a8c8a1.tar.xz
SUNRPC: Fix a missing break in rpc_anyaddr()
The missing break means that we always return EAFNOSUPPORT when faced with a request for an IPv6 loopback address. Reported-by: coverity (CID 401987) Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'net/sunrpc')
-rw-r--r--net/sunrpc/clnt.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c
index 23608eb0ded2c..b7f21044f4d8c 100644
--- a/net/sunrpc/clnt.c
+++ b/net/sunrpc/clnt.c
@@ -1217,6 +1217,7 @@ static int rpc_anyaddr(int family, struct sockaddr *buf, size_t buflen)
return -EINVAL;
memcpy(buf, &rpc_in6addr_loopback,
sizeof(rpc_in6addr_loopback));
+ break;
default:
dprintk("RPC: %s: address family not supported\n",
__func__);