diff options
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/nfs_fs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/nfs_fs.h b/include/linux/nfs_fs.h index 9449286c5867..a765dd456922 100644 --- a/include/linux/nfs_fs.h +++ b/include/linux/nfs_fs.h | |||
@@ -260,13 +260,13 @@ static inline int NFS_USE_READDIRPLUS(struct inode *inode) | |||
260 | 260 | ||
261 | /** | 261 | /** |
262 | * nfs_save_change_attribute - Returns the inode attribute change cookie | 262 | * nfs_save_change_attribute - Returns the inode attribute change cookie |
263 | * @inode - pointer to inode | 263 | * @dir - pointer to parent directory inode |
264 | * The "change attribute" is updated every time we finish an operation | 264 | * The "change attribute" is updated every time we finish an operation |
265 | * that will result in a metadata change on the server. | 265 | * that will result in a metadata change on the server. |
266 | */ | 266 | */ |
267 | static inline long nfs_save_change_attribute(struct inode *inode) | 267 | static inline unsigned long nfs_save_change_attribute(struct inode *dir) |
268 | { | 268 | { |
269 | return NFS_I(inode)->cache_change_attribute; | 269 | return NFS_I(dir)->cache_change_attribute; |
270 | } | 270 | } |
271 | 271 | ||
272 | /** | 272 | /** |