2018-06-06 10:42:14 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
2007-11-27 13:53:47 +08:00
|
|
|
#
|
|
|
|
# Copyright (c) 2000-2005 Silicon Graphics, Inc.
|
|
|
|
# All Rights Reserved.
|
|
|
|
#
|
|
|
|
|
2019-05-13 14:22:16 +08:00
|
|
|
ccflags-y += -I $(srctree)/$(src) # needed for trace events
|
|
|
|
ccflags-y += -I $(srctree)/$(src)/libxfs
|
2011-08-15 01:13:00 +08:00
|
|
|
|
2007-11-27 13:53:47 +08:00
|
|
|
obj-$(CONFIG_XFS_FS) += xfs.o
|
2007-11-28 15:28:09 +08:00
|
|
|
|
2011-08-13 05:21:35 +08:00
|
|
|
# this one should be compiled first, as the tracing macros can easily blow up
|
|
|
|
xfs-y += xfs_trace.o
|
2007-11-27 13:53:47 +08:00
|
|
|
|
2014-06-25 12:57:22 +08:00
|
|
|
# build the libxfs code first
|
|
|
|
xfs-y += $(addprefix libxfs/, \
|
2018-05-14 14:10:08 +08:00
|
|
|
xfs_ag.o \
|
2014-06-25 12:57:53 +08:00
|
|
|
xfs_alloc.o \
|
|
|
|
xfs_alloc_btree.o \
|
|
|
|
xfs_attr.o \
|
|
|
|
xfs_attr_leaf.o \
|
|
|
|
xfs_attr_remote.o \
|
2015-07-29 09:52:08 +08:00
|
|
|
xfs_bit.o \
|
2014-06-25 12:57:53 +08:00
|
|
|
xfs_bmap.o \
|
|
|
|
xfs_bmap_btree.o \
|
|
|
|
xfs_btree.o \
|
2020-03-12 01:40:26 +08:00
|
|
|
xfs_btree_staging.o \
|
2014-06-25 12:57:53 +08:00
|
|
|
xfs_da_btree.o \
|
2016-08-03 09:12:25 +08:00
|
|
|
xfs_defer.o \
|
2014-06-25 12:57:53 +08:00
|
|
|
xfs_dir2.o \
|
|
|
|
xfs_dir2_block.o \
|
|
|
|
xfs_dir2_data.o \
|
|
|
|
xfs_dir2_leaf.o \
|
|
|
|
xfs_dir2_node.o \
|
|
|
|
xfs_dir2_sf.o \
|
|
|
|
xfs_dquot_buf.o \
|
|
|
|
xfs_ialloc.o \
|
|
|
|
xfs_ialloc_btree.o \
|
2017-11-04 01:34:46 +08:00
|
|
|
xfs_iext_tree.o \
|
2014-06-25 12:57:53 +08:00
|
|
|
xfs_inode_fork.o \
|
|
|
|
xfs_inode_buf.o \
|
|
|
|
xfs_log_rlimit.o \
|
xfs: set up per-AG free space reservations
One unfortunate quirk of the reference count and reverse mapping
btrees -- they can expand in size when blocks are written to *other*
allocation groups if, say, one large extent becomes a lot of tiny
extents. Since we don't want to start throwing errors in the middle
of CoWing, we need to reserve some blocks to handle future expansion.
The transaction block reservation counters aren't sufficient here
because we have to have a reserve of blocks in every AG, not just
somewhere in the filesystem.
Therefore, create two per-AG block reservation pools. One feeds the
AGFL so that rmapbt expansion always succeeds, and the other feeds all
other metadata so that refcountbt expansion never fails.
Use the count of how many reserved blocks we need to have on hand to
create a virtual reservation in the AG. Through selective clamping of
the maximum length of allocation requests and of the length of the
longest free extent, we can make it look like there's less free space
in the AG unless the reservation owner is asking for blocks.
In other words, play some accounting tricks in-core to make sure that
we always have blocks available. On the plus side, there's nothing to
clean up if we crash, which is contrast to the strategy that the rough
draft used (actually removing extents from the freespace btrees).
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
2016-09-19 08:30:52 +08:00
|
|
|
xfs_ag_resv.o \
|
2016-08-03 09:33:43 +08:00
|
|
|
xfs_rmap.o \
|
2016-08-03 09:36:07 +08:00
|
|
|
xfs_rmap_btree.o \
|
2016-10-04 00:11:19 +08:00
|
|
|
xfs_refcount.o \
|
2016-10-04 00:11:18 +08:00
|
|
|
xfs_refcount_btree.o \
|
2014-06-25 12:57:22 +08:00
|
|
|
xfs_sb.o \
|
2014-06-25 12:57:53 +08:00
|
|
|
xfs_symlink_remote.o \
|
2019-07-13 06:07:05 +08:00
|
|
|
xfs_trans_inode.o \
|
2014-06-25 12:57:53 +08:00
|
|
|
xfs_trans_resv.o \
|
2018-06-07 22:53:33 +08:00
|
|
|
xfs_types.o \
|
2014-06-25 12:57:53 +08:00
|
|
|
)
|
|
|
|
# xfs_rtbitmap is shared with libxfs
|
|
|
|
xfs-$(CONFIG_XFS_RT) += $(addprefix libxfs/, \
|
|
|
|
xfs_rtbitmap.o \
|
2014-06-25 12:57:22 +08:00
|
|
|
)
|
|
|
|
|
2011-08-13 05:21:35 +08:00
|
|
|
# highlevel code
|
|
|
|
xfs-y += xfs_aops.o \
|
2013-08-12 18:49:39 +08:00
|
|
|
xfs_attr_inactive.o \
|
2013-08-12 18:49:38 +08:00
|
|
|
xfs_attr_list.o \
|
2013-08-12 18:49:42 +08:00
|
|
|
xfs_bmap_util.o \
|
2019-06-29 10:27:26 +08:00
|
|
|
xfs_bio_io.o \
|
2011-08-13 05:21:35 +08:00
|
|
|
xfs_buf.o \
|
xfs: test dir/attr hash when loading module
Back in the 6.2-rc1 days, Eric Whitney reported a fstests regression in
ext4 against generic/454. The cause of this test failure was the
unfortunate combination of setting an xattr name containing UTF8 encoded
emoji, an xattr hash function that accepted a char pointer with no
explicit signedness, signed type extension of those chars to an int, and
the 6.2 build tools maintainers deciding to mandate -funsigned-char
across the board. As a result, the ondisk extended attribute structure
written out by 6.1 and 6.2 were not the same.
This discrepancy, in fact, had been noticeable if a filesystem with such
an xattr were moved between any two architectures that don't employ the
same signedness of a raw "char" declaration. The only reason anyone
noticed is that x86 gcc defaults to signed, and no such -funsigned-char
update was made to e2fsprogs, so e2fsck immediately started reporting
data corruption.
After a day and a half of discussing how to handle this use case (xattrs
with bit 7 set anywhere in the name) without breaking existing users,
Linus merged his own patch and didn't tell the maintainer. None of the
ext4 developers realized this until AUTOSEL announced that the commit
had been backported to stable.
In the end, this problem could have been detected much earlier if there
had been any useful tests of hash function(s) in use inside ext4 to make
sure that they always produce the same outputs given the same inputs.
The XFS dirent/xattr name hash takes a uint8_t*, so I don't think it's
vulnerable to this problem. However, let's avoid all this drama by
adding our own self test to check that the da hash produces the same
outputs for a static pile of inputs on various platforms. This enables
us to fix any breakage that may result in a controlled fashion. The
buffer and test data are identical to the patches submitted to xfsprogs.
Link: https://lore.kernel.org/linux-ext4/Y8bpkm3jA3bDm3eL@debian-BULLSEYE-live-builder-AMD64/
Link: https://lore.kernel.org/linux-xfs/ZBUKCRR7xvIqPrpX@destitution/T/#md38272cc684e2c0d61494435ccbb91f022e8dee4
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
2023-03-17 00:31:20 +08:00
|
|
|
xfs_dahash_test.o \
|
2013-08-12 18:49:36 +08:00
|
|
|
xfs_dir2_readdir.o \
|
2011-08-13 05:21:35 +08:00
|
|
|
xfs_discard.o \
|
|
|
|
xfs_error.o \
|
|
|
|
xfs_export.o \
|
2012-04-29 18:39:43 +08:00
|
|
|
xfs_extent_busy.o \
|
2011-08-13 05:21:35 +08:00
|
|
|
xfs_file.o \
|
|
|
|
xfs_filestream.o \
|
2017-03-29 05:56:37 +08:00
|
|
|
xfs_fsmap.o \
|
2011-08-13 05:21:35 +08:00
|
|
|
xfs_fsops.o \
|
|
|
|
xfs_globals.o \
|
2019-04-12 22:40:25 +08:00
|
|
|
xfs_health.o \
|
2012-10-08 18:56:09 +08:00
|
|
|
xfs_icache.o \
|
2011-08-13 05:21:35 +08:00
|
|
|
xfs_ioctl.o \
|
|
|
|
xfs_iomap.o \
|
|
|
|
xfs_iops.o \
|
2014-06-25 12:57:53 +08:00
|
|
|
xfs_inode.o \
|
2011-08-13 05:21:35 +08:00
|
|
|
xfs_itable.o \
|
2019-07-03 00:39:38 +08:00
|
|
|
xfs_iwalk.o \
|
2011-08-13 05:21:35 +08:00
|
|
|
xfs_message.o \
|
2013-08-12 18:49:41 +08:00
|
|
|
xfs_mount.o \
|
2011-08-13 05:21:35 +08:00
|
|
|
xfs_mru_cache.o \
|
2019-07-03 22:33:26 +08:00
|
|
|
xfs_pwork.o \
|
2016-10-04 00:11:32 +08:00
|
|
|
xfs_reflink.o \
|
2015-10-19 05:42:46 +08:00
|
|
|
xfs_stats.o \
|
2013-04-03 13:11:18 +08:00
|
|
|
xfs_super.o \
|
2013-08-12 18:49:40 +08:00
|
|
|
xfs_symlink.o \
|
2014-07-15 06:07:01 +08:00
|
|
|
xfs_sysfs.o \
|
2013-08-12 18:49:32 +08:00
|
|
|
xfs_trans.o \
|
2013-04-03 13:11:18 +08:00
|
|
|
xfs_xattr.o \
|
2017-05-04 21:26:23 +08:00
|
|
|
kmem.o
|
2007-11-27 13:53:47 +08:00
|
|
|
|
2011-08-13 05:21:35 +08:00
|
|
|
# low-level transaction/log code
|
|
|
|
xfs-y += xfs_log.o \
|
|
|
|
xfs_log_cil.o \
|
2016-10-04 00:11:25 +08:00
|
|
|
xfs_bmap_item.o \
|
2011-08-13 05:21:35 +08:00
|
|
|
xfs_buf_item.o \
|
2020-05-02 07:00:45 +08:00
|
|
|
xfs_buf_item_recover.o \
|
|
|
|
xfs_dquot_item_recover.o \
|
2011-08-13 05:21:35 +08:00
|
|
|
xfs_extfree_item.o \
|
2022-05-04 10:41:02 +08:00
|
|
|
xfs_attr_item.o \
|
2014-06-25 12:57:53 +08:00
|
|
|
xfs_icreate_item.o \
|
2011-08-13 05:21:35 +08:00
|
|
|
xfs_inode_item.o \
|
2020-05-02 07:00:45 +08:00
|
|
|
xfs_inode_item_recover.o \
|
2022-07-14 09:47:42 +08:00
|
|
|
xfs_iunlink_item.o \
|
2016-10-04 00:11:20 +08:00
|
|
|
xfs_refcount_item.o \
|
2016-08-03 10:04:45 +08:00
|
|
|
xfs_rmap_item.o \
|
2014-06-25 12:57:53 +08:00
|
|
|
xfs_log_recover.o \
|
2007-11-27 13:53:47 +08:00
|
|
|
xfs_trans_ail.o \
|
2019-07-13 06:07:05 +08:00
|
|
|
xfs_trans_buf.o
|
2007-11-27 13:53:47 +08:00
|
|
|
|
2011-08-13 05:21:35 +08:00
|
|
|
# optional features
|
|
|
|
xfs-$(CONFIG_XFS_QUOTA) += xfs_dquot.o \
|
|
|
|
xfs_dquot_item.o \
|
|
|
|
xfs_trans_dquot.o \
|
|
|
|
xfs_qm_syscalls.o \
|
|
|
|
xfs_qm_bhv.o \
|
|
|
|
xfs_qm.o \
|
|
|
|
xfs_quotaops.o
|
2013-10-15 06:17:56 +08:00
|
|
|
|
|
|
|
# xfs_rtbitmap is shared with libxfs
|
2014-06-25 12:57:53 +08:00
|
|
|
xfs-$(CONFIG_XFS_RT) += xfs_rtalloc.o
|
2013-10-15 06:17:56 +08:00
|
|
|
|
2011-08-13 05:21:35 +08:00
|
|
|
xfs-$(CONFIG_XFS_POSIX_ACL) += xfs_acl.o
|
|
|
|
xfs-$(CONFIG_SYSCTL) += xfs_sysctl.o
|
|
|
|
xfs-$(CONFIG_COMPAT) += xfs_ioctl32.o
|
2016-07-08 21:53:20 +08:00
|
|
|
xfs-$(CONFIG_EXPORTFS_BLOCK_OPS) += xfs_pnfs.o
|
2017-10-18 12:37:34 +08:00
|
|
|
|
2022-06-03 13:37:30 +08:00
|
|
|
# notify failure
|
|
|
|
ifeq ($(CONFIG_MEMORY_FAILURE),y)
|
|
|
|
xfs-$(CONFIG_FS_DAX) += xfs_notify_failure.o
|
|
|
|
endif
|
|
|
|
|
xfs: allow queued AG intents to drain before scrubbing
When a writer thread executes a chain of log intent items, the AG header
buffer locks will cycle during a transaction roll to get from one intent
item to the next in a chain. Although scrub takes all AG header buffer
locks, this isn't sufficient to guard against scrub checking an AG while
that writer thread is in the middle of finishing a chain because there's
no higher level locking primitive guarding allocation groups.
When there's a collision, cross-referencing between data structures
(e.g. rmapbt and refcountbt) yields false corruption events; if repair
is running, this results in incorrect repairs, which is catastrophic.
Fix this by adding to the perag structure the count of active intents
and make scrub wait until it has both AG header buffer locks and the
intent counter reaches zero.
One quirk of the drain code is that deferred bmap updates also bump and
drop the intent counter. A fundamental decision made during the design
phase of the reverse mapping feature is that updates to the rmapbt
records are always made by the same code that updates the primary
metadata. In other words, callers of bmapi functions expect that the
bmapi functions will queue deferred rmap updates.
Some parts of the reflink code queue deferred refcount (CUI) and bmap
(BUI) updates in the same head transaction, but the deferred work
manager completely finishes the CUI before the BUI work is started. As
a result, the CUI drops the intent count long before the deferred rmap
(RUI) update even has a chance to bump the intent count. The only way
to keep the intent count elevated between the CUI and RUI is for the BUI
to bump the counter until the RUI has been created.
A second quirk of the intent drain code is that deferred work items must
increment the intent counter as soon as the work item is added to the
transaction. When a BUI completes and queues an RUI, the RUI must
increment the counter before the BUI decrements it. The only way to
accomplish this is to require that the counter be bumped as soon as the
deferred work item is created in memory.
In the next patches we'll improve on this facility, but this patch
provides the basic functionality.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
2023-04-12 09:59:58 +08:00
|
|
|
xfs-$(CONFIG_XFS_DRAIN_INTENTS) += xfs_drain.o
|
|
|
|
|
2017-10-18 12:37:34 +08:00
|
|
|
# online scrub/repair
|
|
|
|
ifeq ($(CONFIG_XFS_ONLINE_SCRUB),y)
|
|
|
|
|
|
|
|
# Tracepoints like to blow up, so build that before everything else
|
|
|
|
|
|
|
|
xfs-y += $(addprefix scrub/, \
|
|
|
|
trace.o \
|
2017-10-18 12:37:38 +08:00
|
|
|
agheader.o \
|
2017-10-18 12:37:40 +08:00
|
|
|
alloc.o \
|
2017-10-18 12:37:45 +08:00
|
|
|
attr.o \
|
2023-04-12 10:00:38 +08:00
|
|
|
bitmap.o \
|
2017-10-18 12:37:43 +08:00
|
|
|
bmap.o \
|
2017-10-18 12:37:37 +08:00
|
|
|
btree.o \
|
2017-10-18 12:37:36 +08:00
|
|
|
common.o \
|
2017-10-18 12:37:43 +08:00
|
|
|
dabtree.o \
|
2017-10-18 12:37:44 +08:00
|
|
|
dir.o \
|
2019-04-26 09:26:24 +08:00
|
|
|
fscounters.o \
|
2019-04-16 23:22:00 +08:00
|
|
|
health.o \
|
2017-10-18 12:37:40 +08:00
|
|
|
ialloc.o \
|
2017-10-18 12:37:42 +08:00
|
|
|
inode.o \
|
2017-10-18 12:37:46 +08:00
|
|
|
parent.o \
|
2023-04-12 10:00:17 +08:00
|
|
|
readdir.o \
|
2017-10-18 12:37:41 +08:00
|
|
|
refcount.o \
|
2017-10-18 12:37:41 +08:00
|
|
|
rmap.o \
|
2017-10-18 12:37:34 +08:00
|
|
|
scrub.o \
|
2017-10-18 12:37:45 +08:00
|
|
|
symlink.o \
|
2023-08-10 22:48:04 +08:00
|
|
|
xfarray.o \
|
|
|
|
xfile.o \
|
2017-10-18 12:37:34 +08:00
|
|
|
)
|
2017-10-18 12:37:46 +08:00
|
|
|
|
2023-08-10 22:48:07 +08:00
|
|
|
xfs-$(CONFIG_XFS_ONLINE_SCRUB_STATS) += scrub/stats.o
|
2023-08-10 22:48:09 +08:00
|
|
|
|
|
|
|
xfs-$(CONFIG_XFS_RT) += $(addprefix scrub/, \
|
|
|
|
rtbitmap.o \
|
|
|
|
rtsummary.o \
|
|
|
|
)
|
|
|
|
|
2017-10-18 12:37:47 +08:00
|
|
|
xfs-$(CONFIG_XFS_QUOTA) += scrub/quota.o
|
2018-05-14 21:34:36 +08:00
|
|
|
|
|
|
|
# online repair
|
|
|
|
ifeq ($(CONFIG_XFS_ONLINE_REPAIR),y)
|
|
|
|
xfs-y += $(addprefix scrub/, \
|
2018-05-30 13:18:12 +08:00
|
|
|
agheader_repair.o \
|
2023-12-07 10:40:59 +08:00
|
|
|
newbt.o \
|
2023-08-10 22:48:01 +08:00
|
|
|
reap.o \
|
2018-05-14 21:34:36 +08:00
|
|
|
repair.o \
|
|
|
|
)
|
|
|
|
endif
|
2017-10-18 12:37:34 +08:00
|
|
|
endif
|