Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 234115
b: refs/heads/master
c: 3fa0b4e
h: refs/heads/master
i:
  234113: 37e3d1c
  234111: eb2d3ab
v: v3
  • Loading branch information
Frank Filz authored and Trond Myklebust committed Mar 10, 2011
1 parent a165786 commit 07fac9e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 43b7c3f051dea504afccc39bcb56d8e26c2e0b77
refs/heads/master: 3fa0b4e201d254b52a251fa348bd53e53000cff6
7 changes: 6 additions & 1 deletion trunk/fs/nfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
#include <linux/inet.h>
#include <linux/nfs_xdr.h>
#include <linux/slab.h>
#include <linux/compat.h>

#include <asm/system.h>
#include <asm/uaccess.h>
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 07fac9e

Please sign in to comment.