diff options
author | Anna Schumaker <Anna.Schumaker@netapp.com> | 2014-05-06 09:12:25 -0400 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@primarydata.com> | 2014-05-28 18:12:43 -0400 |
commit | 9137bdf3d241fc2cbeb2a8ced51d1546150aa6a1 (patch) | |
tree | bcce3aa0d097ec8eadd4ed61236dc452903f486c /fs/nfs/write.c | |
parent | 3c6b899c49e5e9c2803b59ee553eddaf69cea7f6 (diff) | |
download | op-kernel-dev-9137bdf3d241fc2cbeb2a8ced51d1546150aa6a1.zip op-kernel-dev-9137bdf3d241fc2cbeb2a8ced51d1546150aa6a1.tar.gz |
NFS: Create a common results structure for reads and writes
Reads and writes have very similar results. This patch combines the two
structs together with comments to show where the differing fields are
used.
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'fs/nfs/write.c')
-rw-r--r-- | fs/nfs/write.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/write.c b/fs/nfs/write.c index 25ba383..d392a70 100644 --- a/fs/nfs/write.c +++ b/fs/nfs/write.c @@ -1389,7 +1389,7 @@ static int nfs_should_remove_suid(const struct inode *inode) void nfs_writeback_done(struct rpc_task *task, struct nfs_write_data *data) { struct nfs_pgio_args *argp = &data->args; - struct nfs_writeres *resp = &data->res; + struct nfs_pgio_res *resp = &data->res; struct inode *inode = data->header->inode; int status; |