Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # Makefile for the linux reiser-filesystem routines. |
| 3 | # |
| 4 | |
| 5 | obj-$(CONFIG_REISERFS_FS) += reiserfs.o |
| 6 | |
| 7 | reiserfs-objs := bitmap.o do_balan.o namei.o inode.o file.o dir.o fix_node.o \ |
| 8 | super.o prints.o objectid.o lbalance.o ibalance.o stree.o \ |
| 9 | hashes.o tail_conversion.o journal.o resize.o \ |
Alexey Dobriyan | e3c96f5 | 2009-12-15 16:46:54 -0800 | [diff] [blame] | 10 | item_ops.o ioctl.o xattr.o lock.o |
| 11 | |
| 12 | ifeq ($(CONFIG_REISERFS_PROC_INFO),y) |
| 13 | reiserfs-objs += procfs.o |
| 14 | endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | |
| 16 | ifeq ($(CONFIG_REISERFS_FS_XATTR),y) |
Jeff Mahoney | a72bdb1 | 2009-03-30 14:02:33 -0400 | [diff] [blame] | 17 | reiserfs-objs += xattr_user.o xattr_trusted.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | endif |
| 19 | |
| 20 | ifeq ($(CONFIG_REISERFS_FS_SECURITY),y) |
| 21 | reiserfs-objs += xattr_security.o |
| 22 | endif |
| 23 | |
| 24 | ifeq ($(CONFIG_REISERFS_FS_POSIX_ACL),y) |
| 25 | reiserfs-objs += xattr_acl.o |
| 26 | endif |
| 27 | |
| 28 | # gcc -O2 (the kernel default) is overaggressive on ppc32 when many inline |
| 29 | # functions are used. This causes the compiler to advance the stack |
| 30 | # pointer out of the available stack space, corrupting kernel space, |
| 31 | # and causing a panic. Since this behavior only affects ppc32, this ifeq |
| 32 | # will work around it. If any other architecture displays this behavior, |
| 33 | # add it here. |
matt mooney | 0ccd234 | 2011-01-14 06:12:35 -0800 | [diff] [blame] | 34 | ccflags-$(CONFIG_PPC32) := $(call cc-ifversion, -lt, 0400, -O1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
| 36 | TAGS: |
| 37 | etags *.c |
| 38 | |