aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/nfs3xdr.c
diff options
context:
space:
mode:
authorAnna Schumaker <Anna.Schumaker@netapp.com>2014-05-06 09:12:24 -0400
committerTrond Myklebust <trond.myklebust@primarydata.com>2014-05-28 18:12:02 -0400
commit3c6b899c49e5e9c2803b59ee553eddaf69cea7f6 (patch)
treea246624f122f66a823365dfaaf6d3e56be1d2fa8 /fs/nfs/nfs3xdr.c
parentfab5fc25d230edcc8ee72367e505955a2fae0cac (diff)
NFS: Create a common argument structure for reads and writes
Reads and writes have very similar arguments. This patch combines them together and documents the few fields used only by write. Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com> Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'fs/nfs/nfs3xdr.c')
-rw-r--r--fs/nfs/nfs3xdr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/nfs/nfs3xdr.c b/fs/nfs/nfs3xdr.c
index fa6d72131c19..02f16c212007 100644
--- a/fs/nfs/nfs3xdr.c
+++ b/fs/nfs/nfs3xdr.c
@@ -953,7 +953,7 @@ static void nfs3_xdr_enc_readlink3args(struct rpc_rqst *req,
953 * }; 953 * };
954 */ 954 */
955static void encode_read3args(struct xdr_stream *xdr, 955static void encode_read3args(struct xdr_stream *xdr,
956 const struct nfs_readargs *args) 956 const struct nfs_pgio_args *args)
957{ 957{
958 __be32 *p; 958 __be32 *p;
959 959
@@ -966,7 +966,7 @@ static void encode_read3args(struct xdr_stream *xdr,
966 966
967static void nfs3_xdr_enc_read3args(struct rpc_rqst *req, 967static void nfs3_xdr_enc_read3args(struct rpc_rqst *req,
968 struct xdr_stream *xdr, 968 struct xdr_stream *xdr,
969 const struct nfs_readargs *args) 969 const struct nfs_pgio_args *args)
970{ 970{
971 encode_read3args(xdr, args); 971 encode_read3args(xdr, args);
972 prepare_reply_buffer(req, args->pages, args->pgbase, 972 prepare_reply_buffer(req, args->pages, args->pgbase,
@@ -992,7 +992,7 @@ static void nfs3_xdr_enc_read3args(struct rpc_rqst *req,
992 * }; 992 * };
993 */ 993 */
994static void encode_write3args(struct xdr_stream *xdr, 994static void encode_write3args(struct xdr_stream *xdr,
995 const struct nfs_writeargs *args) 995 const struct nfs_pgio_args *args)
996{ 996{
997 __be32 *p; 997 __be32 *p;
998 998
@@ -1008,7 +1008,7 @@ static void encode_write3args(struct xdr_stream *xdr,
1008 1008
1009static void nfs3_xdr_enc_write3args(struct rpc_rqst *req, 1009static void nfs3_xdr_enc_write3args(struct rpc_rqst *req,
1010 struct xdr_stream *xdr, 1010 struct xdr_stream *xdr,
1011 const struct nfs_writeargs *args) 1011 const struct nfs_pgio_args *args)
1012{ 1012{
1013 encode_write3args(xdr, args); 1013 encode_write3args(xdr, args);
1014 xdr->buf->flags |= XDRBUF_WRITE; 1014 xdr->buf->flags |= XDRBUF_WRITE;