Commit 614c321f authored by Al Viro's avatar Al Viro

MAX_LFS_FILESIZE definition for 64bit needs LL...

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 35c2a7f4
...@@ -1132,7 +1132,7 @@ static inline int file_check_writeable(struct file *filp) ...@@ -1132,7 +1132,7 @@ static inline int file_check_writeable(struct file *filp)
#if BITS_PER_LONG==32 #if BITS_PER_LONG==32
#define MAX_LFS_FILESIZE (((loff_t)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1) #define MAX_LFS_FILESIZE (((loff_t)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1)
#elif BITS_PER_LONG==64 #elif BITS_PER_LONG==64
#define MAX_LFS_FILESIZE ((loff_t)0x7fffffffffffffff) #define MAX_LFS_FILESIZE ((loff_t)0x7fffffffffffffffLL)
#endif #endif
#define FL_POSIX 1 #define FL_POSIX 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment