SUNRPC: Clean up: Remove unused XDR encoder functions from rpcb_clnt.c
authorChuck Lever <chuck.lever@oracle.com>
Sun, 9 Aug 2009 19:09:41 +0000 (15:09 -0400)
committerTrond Myklebust <Trond.Myklebust@netapp.com>
Sun, 9 Aug 2009 19:09:41 +0000 (15:09 -0400)
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
net/sunrpc/rpcb_clnt.c

index 823d20dbad099acc50244352cec59bfc6662b7be..e0d7b31e54a76225caac8755bfc9d72293f35045 100644 (file)
@@ -694,20 +694,6 @@ static void rpcb_getport_done(struct rpc_task *child, void *data)
  * XDR functions for rpcbind
  */
 
-static int rpcb_encode_mapping(struct rpc_rqst *req, __be32 *p,
-                              struct rpcbind_args *rpcb)
-{
-       dprintk("RPC:       encoding rpcb request (%u, %u, %d, %u)\n",
-                       rpcb->r_prog, rpcb->r_vers, rpcb->r_prot, rpcb->r_port);
-       *p++ = htonl(rpcb->r_prog);
-       *p++ = htonl(rpcb->r_vers);
-       *p++ = htonl(rpcb->r_prot);
-       *p++ = htonl(rpcb->r_port);
-
-       req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
-       return 0;
-}
-
 static int rpcb_enc_mapping(struct rpc_rqst *req, __be32 *p,
                            const struct rpcbind_args *rpcb)
 {
@@ -750,26 +736,6 @@ static int rpcb_decode_set(struct rpc_rqst *req, __be32 *p,
        return 0;
 }
 
-static int rpcb_encode_getaddr(struct rpc_rqst *req, __be32 *p,
-                              struct rpcbind_args *rpcb)
-{
-       if (rpcb->r_addr == NULL)
-               return -EIO;
-
-       dprintk("RPC:       encoding rpcb request (%u, %u, %s)\n",
-                       rpcb->r_prog, rpcb->r_vers, rpcb->r_addr);
-       *p++ = htonl(rpcb->r_prog);
-       *p++ = htonl(rpcb->r_vers);
-
-       p = xdr_encode_string(p, rpcb->r_netid);
-       p = xdr_encode_string(p, rpcb->r_addr);
-       p = xdr_encode_string(p, rpcb->r_owner);
-
-       req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
-
-       return 0;
-}
-
 static int encode_rpcb_string(struct xdr_stream *xdr, const char *string,
                                const u32 maxstrlen)
 {