From: Trond Myklebust Date: Sat, 29 Sep 2007 21:14:03 +0000 (-0400) Subject: NFS: Fix the sign of the return value of nfs_save_change_attribute() X-Git-Tag: Ubuntu-goldfish-3.4.0-4.27~23362^2~39 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=8edb01828837302055a8f0afddb2256659480bc5;p=mirror_ubuntu-zesty-kernel.git NFS: Fix the sign of the return value of nfs_save_change_attribute() Also fix up the comments. Signed-off-by: Trond Myklebust --- 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) /** * 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 * 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; } /**