diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2015-10-24 17:28:24 -0400 |
---|---|---|
committer | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2015-11-02 13:45:15 -0500 |
commit | 0f2e3bdab6590a5d8900e7d701e21ac9af19924c (patch) | |
tree | 2cfdbc1ae83ea9929aad2e43fb04c3718172ddde /net/sunrpc | |
parent | 9468431962616c2449d47c482208a5967e011bf9 (diff) | |
download | op-kernel-dev-0f2e3bdab6590a5d8900e7d701e21ac9af19924c.zip op-kernel-dev-0f2e3bdab6590a5d8900e7d701e21ac9af19924c.tar.gz |
SUNRPC: Remove the TCP-only restriction in bc_svc_process()
Allow the use of other transport classes when handling a backward
direction RPC call.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Reviewed-by: Sagi Grimberg <sagig@mellanox.com>
Tested-By: Devesh Sharma <devesh.sharma@avagotech.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to 'net/sunrpc')
-rw-r--r-- | net/sunrpc/svc.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c index a8f579d..bc5b7b5 100644 --- a/net/sunrpc/svc.c +++ b/net/sunrpc/svc.c @@ -1367,11 +1367,6 @@ bc_svc_process(struct svc_serv *serv, struct rpc_rqst *req, /* reset result send buffer "put" position */ resv->iov_len = 0; - if (rqstp->rq_prot != IPPROTO_TCP) { - printk(KERN_ERR "No support for Non-TCP transports!\n"); - BUG(); - } - /* * Skip the next two words because they've already been * processed in the transport |