diff options
author | Olga Kornievskaia <kolga@netapp.com> | 2018-07-20 18:19:18 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2018-09-25 20:34:54 -0400 |
commit | 6308bc98e86ee8c7bbd56a39839a257a16c9378c (patch) | |
tree | 188a304a627789da2638c4283ae52491bcd3d034 /fs/nfsd/xdr4.h | |
parent | 9eb190fca8f9056ea4502526dc55fe52318d9afc (diff) | |
download | linux-6308bc98e86ee8c7bbd56a39839a257a16c9378c.tar.bz2 |
NFSD OFFLOAD_STATUS xdr
Signed-off-by: Olga Kornievskaia <kolga@netapp.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/xdr4.h')
-rw-r--r-- | fs/nfsd/xdr4.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/fs/nfsd/xdr4.h b/fs/nfsd/xdr4.h index b7c34f4a1222..06cf218944c5 100644 --- a/fs/nfsd/xdr4.h +++ b/fs/nfsd/xdr4.h @@ -545,6 +545,15 @@ struct nfsd4_seek { loff_t seek_pos; }; +struct nfsd4_offload_status { + /* request */ + stateid_t stateid; + + /* response */ + u64 count; + u32 status; +}; + struct nfsd4_op { int opnum; const struct nfsd4_operation * opdesc; @@ -603,6 +612,7 @@ struct nfsd4_op { struct nfsd4_fallocate deallocate; struct nfsd4_clone clone; struct nfsd4_copy copy; + struct nfsd4_offload_status offload_status; struct nfsd4_seek seek; } u; struct nfs4_replay * replay; |