From: David Howells Use ino_t consistently for vxfs_iget() and its declaration, rather than using ino_t for one and unsigned long for the other. Signed-off-by: David Howells Cc: Christoph Hellwig Signed-off-by: Andrew Morton --- fs/freevxfs/vxfs_extern.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/freevxfs/vxfs_extern.h~iget-stop-freevxfs-from-using-iget-and-read_inode-fix fs/freevxfs/vxfs_extern.h --- a/fs/freevxfs/vxfs_extern.h~iget-stop-freevxfs-from-using-iget-and-read_inode-fix +++ a/fs/freevxfs/vxfs_extern.h @@ -58,7 +58,7 @@ extern struct inode * vxfs_get_fake_ino extern void vxfs_put_fake_inode(struct inode *); extern struct vxfs_inode_info * vxfs_blkiget(struct super_block *, u_long, ino_t); extern struct vxfs_inode_info * vxfs_stiget(struct super_block *, ino_t); -extern struct inode * vxfs_iget(struct super_block *, unsigned long); +extern struct inode * vxfs_iget(struct super_block *, ino_t); extern void vxfs_clear_inode(struct inode *); /* vxfs_lookup.c */ _