From: Weston Andros Adamson Date: Tue, 23 Oct 2012 14:43:45 +0000 (-0400) Subject: SUNRPC: remove BUG_ON in svc_register X-Git-Tag: next-20121102~90^2~13 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4e07894e4711cc5e3d3e1eb21f023d72d85a09a6;p=karo-tx-linux.git SUNRPC: remove BUG_ON in svc_register Instead of calling BUG_ON(), do a WARN_ON_ONCE() and return -EINVAL. Signed-off-by: Weston Andros Adamson Signed-off-by: Trond Myklebust --- diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c index 3bf5a54982ba..dfa4ba69ff45 100644 --- a/net/sunrpc/svc.c +++ b/net/sunrpc/svc.c @@ -950,7 +950,9 @@ int svc_register(const struct svc_serv *serv, struct net *net, unsigned int i; int error = 0; - BUG_ON(proto == 0 && port == 0); + WARN_ON_ONCE(proto == 0 && port == 0); + if (proto == 0 && port == 0) + return -EINVAL; for (progp = serv->sv_program; progp; progp = progp->pg_next) { for (i = 0; i < progp->pg_nvers; i++) {