diff options
author | Trond Myklebust <trond.myklebust@primarydata.com> | 2015-09-05 19:06:57 -0400 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@primarydata.com> | 2015-09-07 12:36:13 -0400 |
commit | 7d160a6c462c2c690e074c173b43aad7204049ad (patch) | |
tree | 6967b9cffa27592690259622031e87e27919d61b /fs/nfs/delegation.h | |
parent | 4eae50143bcbfda819c650b7ed6739f3b6338ffc (diff) | |
download | talos-obmc-linux-7d160a6c462c2c690e074c173b43aad7204049ad.tar.gz talos-obmc-linux-7d160a6c462c2c690e074c173b43aad7204049ad.zip |
NFSv4: Express delegation limit in units of pages
Since we're tracking modifications to the page cache on a per-page
basis, it makes sense to express the limit to how much we may cache
in units of pages.
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'fs/nfs/delegation.h')
-rw-r--r-- | fs/nfs/delegation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/delegation.h b/fs/nfs/delegation.h index e3c20a3ccc93..554178a17376 100644 --- a/fs/nfs/delegation.h +++ b/fs/nfs/delegation.h @@ -18,7 +18,7 @@ struct nfs_delegation { struct inode *inode; nfs4_stateid stateid; fmode_t type; - loff_t maxsize; + unsigned long pagemod_limit; __u64 change_attr; unsigned long flags; spinlock_t lock; |