summaryrefslogtreecommitdiffstats
path: root/fs/xfs/Makefile
diff options
context:
space:
mode:
authorDave Chinner <dchinner@redhat.com>2014-06-25 00:57:53 -0400
committerDave Chinner <david@fromorbit.com>2014-06-25 00:57:53 -0400
commit30f712c9dd69348aa51351d5cb6d366bf4fae31d (patch)
tree9b246ca3986b784d8f9f6841466dfd4c90909e47 /fs/xfs/Makefile
parent84be0ffc9043f7c56044294eb775a2200452c76d (diff)
libxfs: move source files
Move all the source files that are shared with userspace into libxfs/. This is done as one big chunk simpy to get it done quickly Signed-off-by: Dave Chinner <dchinner@redhat.com> Reviewed-by: Brian Foster <bfoster@redhat.com> Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/Makefile')
-rw-r--r--fs/xfs/Makefile63
1 files changed, 32 insertions, 31 deletions
diff --git a/fs/xfs/Makefile b/fs/xfs/Makefile
index 4c5edf0df9a3..0dfa26d626f5 100644
--- a/fs/xfs/Makefile
+++ b/fs/xfs/Makefile
@@ -28,7 +28,35 @@ xfs-y += xfs_trace.o
28 28
29# build the libxfs code first 29# build the libxfs code first
30xfs-y += $(addprefix libxfs/, \ 30xfs-y += $(addprefix libxfs/, \
31 xfs_alloc.o \
32 xfs_alloc_btree.o \
33 xfs_attr.o \
34 xfs_attr_leaf.o \
35 xfs_attr_remote.o \
36 xfs_bmap.o \
37 xfs_bmap_btree.o \
38 xfs_btree.o \
39 xfs_da_btree.o \
40 xfs_da_format.o \
41 xfs_dir2.o \
42 xfs_dir2_block.o \
43 xfs_dir2_data.o \
44 xfs_dir2_leaf.o \
45 xfs_dir2_node.o \
46 xfs_dir2_sf.o \
47 xfs_dquot_buf.o \
48 xfs_ialloc.o \
49 xfs_ialloc_btree.o \
50 xfs_inode_fork.o \
51 xfs_inode_buf.o \
52 xfs_log_rlimit.o \
31 xfs_sb.o \ 53 xfs_sb.o \
54 xfs_symlink_remote.o \
55 xfs_trans_resv.o \
56 )
57# xfs_rtbitmap is shared with libxfs
58xfs-$(CONFIG_XFS_RT) += $(addprefix libxfs/, \
59 xfs_rtbitmap.o \
32 ) 60 )
33 61
34# highlevel code 62# highlevel code
@@ -51,6 +79,7 @@ xfs-y += xfs_aops.o \
51 xfs_ioctl.o \ 79 xfs_ioctl.o \
52 xfs_iomap.o \ 80 xfs_iomap.o \
53 xfs_iops.o \ 81 xfs_iops.o \
82 xfs_inode.o \
54 xfs_itable.o \ 83 xfs_itable.o \
55 xfs_message.o \ 84 xfs_message.o \
56 xfs_mount.o \ 85 xfs_mount.o \
@@ -62,41 +91,14 @@ xfs-y += xfs_aops.o \
62 kmem.o \ 91 kmem.o \
63 uuid.o 92 uuid.o
64 93
65# code shared with libxfs
66xfs-y += xfs_alloc.o \
67 xfs_alloc_btree.o \
68 xfs_attr.o \
69 xfs_attr_leaf.o \
70 xfs_attr_remote.o \
71 xfs_bmap.o \
72 xfs_bmap_btree.o \
73 xfs_btree.o \
74 xfs_da_btree.o \
75 xfs_da_format.o \
76 xfs_dir2.o \
77 xfs_dir2_block.o \
78 xfs_dir2_data.o \
79 xfs_dir2_leaf.o \
80 xfs_dir2_node.o \
81 xfs_dir2_sf.o \
82 xfs_dquot_buf.o \
83 xfs_ialloc.o \
84 xfs_ialloc_btree.o \
85 xfs_icreate_item.o \
86 xfs_inode.o \
87 xfs_inode_fork.o \
88 xfs_inode_buf.o \
89 xfs_log_recover.o \
90 xfs_log_rlimit.o \
91 xfs_symlink_remote.o \
92 xfs_trans_resv.o
93
94# low-level transaction/log code 94# low-level transaction/log code
95xfs-y += xfs_log.o \ 95xfs-y += xfs_log.o \
96 xfs_log_cil.o \ 96 xfs_log_cil.o \
97 xfs_buf_item.o \ 97 xfs_buf_item.o \
98 xfs_extfree_item.o \ 98 xfs_extfree_item.o \
99 xfs_icreate_item.o \
99 xfs_inode_item.o \ 100 xfs_inode_item.o \
101 xfs_log_recover.o \
100 xfs_trans_ail.o \ 102 xfs_trans_ail.o \
101 xfs_trans_buf.o \ 103 xfs_trans_buf.o \
102 xfs_trans_extfree.o \ 104 xfs_trans_extfree.o \
@@ -112,8 +114,7 @@ xfs-$(CONFIG_XFS_QUOTA) += xfs_dquot.o \
112 xfs_quotaops.o 114 xfs_quotaops.o
113 115
114# xfs_rtbitmap is shared with libxfs 116# xfs_rtbitmap is shared with libxfs
115xfs-$(CONFIG_XFS_RT) += xfs_rtalloc.o \ 117xfs-$(CONFIG_XFS_RT) += xfs_rtalloc.o
116 xfs_rtbitmap.o
117 118
118xfs-$(CONFIG_XFS_POSIX_ACL) += xfs_acl.o 119xfs-$(CONFIG_XFS_POSIX_ACL) += xfs_acl.o
119xfs-$(CONFIG_PROC_FS) += xfs_stats.o 120xfs-$(CONFIG_PROC_FS) += xfs_stats.o