The patch titled Subject: reiserfs: remove workaround code for GCC 3.x has been added to the -mm tree. Its filename is reiserfs-remove-workaround-code-for-gcc-3x.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/reiserfs-remove-workaround-code-for-gcc-3x.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/reiserfs-remove-workaround-code-for-gcc-3x.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Masahiro Yamada <yamada.masahiro@xxxxxxxxxxxxx> Subject: reiserfs: remove workaround code for GCC 3.x cafa0010cd51 ("Raise the minimum required gcc version to 4.6") bumped the minimum GCC version to 4.6 for all architectures. The workaround code in fs/reiserfs/Makefile is obsolete now. Link: http://lkml.kernel.org/r/1535337230-13222-1-git-send-email-yamada.masahiro@xxxxxxxxxxxxx Signed-off-by: Masahiro Yamada <yamada.masahiro@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/reiserfs/Makefile | 9 --------- 1 file changed, 9 deletions(-) --- a/fs/reiserfs/Makefile~reiserfs-remove-workaround-code-for-gcc-3x +++ a/fs/reiserfs/Makefile @@ -26,14 +26,5 @@ ifeq ($(CONFIG_REISERFS_FS_POSIX_ACL),y) reiserfs-objs += xattr_acl.o endif -# gcc -O2 (the kernel default) is overaggressive on ppc32 when many inline -# functions are used. This causes the compiler to advance the stack -# pointer out of the available stack space, corrupting kernel space, -# and causing a panic. Since this behavior only affects ppc32, this ifeq -# will work around it. If any other architecture displays this behavior, -# add it here. -ccflags-$(CONFIG_PPC32) := $(call cc-ifversion, -lt, 0400, -O1) - TAGS: etags *.c - _ Patches currently in -mm which might be from yamada.masahiro@xxxxxxxxxxxxx are reiserfs-remove-workaround-code-for-gcc-3x.patch