aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorTrond Myklebust <trond.myklebust@hammerspace.com>2020-03-18 17:22:47 -0400
committerTrond Myklebust <trond.myklebust@hammerspace.com>2020-03-26 10:52:04 -0400
commitd7242c4641fba521a1ea9dbccb11a40cf38cd912 (patch)
tree836c15785364b60705e6999b6a4176c13b94a768 /include
parentNFS/pNFS: Refactor pnfs_generic_commit_pagelist() (diff)
downloadlinux-dev-d7242c4641fba521a1ea9dbccb11a40cf38cd912.tar.xz
linux-dev-d7242c4641fba521a1ea9dbccb11a40cf38cd912.zip
pNFS: Add a helper to allocate the array of buckets
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/nfs_xdr.h15
1 files changed, 12 insertions, 3 deletions
diff --git a/include/linux/nfs_xdr.h b/include/linux/nfs_xdr.h
index 94c77ed55ce1..e91c917c9c1c 100644
--- a/include/linux/nfs_xdr.h
+++ b/include/linux/nfs_xdr.h
@@ -1270,10 +1270,19 @@ struct pnfs_commit_bucket {
struct nfs_writeverf direct_verf;
};
+struct pnfs_commit_array {
+ struct list_head cinfo_list;
+ struct list_head lseg_list;
+ struct pnfs_layout_segment *lseg;
+ struct rcu_head rcu;
+ unsigned int nbuckets;
+ struct pnfs_commit_bucket buckets[];
+};
+
struct pnfs_ds_commit_info {
- int nwritten;
- int ncommitting;
- int nbuckets;
+ unsigned int nwritten;
+ unsigned int ncommitting;
+ unsigned int nbuckets;
struct pnfs_commit_bucket *buckets;
};