aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/reiserfs/Makefile9
1 files changed, 0 insertions, 9 deletions
diff --git a/fs/reiserfs/Makefile b/fs/reiserfs/Makefile
index a39a562c1c10..bd29c58ccbd8 100644
--- a/fs/reiserfs/Makefile
+++ b/fs/reiserfs/Makefile
@@ -26,14 +26,5 @@ ifeq ($(CONFIG_REISERFS_FS_POSIX_ACL),y)
26reiserfs-objs += xattr_acl.o 26reiserfs-objs += xattr_acl.o
27endif 27endif
28 28
29# gcc -O2 (the kernel default) is overaggressive on ppc32 when many inline
30# functions are used. This causes the compiler to advance the stack
31# pointer out of the available stack space, corrupting kernel space,
32# and causing a panic. Since this behavior only affects ppc32, this ifeq
33# will work around it. If any other architecture displays this behavior,
34# add it here.
35ccflags-$(CONFIG_PPC32) := $(call cc-ifversion, -lt, 0400, -O1)
36
37TAGS: 29TAGS:
38 etags *.c 30 etags *.c
39