diff options
author | Kyle McMartin <kyle@parisc-linux.org> | 2006-03-24 03:18:20 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-24 07:33:27 -0800 |
commit | 82d821ddca8f5c990067cc37543010aa9346a172 (patch) | |
tree | 32e544f964f202d1ee7a135370ea0f6661098bcd /fs/compat.c | |
parent | 2ea1c5392cc8ce249fb661db4f4cdfbbae373a89 (diff) | |
download | linux-3.10-82d821ddca8f5c990067cc37543010aa9346a172.tar.gz linux-3.10-82d821ddca8f5c990067cc37543010aa9346a172.tar.bz2 linux-3.10-82d821ddca8f5c990067cc37543010aa9346a172.zip |
[PATCH] Conditionalize compat_sys_newfstatat
If we don't want sys_newfstatat because __ARCH_WANT_STAT64 is defined, then
we certainly don't want compat_sys_newfstatat either.
Signed-off-by: Grant Grundler <grundler@parisc-linux.org>
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/compat.c')
-rw-r--r-- | fs/compat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/compat.c b/fs/compat.c index 5333c7d7427..2a88477330f 100644 --- a/fs/compat.c +++ b/fs/compat.c @@ -114,6 +114,7 @@ asmlinkage long compat_sys_newlstat(char __user * filename, return error; } +#ifndef __ARCH_WANT_STAT64 asmlinkage long compat_sys_newfstatat(unsigned int dfd, char __user *filename, struct compat_stat __user *statbuf, int flag) { @@ -134,6 +135,7 @@ asmlinkage long compat_sys_newfstatat(unsigned int dfd, char __user *filename, out: return error; } +#endif asmlinkage long compat_sys_newfstat(unsigned int fd, struct compat_stat __user * statbuf) |