]> www.infradead.org Git - users/hch/xfstests-dev.git/commitdiff
common/xfs: fix _xfs_get_file_block_size when rtinherit is set and no rt section
authorDarrick J. Wong <djwong@kernel.org>
Tue, 6 Feb 2024 00:06:50 +0000 (16:06 -0800)
committerDarrick J. Wong <djwong@kernel.org>
Fri, 1 Nov 2024 20:42:00 +0000 (13:42 -0700)
It's possible for the sysadmin to set rtinherit on the directory tree
even if there isn't a realtime section attached to the filesystem.  When
this is the case, the realtime flag is /not/ passed to new files, and
file data is written to the data device.  The file allocation unit for
the file is the fs blocksize, and it is not correct to use the rt
extent.

fstests can be fooled into doing the incorrect thing if test runner puts
'-d rtinherit=1 -r extsize=28k' into MKFS_OPTIONS without configuring a
realtime device.  This causes many tests to do the wrong thing because
they think they must operate on units of 28k (and not 4k).  Fix this.

Signed-off-by: Darrick J. Wong <djwong@kernel.org>
common/xfs

index a11ffe1d4f73a0d1f173c7ba60a5c87e81b10501..6636e4327c9a27429978c8ac178e3e78fba5211b 100644 (file)
@@ -213,6 +213,8 @@ _xfs_get_file_block_size()
 {
        local path="$1"
 
+       # If rtinherit or realtime are not set on the path, then all files
+       # will be created on the data device.
        if ! ($XFS_IO_PROG -c "stat -v" "$path" 2>&1 | grep -E -q '(rt-inherit|realtime)'); then
                _get_block_size "$path"
                return
@@ -223,6 +225,15 @@ _xfs_get_file_block_size()
        while ! $XFS_INFO_PROG "$path" &>/dev/null && [ "$path" != "/" ]; do
                path="$(dirname "$path")"
        done
+
+       # If there's no realtime section, the rtinherit and rextsize settings
+       # are irrelevant -- all files are created on the data device.
+       if $XFS_INFO_PROG "$path" | grep -q 'realtime =none'; then
+               _get_block_size "$path"
+               return
+       fi
+
+       # Otherwise, report the rt extent size.
        _xfs_get_rtextsize "$path"
 }