1 # SPDX-License-Identifier: GPL-2.0 << 2 # 1 # 3 # Makefile for the linux reiser-filesystem rou 2 # Makefile for the linux reiser-filesystem routines. 4 # 3 # 5 4 6 obj-$(CONFIG_REISERFS_FS) += reiserfs.o 5 obj-$(CONFIG_REISERFS_FS) += reiserfs.o 7 6 8 reiserfs-objs := bitmap.o do_balan.o namei.o i 7 reiserfs-objs := bitmap.o do_balan.o namei.o inode.o file.o dir.o fix_node.o \ 9 super.o prints.o objectid.o l 8 super.o prints.o objectid.o lbalance.o ibalance.o stree.o \ 10 hashes.o tail_conversion.o jo 9 hashes.o tail_conversion.o journal.o resize.o \ 11 item_ops.o ioctl.o xattr.o lo !! 10 item_ops.o ioctl.o procfs.o xattr.o 12 << 13 ifeq ($(CONFIG_REISERFS_PROC_INFO),y) << 14 reiserfs-objs += procfs.o << 15 endif << 16 11 17 ifeq ($(CONFIG_REISERFS_FS_XATTR),y) 12 ifeq ($(CONFIG_REISERFS_FS_XATTR),y) 18 reiserfs-objs += xattr_user.o xattr_trusted.o 13 reiserfs-objs += xattr_user.o xattr_trusted.o 19 endif 14 endif 20 15 21 ifeq ($(CONFIG_REISERFS_FS_SECURITY),y) 16 ifeq ($(CONFIG_REISERFS_FS_SECURITY),y) 22 reiserfs-objs += xattr_security.o 17 reiserfs-objs += xattr_security.o 23 endif 18 endif 24 19 25 ifeq ($(CONFIG_REISERFS_FS_POSIX_ACL),y) 20 ifeq ($(CONFIG_REISERFS_FS_POSIX_ACL),y) 26 reiserfs-objs += xattr_acl.o 21 reiserfs-objs += xattr_acl.o 27 endif 22 endif 28 23 >> 24 # gcc -O2 (the kernel default) is overaggressive on ppc32 when many inline >> 25 # functions are used. This causes the compiler to advance the stack >> 26 # pointer out of the available stack space, corrupting kernel space, >> 27 # and causing a panic. Since this behavior only affects ppc32, this ifeq >> 28 # will work around it. If any other architecture displays this behavior, >> 29 # add it here. >> 30 ifeq ($(CONFIG_PPC32),y) >> 31 EXTRA_CFLAGS := $(call cc-ifversion, -lt, 0400, -O1) >> 32 endif >> 33 29 TAGS: 34 TAGS: 30 etags *.c 35 etags *.c >> 36
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.