hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
kernel/fs/xfs/Makefile
....@@ -4,10 +4,8 @@
44 # All Rights Reserved.
55 #
66
7
-ccflags-y += -I$(src) # needed for trace events
8
-ccflags-y += -I$(src)/libxfs
9
-
10
-ccflags-$(CONFIG_XFS_DEBUG) += -g
7
+ccflags-y += -I $(srctree)/$(src) # needed for trace events
8
+ccflags-y += -I $(srctree)/$(src)/libxfs
119
1210 obj-$(CONFIG_XFS_FS) += xfs.o
1311
....@@ -26,8 +24,8 @@
2624 xfs_bmap.o \
2725 xfs_bmap_btree.o \
2826 xfs_btree.o \
27
+ xfs_btree_staging.o \
2928 xfs_da_btree.o \
30
- xfs_da_format.o \
3129 xfs_defer.o \
3230 xfs_dir2.o \
3331 xfs_dir2_block.o \
....@@ -49,6 +47,7 @@
4947 xfs_refcount_btree.o \
5048 xfs_sb.o \
5149 xfs_symlink_remote.o \
50
+ xfs_trans_inode.o \
5251 xfs_trans_resv.o \
5352 xfs_types.o \
5453 )
....@@ -62,6 +61,7 @@
6261 xfs_attr_inactive.o \
6362 xfs_attr_list.o \
6463 xfs_bmap_util.o \
64
+ xfs_bio_io.o \
6565 xfs_buf.o \
6666 xfs_dir2_readdir.o \
6767 xfs_discard.o \
....@@ -73,15 +73,18 @@
7373 xfs_fsmap.o \
7474 xfs_fsops.o \
7575 xfs_globals.o \
76
+ xfs_health.o \
7677 xfs_icache.o \
7778 xfs_ioctl.o \
7879 xfs_iomap.o \
7980 xfs_iops.o \
8081 xfs_inode.o \
8182 xfs_itable.o \
83
+ xfs_iwalk.o \
8284 xfs_message.o \
8385 xfs_mount.o \
8486 xfs_mru_cache.o \
87
+ xfs_pwork.o \
8588 xfs_reflink.o \
8689 xfs_stats.o \
8790 xfs_super.o \
....@@ -96,19 +99,17 @@
9699 xfs_log_cil.o \
97100 xfs_bmap_item.o \
98101 xfs_buf_item.o \
102
+ xfs_buf_item_recover.o \
103
+ xfs_dquot_item_recover.o \
99104 xfs_extfree_item.o \
100105 xfs_icreate_item.o \
101106 xfs_inode_item.o \
107
+ xfs_inode_item_recover.o \
102108 xfs_refcount_item.o \
103109 xfs_rmap_item.o \
104110 xfs_log_recover.o \
105111 xfs_trans_ail.o \
106
- xfs_trans_bmap.o \
107
- xfs_trans_buf.o \
108
- xfs_trans_extfree.o \
109
- xfs_trans_inode.o \
110
- xfs_trans_refcount.o \
111
- xfs_trans_rmap.o \
112
+ xfs_trans_buf.o
112113
113114 # optional features
114115 xfs-$(CONFIG_XFS_QUOTA) += xfs_dquot.o \
....@@ -142,6 +143,8 @@
142143 common.o \
143144 dabtree.o \
144145 dir.o \
146
+ fscounters.o \
147
+ health.o \
145148 ialloc.o \
146149 inode.o \
147150 parent.o \