diff options
author | Trond Myklebust <trond.myklebust@hammerspace.com> | 2020-03-19 20:36:36 +0300 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@hammerspace.com> | 2020-03-27 23:34:34 +0300 |
commit | c21e7168848d4ff4158120dbd4464f0d5cfb1456 (patch) | |
tree | 57f6b908524be9d5c7769e60bff7b8794390b5e2 /include/linux/nfs_xdr.h | |
parent | d7242c4641fba521a1ea9dbccb11a40cf38cd912 (diff) | |
download | linux-c21e7168848d4ff4158120dbd4464f0d5cfb1456.tar.xz |
NFSv4/pnfs: Support a list of commit arrays in struct pnfs_ds_commit_info
When we have multiple layout segments with different lists of mirrored
data, we need to track the commits on a per layout segment basis.
This patch adds a list to support this tracking in struct
pnfs_ds_commit_info.
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Diffstat (limited to 'include/linux/nfs_xdr.h')
-rw-r--r-- | include/linux/nfs_xdr.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/nfs_xdr.h b/include/linux/nfs_xdr.h index e91c917c9c1c..9946787eda72 100644 --- a/include/linux/nfs_xdr.h +++ b/include/linux/nfs_xdr.h @@ -1280,6 +1280,7 @@ struct pnfs_commit_array { }; struct pnfs_ds_commit_info { + struct list_head commits; unsigned int nwritten; unsigned int ncommitting; unsigned int nbuckets; |