1 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2000-2005 Silicon Graphics, Inc.
7 ccflags-y += -I $(src) # needed for trace events
8 ccflags-y += -I $(src)/libxfs
10 obj-$(CONFIG_XFS_FS) += xfs.o
12 # this one should be compiled first, as the tracing macros can easily blow up
15 # build the libxfs code first
16 xfs-y += $(addprefix libxfs/, \
53 xfs_refcount_btree.o \
54 xfs_rtrefcount_btree.o \
57 xfs_symlink_remote.o \
63 # xfs_rtbitmap is shared with libxfs
64 xfs-$(CONFIG_XFS_RT) += $(addprefix libxfs/, \
109 # low-level transaction/log code
114 xfs_buf_item_recover.o \
115 xfs_dquot_item_recover.o \
116 xfs_exchmaps_item.o \
121 xfs_inode_item_recover.o \
123 xfs_refcount_item.o \
130 xfs-$(CONFIG_XFS_QUOTA) += xfs_dquot.o \
138 # xfs_rtbitmap is shared with libxfs
139 xfs-$(CONFIG_XFS_RT) += xfs_rtalloc.o
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
147 ifeq ($(CONFIG_MEMORY_FAILURE),y)
148 xfs-$(CONFIG_FS_DAX) += xfs_notify_failure.o
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
156 # online scrub/repair
157 ifeq ($(CONFIG_XFS_ONLINE_SCRUB),y)
159 # Tracepoints like to blow up, so build that before everything else
161 xfs-y += $(addprefix scrub/, \
193 xfs-$(CONFIG_XFS_ONLINE_SCRUB_STATS) += scrub/stats.o
195 xfs-$(CONFIG_XFS_RT) += $(addprefix scrub/, \
203 xfs-$(CONFIG_XFS_QUOTA) += $(addprefix scrub/, \
210 ifeq ($(CONFIG_XFS_ONLINE_REPAIR),y)
211 xfs-y += $(addprefix scrub/, \
220 fscounters_repair.o \
237 xfs-$(CONFIG_XFS_RT) += $(addprefix scrub/, \
239 rtrefcount_repair.o \
244 xfs-$(CONFIG_XFS_QUOTA) += $(addprefix scrub/, \
246 quotacheck_repair.o \