Browse Source

NFS: Fix the sign of the return value of nfs_save_change_attribute()

Also fix up the comments.

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Trond Myklebust 17 years ago
parent
commit
8edb018288
1 changed files with 3 additions and 3 deletions
  1. 3 3
      include/linux/nfs_fs.h

+ 3 - 3
include/linux/nfs_fs.h

@@ -260,13 +260,13 @@ static inline int NFS_USE_READDIRPLUS(struct inode *inode)
 
 
 /**
 /**
  * nfs_save_change_attribute - Returns the inode attribute change cookie
  * nfs_save_change_attribute - Returns the inode attribute change cookie
- * @inode - pointer to inode
+ * @dir - pointer to parent directory inode
  * The "change attribute" is updated every time we finish an operation
  * The "change attribute" is updated every time we finish an operation
  * that will result in a metadata change on the server.
  * that will result in a metadata change on the server.
  */
  */
-static inline long nfs_save_change_attribute(struct inode *inode)
+static inline unsigned long nfs_save_change_attribute(struct inode *dir)
 {
 {
-	return NFS_I(inode)->cache_change_attribute;
+	return NFS_I(dir)->cache_change_attribute;
 }
 }
 
 
 /**
 /**