diff --git a/[refs] b/[refs] index a3bf837858d2..636ddd583fae 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 43b7c3f051dea504afccc39bcb56d8e26c2e0b77 +refs/heads/master: 3fa0b4e201d254b52a251fa348bd53e53000cff6 diff --git a/trunk/fs/nfs/inode.c b/trunk/fs/nfs/inode.c index 1cc600e77bb4..2f8e61816d75 100644 --- a/trunk/fs/nfs/inode.c +++ b/trunk/fs/nfs/inode.c @@ -37,6 +37,7 @@ #include #include #include +#include #include #include @@ -89,7 +90,11 @@ int nfs_wait_bit_killable(void *word) */ u64 nfs_compat_user_ino64(u64 fileid) { - int ino; +#ifdef CONFIG_COMPAT + compat_ulong_t ino; +#else + unsigned long ino; +#endif if (enable_ino64) return fileid;