]> Git Repo - linux.git/blob - fs/xfs/Makefile
Linux 6.14-rc3
[linux.git] / fs / xfs / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 #
3 # Copyright (c) 2000-2005 Silicon Graphics, Inc.
4 # All Rights Reserved.
5 #
6
7 ccflags-y += -I $(src)          # needed for trace events
8 ccflags-y += -I $(src)/libxfs
9
10 obj-$(CONFIG_XFS_FS)            += xfs.o
11
12 # this one should be compiled first, as the tracing macros can easily blow up
13 xfs-y                           += xfs_trace.o
14
15 # build the libxfs code first
16 xfs-y                           += $(addprefix libxfs/, \
17                                    xfs_group.o \
18                                    xfs_ag.o \
19                                    xfs_ag_resv.o \
20                                    xfs_alloc.o \
21                                    xfs_alloc_btree.o \
22                                    xfs_attr.o \
23                                    xfs_attr_leaf.o \
24                                    xfs_attr_remote.o \
25                                    xfs_bit.o \
26                                    xfs_bmap.o \
27                                    xfs_bmap_btree.o \
28                                    xfs_btree.o \
29                                    xfs_btree_staging.o \
30                                    xfs_da_btree.o \
31                                    xfs_defer.o \
32                                    xfs_dir2.o \
33                                    xfs_dir2_block.o \
34                                    xfs_dir2_data.o \
35                                    xfs_dir2_leaf.o \
36                                    xfs_dir2_node.o \
37                                    xfs_dir2_sf.o \
38                                    xfs_dquot_buf.o \
39                                    xfs_exchmaps.o \
40                                    xfs_ialloc.o \
41                                    xfs_ialloc_btree.o \
42                                    xfs_iext_tree.o \
43                                    xfs_inode_fork.o \
44                                    xfs_inode_buf.o \
45                                    xfs_inode_util.o \
46                                    xfs_log_rlimit.o \
47                                    xfs_metadir.o \
48                                    xfs_metafile.o \
49                                    xfs_parent.o \
50                                    xfs_rmap.o \
51                                    xfs_rmap_btree.o \
52                                    xfs_refcount.o \
53                                    xfs_refcount_btree.o \
54                                    xfs_rtrefcount_btree.o \
55                                    xfs_rtrmap_btree.o \
56                                    xfs_sb.o \
57                                    xfs_symlink_remote.o \
58                                    xfs_trans_inode.o \
59                                    xfs_trans_resv.o \
60                                    xfs_trans_space.o \
61                                    xfs_types.o \
62                                    )
63 # xfs_rtbitmap is shared with libxfs
64 xfs-$(CONFIG_XFS_RT)            += $(addprefix libxfs/, \
65                                    xfs_rtbitmap.o \
66                                    xfs_rtgroup.o \
67                                    )
68
69 # highlevel code
70 xfs-y                           += xfs_aops.o \
71                                    xfs_attr_inactive.o \
72                                    xfs_attr_list.o \
73                                    xfs_bmap_util.o \
74                                    xfs_bio_io.o \
75                                    xfs_buf.o \
76                                    xfs_dahash_test.o \
77                                    xfs_dir2_readdir.o \
78                                    xfs_discard.o \
79                                    xfs_error.o \
80                                    xfs_exchrange.o \
81                                    xfs_export.o \
82                                    xfs_extent_busy.o \
83                                    xfs_file.o \
84                                    xfs_filestream.o \
85                                    xfs_fsmap.o \
86                                    xfs_fsops.o \
87                                    xfs_globals.o \
88                                    xfs_handle.o \
89                                    xfs_health.o \
90                                    xfs_icache.o \
91                                    xfs_ioctl.o \
92                                    xfs_iomap.o \
93                                    xfs_iops.o \
94                                    xfs_inode.o \
95                                    xfs_itable.o \
96                                    xfs_iwalk.o \
97                                    xfs_message.o \
98                                    xfs_mount.o \
99                                    xfs_mru_cache.o \
100                                    xfs_pwork.o \
101                                    xfs_reflink.o \
102                                    xfs_stats.o \
103                                    xfs_super.o \
104                                    xfs_symlink.o \
105                                    xfs_sysfs.o \
106                                    xfs_trans.o \
107                                    xfs_xattr.o
108
109 # low-level transaction/log code
110 xfs-y                           += xfs_log.o \
111                                    xfs_log_cil.o \
112                                    xfs_bmap_item.o \
113                                    xfs_buf_item.o \
114                                    xfs_buf_item_recover.o \
115                                    xfs_dquot_item_recover.o \
116                                    xfs_exchmaps_item.o \
117                                    xfs_extfree_item.o \
118                                    xfs_attr_item.o \
119                                    xfs_icreate_item.o \
120                                    xfs_inode_item.o \
121                                    xfs_inode_item_recover.o \
122                                    xfs_iunlink_item.o \
123                                    xfs_refcount_item.o \
124                                    xfs_rmap_item.o \
125                                    xfs_log_recover.o \
126                                    xfs_trans_ail.o \
127                                    xfs_trans_buf.o
128
129 # optional features
130 xfs-$(CONFIG_XFS_QUOTA)         += xfs_dquot.o \
131                                    xfs_dquot_item.o \
132                                    xfs_trans_dquot.o \
133                                    xfs_qm_syscalls.o \
134                                    xfs_qm_bhv.o \
135                                    xfs_qm.o \
136                                    xfs_quotaops.o
137
138 # xfs_rtbitmap is shared with libxfs
139 xfs-$(CONFIG_XFS_RT)            += xfs_rtalloc.o
140
141 xfs-$(CONFIG_XFS_POSIX_ACL)     += xfs_acl.o
142 xfs-$(CONFIG_SYSCTL)            += xfs_sysctl.o
143 xfs-$(CONFIG_COMPAT)            += xfs_ioctl32.o
144 xfs-$(CONFIG_EXPORTFS_BLOCK_OPS)        += xfs_pnfs.o
145
146 # notify failure
147 ifeq ($(CONFIG_MEMORY_FAILURE),y)
148 xfs-$(CONFIG_FS_DAX)            += xfs_notify_failure.o
149 endif
150
151 xfs-$(CONFIG_XFS_DRAIN_INTENTS) += xfs_drain.o
152 xfs-$(CONFIG_XFS_LIVE_HOOKS)    += xfs_hooks.o
153 xfs-$(CONFIG_XFS_MEMORY_BUFS)   += xfs_buf_mem.o
154 xfs-$(CONFIG_XFS_BTREE_IN_MEM)  += libxfs/xfs_btree_mem.o
155
156 # online scrub/repair
157 ifeq ($(CONFIG_XFS_ONLINE_SCRUB),y)
158
159 # Tracepoints like to blow up, so build that before everything else
160
161 xfs-y                           += $(addprefix scrub/, \
162                                    trace.o \
163                                    agb_bitmap.o \
164                                    agheader.o \
165                                    alloc.o \
166                                    attr.o \
167                                    bitmap.o \
168                                    bmap.o \
169                                    btree.o \
170                                    common.o \
171                                    dabtree.o \
172                                    dir.o \
173                                    dirtree.o \
174                                    fscounters.o \
175                                    health.o \
176                                    ialloc.o \
177                                    inode.o \
178                                    iscan.o \
179                                    listxattr.o \
180                                    metapath.o \
181                                    nlinks.o \
182                                    parent.o \
183                                    readdir.o \
184                                    refcount.o \
185                                    rmap.o \
186                                    scrub.o \
187                                    symlink.o \
188                                    xfarray.o \
189                                    xfblob.o \
190                                    xfile.o \
191                                    )
192
193 xfs-$(CONFIG_XFS_ONLINE_SCRUB_STATS) += scrub/stats.o
194
195 xfs-$(CONFIG_XFS_RT)            += $(addprefix scrub/, \
196                                    rgsuper.o \
197                                    rtbitmap.o \
198                                    rtrefcount.o \
199                                    rtrmap.o \
200                                    rtsummary.o \
201                                    )
202
203 xfs-$(CONFIG_XFS_QUOTA)         += $(addprefix scrub/, \
204                                    dqiterate.o \
205                                    quota.o \
206                                    quotacheck.o \
207                                    )
208
209 # online repair
210 ifeq ($(CONFIG_XFS_ONLINE_REPAIR),y)
211 xfs-y                           += $(addprefix scrub/, \
212                                    agheader_repair.o \
213                                    alloc_repair.o \
214                                    attr_repair.o \
215                                    bmap_repair.o \
216                                    cow_repair.o \
217                                    dir_repair.o \
218                                    dirtree_repair.o \
219                                    findparent.o \
220                                    fscounters_repair.o \
221                                    ialloc_repair.o \
222                                    inode_repair.o \
223                                    newbt.o \
224                                    nlinks_repair.o \
225                                    orphanage.o \
226                                    parent_repair.o \
227                                    rcbag_btree.o \
228                                    rcbag.o \
229                                    reap.o \
230                                    refcount_repair.o \
231                                    repair.o \
232                                    rmap_repair.o \
233                                    symlink_repair.o \
234                                    tempfile.o \
235                                    )
236
237 xfs-$(CONFIG_XFS_RT)            += $(addprefix scrub/, \
238                                    rtbitmap_repair.o \
239                                    rtrefcount_repair.o \
240                                    rtrmap_repair.o \
241                                    rtsummary_repair.o \
242                                    )
243
244 xfs-$(CONFIG_XFS_QUOTA)         += $(addprefix scrub/, \
245                                    quota_repair.o \
246                                    quotacheck_repair.o \
247                                    )
248 endif
249 endif
This page took 0.049673 seconds and 4 git commands to generate.