diff options
author | Weston Andros Adamson <dros@primarydata.com> | 2014-09-10 15:44:18 -0400 |
---|---|---|
committer | Tom Haynes <loghyr@primarydata.com> | 2015-02-03 11:06:43 -0800 |
commit | 2176bf4269a37a7742230ed6c91668241bfe1b2b (patch) | |
tree | 36481b82bcb62667865f5b784580c656125b823c /include | |
parent | c220106fb45909719295474e2497ffe03e47dfb3 (diff) | |
download | linux-2176bf4269a37a7742230ed6c91668241bfe1b2b.tar.bz2 |
nfs: introduce pg_cleanup op for pgio descriptors
Add a new operation to nfs_pageio_ops that is called on nfs_pageio_complete.
Signed-off-by: Weston Andros Adamson <dros@primarydata.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/nfs_page.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/nfs_page.h b/include/linux/nfs_page.h index 4c3aa809ab95..479c566c4ddc 100644 --- a/include/linux/nfs_page.h +++ b/include/linux/nfs_page.h @@ -58,6 +58,7 @@ struct nfs_pageio_ops { size_t (*pg_test)(struct nfs_pageio_descriptor *, struct nfs_page *, struct nfs_page *); int (*pg_doio)(struct nfs_pageio_descriptor *); + void (*pg_cleanup)(struct nfs_pageio_descriptor *); }; struct nfs_rw_ops { |