drm/panfrost: Remove set but not used variable 'bo'
[linux/fpc-iii.git] / fs / xfs / Makefile
blobaceca2f9a3db93f1c30266cdb264dcb4c573a11a
1 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2000-2005 Silicon Graphics, Inc.
4 # All Rights Reserved.
7 ccflags-y += -I $(srctree)/$(src) # needed for trace events
8 ccflags-y += -I $(srctree)/$(src)/libxfs
10 ccflags-$(CONFIG_XFS_DEBUG) += -g
12 obj-$(CONFIG_XFS_FS) += xfs.o
14 # this one should be compiled first, as the tracing macros can easily blow up
15 xfs-y += xfs_trace.o
17 # build the libxfs code first
18 xfs-y += $(addprefix libxfs/, \
19 xfs_ag.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_da_btree.o \
30 xfs_defer.o \
31 xfs_dir2.o \
32 xfs_dir2_block.o \
33 xfs_dir2_data.o \
34 xfs_dir2_leaf.o \
35 xfs_dir2_node.o \
36 xfs_dir2_sf.o \
37 xfs_dquot_buf.o \
38 xfs_ialloc.o \
39 xfs_ialloc_btree.o \
40 xfs_iext_tree.o \
41 xfs_inode_fork.o \
42 xfs_inode_buf.o \
43 xfs_log_rlimit.o \
44 xfs_ag_resv.o \
45 xfs_rmap.o \
46 xfs_rmap_btree.o \
47 xfs_refcount.o \
48 xfs_refcount_btree.o \
49 xfs_sb.o \
50 xfs_symlink_remote.o \
51 xfs_trans_inode.o \
52 xfs_trans_resv.o \
53 xfs_types.o \
55 # xfs_rtbitmap is shared with libxfs
56 xfs-$(CONFIG_XFS_RT) += $(addprefix libxfs/, \
57 xfs_rtbitmap.o \
60 # highlevel code
61 xfs-y += xfs_aops.o \
62 xfs_attr_inactive.o \
63 xfs_attr_list.o \
64 xfs_bmap_util.o \
65 xfs_bio_io.o \
66 xfs_buf.o \
67 xfs_dir2_readdir.o \
68 xfs_discard.o \
69 xfs_error.o \
70 xfs_export.o \
71 xfs_extent_busy.o \
72 xfs_file.o \
73 xfs_filestream.o \
74 xfs_fsmap.o \
75 xfs_fsops.o \
76 xfs_globals.o \
77 xfs_health.o \
78 xfs_icache.o \
79 xfs_ioctl.o \
80 xfs_iomap.o \
81 xfs_iops.o \
82 xfs_inode.o \
83 xfs_itable.o \
84 xfs_iwalk.o \
85 xfs_message.o \
86 xfs_mount.o \
87 xfs_mru_cache.o \
88 xfs_pwork.o \
89 xfs_reflink.o \
90 xfs_stats.o \
91 xfs_super.o \
92 xfs_symlink.o \
93 xfs_sysfs.o \
94 xfs_trans.o \
95 xfs_xattr.o \
96 kmem.o
98 # low-level transaction/log code
99 xfs-y += xfs_log.o \
100 xfs_log_cil.o \
101 xfs_bmap_item.o \
102 xfs_buf_item.o \
103 xfs_extfree_item.o \
104 xfs_icreate_item.o \
105 xfs_inode_item.o \
106 xfs_refcount_item.o \
107 xfs_rmap_item.o \
108 xfs_log_recover.o \
109 xfs_trans_ail.o \
110 xfs_trans_buf.o
112 # optional features
113 xfs-$(CONFIG_XFS_QUOTA) += xfs_dquot.o \
114 xfs_dquot_item.o \
115 xfs_trans_dquot.o \
116 xfs_qm_syscalls.o \
117 xfs_qm_bhv.o \
118 xfs_qm.o \
119 xfs_quotaops.o
121 # xfs_rtbitmap is shared with libxfs
122 xfs-$(CONFIG_XFS_RT) += xfs_rtalloc.o
124 xfs-$(CONFIG_XFS_POSIX_ACL) += xfs_acl.o
125 xfs-$(CONFIG_SYSCTL) += xfs_sysctl.o
126 xfs-$(CONFIG_COMPAT) += xfs_ioctl32.o
127 xfs-$(CONFIG_EXPORTFS_BLOCK_OPS) += xfs_pnfs.o
129 # online scrub/repair
130 ifeq ($(CONFIG_XFS_ONLINE_SCRUB),y)
132 # Tracepoints like to blow up, so build that before everything else
134 xfs-y += $(addprefix scrub/, \
135 trace.o \
136 agheader.o \
137 alloc.o \
138 attr.o \
139 bmap.o \
140 btree.o \
141 common.o \
142 dabtree.o \
143 dir.o \
144 fscounters.o \
145 health.o \
146 ialloc.o \
147 inode.o \
148 parent.o \
149 refcount.o \
150 rmap.o \
151 scrub.o \
152 symlink.o \
155 xfs-$(CONFIG_XFS_RT) += scrub/rtbitmap.o
156 xfs-$(CONFIG_XFS_QUOTA) += scrub/quota.o
158 # online repair
159 ifeq ($(CONFIG_XFS_ONLINE_REPAIR),y)
160 xfs-y += $(addprefix scrub/, \
161 agheader_repair.o \
162 bitmap.o \
163 repair.o \
165 endif
166 endif