Commit 586a5a35 authored by Anton Blanchard's avatar Anton Blanchard Committed by Linus Torvalds

[PATCH] disable old stat on ppc64

We don't implement the ancient stat syscalls on ppc64 since early libcs
wont run on ppc64 (they hardcode the incorrect cacheline size).
parent f3a7e4f1
......@@ -96,7 +96,7 @@ int vfs_fstat(unsigned int fd, struct kstat *stat)
#if !defined(__alpha__) && !defined(__sparc__) && !defined(__ia64__) \
&& !defined(CONFIG_ARCH_S390) && !defined(__hppa__) && !defined(__x86_64__) \
&& !defined(__arm__) && !defined(CONFIG_V850)
&& !defined(__arm__) && !defined(CONFIG_V850) && !defined(__powerpc64__)
/*
* For backward compatibility? Maybe this should be moved
......
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