]> Sergey Matveev's repositories - bfs.git/log
bfs.git
7 months agotests: Fix uses of $? with set -e
Tavian Barnes [Thu, 19 Oct 2023 13:34:58 +0000 (09:34 -0400)]
tests: Fix uses of $? with set -e

7 months agotests: New defer function
Tavian Barnes [Thu, 19 Oct 2023 13:31:33 +0000 (09:31 -0400)]
tests: New defer function

7 months agotests: Rename --noclean -> --no-clean
Tavian Barnes [Thu, 19 Oct 2023 12:04:30 +0000 (08:04 -0400)]
tests: Rename --noclean -> --no-clean

7 months agobench: Account for tailfin's at-exit -> defer rename
Tavian Barnes [Thu, 19 Oct 2023 12:03:04 +0000 (08:03 -0400)]
bench: Account for tailfin's at-exit -> defer rename

7 months agowordesc: Don't allow braces in bare words
Tavian Barnes [Wed, 18 Oct 2023 15:34:21 +0000 (11:34 -0400)]
wordesc: Don't allow braces in bare words

Things like {a,b} should be quoted to avoid brace expansion.

7 months agoparse: Set BFTW_WHITEOUTS when parsing -type w
Tavian Barnes [Tue, 17 Oct 2023 15:55:31 +0000 (11:55 -0400)]
parse: Set BFTW_WHITEOUTS when parsing -type w

7 months agobftw: New flag to control whiteout visibility
Tavian Barnes [Tue, 17 Oct 2023 15:55:19 +0000 (11:55 -0400)]
bftw: New flag to control whiteout visibility

7 months agodir: New flag to control whiteout visibility
Tavian Barnes [Tue, 17 Oct 2023 15:43:43 +0000 (11:43 -0400)]
dir: New flag to control whiteout visibility

7 months agodir: Fix FreeBSD union mounts
Tavian Barnes [Tue, 17 Oct 2023 15:35:41 +0000 (11:35 -0400)]
dir: Fix FreeBSD union mounts

7 months agodir: Add a flags parameter to bfs_opendir()
Tavian Barnes [Mon, 16 Oct 2023 20:44:46 +0000 (16:44 -0400)]
dir: Add a flags parameter to bfs_opendir()

7 months agotests: Move closed_std* tests out of the POSIX group
Tavian Barnes [Sat, 14 Oct 2023 12:55:57 +0000 (08:55 -0400)]
tests: Move closed_std* tests out of the POSIX group

POSIX actually says

> If the utility would be executed with file descriptor 0, 1, or 2
> closed, implementations may execute the utility with the file
> descriptor open to an unspecified file.

So we're not guaranteed to be able to detect the situation in the first
place.  Add a best-effort check for these platforms and skip the test.

Link: https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_09_01_01
7 months agodir: Fix Android build
Tavian Barnes [Sat, 14 Oct 2023 12:48:15 +0000 (08:48 -0400)]
dir: Fix Android build

Android doesn't provide a getdents() wrapper, so use the syscall.

7 months agodocs: Add a list of related utilities
Tavian Barnes [Fri, 13 Oct 2023 21:09:11 +0000 (17:09 -0400)]
docs: Add a list of related utilities

7 months agotests: Always create the scratch directory
Tavian Barnes [Fri, 13 Oct 2023 17:52:01 +0000 (13:52 -0400)]
tests: Always create the scratch directory

Otherwise, some tests that try to check for flag support like

    invoke_bfs scratch -quit -xattr || skip

can be accidentally skipped if ./scratch doesn't exist yet:

    $ ./tests/tests.sh bsd/xattr
    tests skipped: 1

After this patch, we get the expected

    $ ./tests/tests.sh bsd/xattr
    tests passed: 1

7 months agoMerge tag '3.0.4'
Tavian Barnes [Fri, 13 Oct 2023 03:52:49 +0000 (23:52 -0400)]
Merge tag '3.0.4'

7 months agoRelease 3.0.4
Tavian Barnes [Fri, 13 Oct 2023 03:50:16 +0000 (23:50 -0400)]
Release 3.0.4

7 months agotests: Don't crash if unbuffer isn't installed
Tavian Barnes [Fri, 13 Oct 2023 03:47:04 +0000 (23:47 -0400)]
tests: Don't crash if unbuffer isn't installed

7 months agobfstd: Actually use the copied locale
Tavian Barnes [Fri, 13 Oct 2023 03:45:40 +0000 (23:45 -0400)]
bfstd: Actually use the copied locale

This fixes a segfault in xstrerror() when using musl.

7 months agobuild: Re-enable liburing
Tavian Barnes [Fri, 13 Oct 2023 02:14:34 +0000 (22:14 -0400)]
build: Re-enable liburing

This reverts commit 735a2979a37251dc447274aa888ad77ded126457.

7 months agoRelease 3.0.3
Tavian Barnes [Fri, 13 Oct 2023 02:13:49 +0000 (22:13 -0400)]
Release 3.0.3

7 months agobuild: Disable liburing for now
Tavian Barnes [Fri, 13 Oct 2023 02:12:35 +0000 (22:12 -0400)]
build: Disable liburing for now

liburing will be enabled for the next feature release.

7 months agodocs: Start writing the 3.1 changelog
Tavian Barnes [Thu, 12 Oct 2023 22:28:34 +0000 (18:28 -0400)]
docs: Start writing the 3.1 changelog

7 months agobench: Look for ./bfs if ./bin/bfs doesn't exist
Tavian Barnes [Thu, 12 Oct 2023 22:27:31 +0000 (18:27 -0400)]
bench: Look for ./bfs if ./bin/bfs doesn't exist

7 months agobench: Check for bfs -j support before using it
Tavian Barnes [Thu, 12 Oct 2023 22:21:55 +0000 (18:21 -0400)]
bench: Check for bfs -j support before using it

7 months agobftw: Make sure we don't close a directory while we unwrap it
Tavian Barnes [Thu, 12 Oct 2023 19:50:59 +0000 (15:50 -0400)]
bftw: Make sure we don't close a directory while we unwrap it

bftw_cache_reserve() can lead to bftw_cache_pop(), which could close the
directory we're trying to unwrap!  If that happened, we would try
dup_cloexec(-1), which would fail with EBADF, so there was no observable
bug.  But it's better to avoid the whole situation.

7 months agobftw: Fix to_close list corruption with !BFS_USE_UNWRAPDIR
Tavian Barnes [Thu, 12 Oct 2023 19:13:02 +0000 (15:13 -0400)]
bftw: Fix to_close list corruption with !BFS_USE_UNWRAPDIR

It's possible for pincount to drop to zero, then get incremented and
drop back to zero again.  If this happens, we shouldn't add it to the
to_close list twice.

This should fix the intermittent hang on the macOS CI.

Fixes: 815798e1eea7fc8dacd5acab40202ec4d251d517
7 months agolist: Assert that we're not inserting already-attached nodes
Tavian Barnes [Thu, 12 Oct 2023 17:18:00 +0000 (13:18 -0400)]
list: Assert that we're not inserting already-attached nodes

7 months agodiag: Move enum debug_flags out of ctx.h
Tavian Barnes [Thu, 12 Oct 2023 17:09:11 +0000 (13:09 -0400)]
diag: Move enum debug_flags out of ctx.h

7 months agobftw: Don't force buffering for parallel dfs
Tavian Barnes [Thu, 12 Oct 2023 14:41:04 +0000 (10:41 -0400)]
bftw: Don't force buffering for parallel dfs

7 months agobftw: Fix unbuffered depth-first searches
Tavian Barnes [Thu, 12 Oct 2023 15:24:49 +0000 (11:24 -0400)]
bftw: Fix unbuffered depth-first searches

bftw() implements depth-first search by appending files to a batch, then
prepending the batch to the queue.  When we switched to separate file/
directory queues, this was only implemented for the file queue.
Unbuffered searches don't use the file queue, so they were all breadth-
first in practice.

This meant that iterative deepening (-S ids) was actually "iterative
deepening *breadth*-first search," a horrible strategy with no advantage
over regular breadth-first search.  Now it performs iterative deepening
*depth*-first search, which at least limits its memory consumption.

Fixes: c1b16b49988ecff17ae30978ea14798d95b80018
7 months agobftw: Let iterative deepening work depth-first when sorting
Tavian Barnes [Thu, 12 Oct 2023 13:44:27 +0000 (09:44 -0400)]
bftw: Let iterative deepening work depth-first when sorting

7 months agobench: Default to --strategies=rust
Tavian Barnes [Tue, 10 Oct 2023 15:51:34 +0000 (11:51 -0400)]
bench: Default to --strategies=rust

7 months agobench: New --jobs benchmark
Tavian Barnes [Tue, 10 Oct 2023 15:37:40 +0000 (11:37 -0400)]
bench: New --jobs benchmark

7 months agobench: Group by strategy in comparison mode
Tavian Barnes [Tue, 10 Oct 2023 15:34:26 +0000 (11:34 -0400)]
bench: Group by strategy in comparison mode

7 months agobench: Don't print paths in the --strategies benchmark
Tavian Barnes [Tue, 10 Oct 2023 15:21:38 +0000 (11:21 -0400)]
bench: Don't print paths in the --strategies benchmark

7 months agobench: Allow format specifiers in (sub)group headers
Tavian Barnes [Tue, 10 Oct 2023 15:14:18 +0000 (11:14 -0400)]
bench: Allow format specifiers in (sub)group headers

7 months agobar: Replace volatile sig_atomic_t with actual atomics
Tavian Barnes [Fri, 6 Oct 2023 23:08:33 +0000 (19:08 -0400)]
bar: Replace volatile sig_atomic_t with actual atomics

7 months agoalloc: Test allocation size overflows
Tavian Barnes [Fri, 6 Oct 2023 16:37:01 +0000 (12:37 -0400)]
alloc: Test allocation size overflows

7 months agotests/bfs/status: Try to test SIGWINCH
Tavian Barnes [Fri, 6 Oct 2023 16:00:02 +0000 (12:00 -0400)]
tests/bfs/status: Try to test SIGWINCH

7 months agotests: Check for expect_unbuffer too
Tavian Barnes [Fri, 6 Oct 2023 15:56:31 +0000 (11:56 -0400)]
tests: Check for expect_unbuffer too

That's where FreeBSD installs it.

7 months agotests: New bfs_pty wrapper for unbuffer
Tavian Barnes [Fri, 6 Oct 2023 15:42:06 +0000 (11:42 -0400)]
tests: New bfs_pty wrapper for unbuffer

7 months agoci: Install expect for unbuffer
Tavian Barnes [Thu, 5 Oct 2023 21:29:52 +0000 (17:29 -0400)]
ci: Install expect for unbuffer

7 months agotests/bfs: Add a test that runs -status
Tavian Barnes [Thu, 5 Oct 2023 21:18:40 +0000 (17:18 -0400)]
tests/bfs: Add a test that runs -status

7 months agotests/bfs: Add tests for color autodetection
Tavian Barnes [Thu, 5 Oct 2023 20:25:56 +0000 (16:25 -0400)]
tests/bfs: Add tests for color autodetection

7 months agotests: Respect $NO_COLOR
Tavian Barnes [Thu, 5 Oct 2023 20:25:21 +0000 (16:25 -0400)]
tests: Respect $NO_COLOR

7 months agoREADME: Realign badges
Tavian Barnes [Thu, 5 Oct 2023 18:44:55 +0000 (14:44 -0400)]
README: Realign badges

A recent GitHub change broke the nice alignment of the badges to the top
heading, so just put the badges underneath it for now.

7 months agobfstd: Add a thread-safe wrapper for strerror()
Tavian Barnes [Thu, 5 Oct 2023 16:56:36 +0000 (12:56 -0400)]
bfstd: Add a thread-safe wrapper for strerror()

7 months agothread: Define thread_local
Tavian Barnes [Thu, 5 Oct 2023 16:55:56 +0000 (12:55 -0400)]
thread: Define thread_local

7 months agoconfig: Fold !__FreeBSD__ into BFS_USE_SYS_CAPABILITY_H
Tavian Barnes [Thu, 5 Oct 2023 16:47:31 +0000 (12:47 -0400)]
config: Fold !__FreeBSD__ into BFS_USE_SYS_CAPABILITY_H

7 months agodstring: Limit the special dchar typedef to lint builds
Tavian Barnes [Tue, 3 Oct 2023 20:26:05 +0000 (16:26 -0400)]
dstring: Limit the special dchar typedef to lint builds

Clang still thinks that alignof(dstr[1]) == 2, so out of an abundance of
caution, don't mess with dchar alignment in normal builds.

7 months agobuild: New lint flag
Tavian Barnes [Tue, 3 Oct 2023 20:25:56 +0000 (16:25 -0400)]
build: New lint flag

7 months agothread: s/call_once/invoke_once/
Tavian Barnes [Tue, 3 Oct 2023 17:07:21 +0000 (13:07 -0400)]
thread: s/call_once/invoke_once/

call_once() is a reserved identifier from C11.

7 months agoci/freebsd: Use tailscale ssh
Tavian Barnes [Tue, 3 Oct 2023 14:17:12 +0000 (10:17 -0400)]
ci/freebsd: Use tailscale ssh

7 months agoci/macos: Don't install coreutils
Tavian Barnes [Tue, 3 Oct 2023 14:11:42 +0000 (10:11 -0400)]
ci/macos: Don't install coreutils

Since we build our own touch(1) implementation, we no longer need to
work around the macOS bug.

7 months agotests: Fix make_deep() on FreeBSD
Tavian Barnes [Mon, 2 Oct 2023 18:13:49 +0000 (14:13 -0400)]
tests: Fix make_deep() on FreeBSD

I keep forgetting that PATH_MAX is only 1024 there.

8 months agoMerge branch 'io-uring'
Tavian Barnes [Mon, 2 Oct 2023 17:09:41 +0000 (13:09 -0400)]
Merge branch 'io-uring'

8 months agoMerge branch 'benchmarks'
Tavian Barnes [Mon, 2 Oct 2023 17:09:36 +0000 (13:09 -0400)]
Merge branch 'benchmarks'

8 months agotests: Don't cd into paths longer than PATH_MAX
Tavian Barnes [Mon, 2 Oct 2023 16:57:26 +0000 (12:57 -0400)]
tests: Don't cd into paths longer than PATH_MAX

This fixes a warning on at least Alpine Linux that looks like

    cd: error retrieving current directory: getcwd: cannot access parent directories: Filename too long

8 months agoioq: Use io_uring
Tavian Barnes [Tue, 11 Jul 2023 18:04:40 +0000 (14:04 -0400)]
ioq: Use io_uring

Closes #65.

8 months agobuild: Add liburing on Linux
Tavian Barnes [Tue, 11 Jul 2023 18:30:52 +0000 (14:30 -0400)]
build: Add liburing on Linux

8 months agobench: Add a README
Tavian Barnes [Mon, 2 Oct 2023 14:49:41 +0000 (10:49 -0400)]
bench: Add a README

8 months agobench: Add benchmarking script
Tavian Barnes [Fri, 29 Sep 2023 18:13:06 +0000 (14:13 -0400)]
bench: Add benchmarking script

8 months agobench: New script to clone a git repo without file contents
Tavian Barnes [Thu, 28 Sep 2023 21:39:34 +0000 (17:39 -0400)]
bench: New script to clone a git repo without file contents

8 months agotests/xtouch: Try creating the immediate parent first
Tavian Barnes [Fri, 29 Sep 2023 19:13:41 +0000 (15:13 -0400)]
tests/xtouch: Try creating the immediate parent first

8 months agoFormatting fixes
Tavian Barnes [Wed, 27 Sep 2023 16:11:15 +0000 (12:11 -0400)]
Formatting fixes

8 months agobit: Fix UINTPTR_WIDTH typo
Tavian Barnes [Tue, 26 Sep 2023 19:42:35 +0000 (15:42 -0400)]
bit: Fix UINTPTR_WIDTH typo

8 months agobit: Use predefined __*_WIDTH__ macros if we can
Tavian Barnes [Tue, 26 Sep 2023 19:05:43 +0000 (15:05 -0400)]
bit: Use predefined __*_WIDTH__ macros if we can

8 months agodstring: New dchar typedef for dynamic strings
Tavian Barnes [Tue, 26 Sep 2023 16:48:21 +0000 (12:48 -0400)]
dstring: New dchar typedef for dynamic strings

8 months agoci/freebsd: Switch to Tailscale OAuth
Tavian Barnes [Mon, 25 Sep 2023 19:26:52 +0000 (15:26 -0400)]
ci/freebsd: Switch to Tailscale OAuth

8 months agoUse the new list macros
Tavian Barnes [Mon, 25 Sep 2023 17:58:19 +0000 (13:58 -0400)]
Use the new list macros

8 months agolist: New for_[s]list() macros
Tavian Barnes [Mon, 25 Sep 2023 17:53:15 +0000 (13:53 -0400)]
list: New for_[s]list() macros

8 months agolist: Unify formatting
Tavian Barnes [Mon, 25 Sep 2023 17:34:17 +0000 (13:34 -0400)]
list: Unify formatting

8 months agolist: New [S]LIST_EMPTY() macros
Tavian Barnes [Mon, 25 Sep 2023 17:29:03 +0000 (13:29 -0400)]
list: New [S]LIST_EMPTY() macros

8 months agolist: New [S]LIST_ITEM_INIT() macros
Tavian Barnes [Mon, 25 Sep 2023 17:16:35 +0000 (13:16 -0400)]
list: New [S]LIST_ITEM_INIT() macros

8 months agolist: Use (void)(...) rather than do { ... } while (0)
Tavian Barnes [Mon, 25 Sep 2023 17:03:51 +0000 (13:03 -0400)]
list: Use (void)(...) rather than do { ... } while (0)

This makes everything usable in expression contexts.

8 months agoREADME: Add Guix and OpenBSD packages
Tavian Barnes [Thu, 14 Sep 2023 16:14:26 +0000 (12:14 -0400)]
README: Add Guix and OpenBSD packages

8 months agobftw: Share the bftw_state between iterations of ids/eds
Tavian Barnes [Wed, 13 Sep 2023 15:39:50 +0000 (11:39 -0400)]
bftw: Share the bftw_state between iterations of ids/eds

8 months agoparse: Give more ephemeral_fds to -no{user,group}
Tavian Barnes [Tue, 12 Sep 2023 19:04:30 +0000 (15:04 -0400)]
parse: Give more ephemeral_fds to -no{user,group}

Fewer than 3 can lead to

    Assertion failed: (retval->write_queue != -1), function __open_cached_connection, file /usr/src/lib/libc/net/nscachedcli.c, line 224.

on a FreeBSD system with LDAP accounts.

8 months agoRelease 3.0.2
Tavian Barnes [Thu, 7 Sep 2023 01:15:50 +0000 (21:15 -0400)]
Release 3.0.2

8 months agobfstd: Work around a FreeBSD-specific msan issue
Tavian Barnes [Wed, 6 Sep 2023 21:13:04 +0000 (17:13 -0400)]
bfstd: Work around a FreeBSD-specific msan issue

Link: https://github.com/llvm/llvm-project/issues/65532
8 months agobfstd: Skip a whole loop in dollar_quote() if possible
Tavian Barnes [Wed, 6 Sep 2023 20:28:12 +0000 (16:28 -0400)]
bfstd: Skip a whole loop in dollar_quote() if possible

8 months agobfstd: Fix printable_len() off-by-one
Tavian Barnes [Wed, 6 Sep 2023 20:23:10 +0000 (16:23 -0400)]
bfstd: Fix printable_len() off-by-one

If xmbrtowc() fails, or if xiswprint() is false, then we shouldn't
include that wide char in the printable length.

Fixes: 19c96abe0a1ee56cf206fd5e87defb1fd3e0daa5
8 months agobfstd: Fix an OOB string index in xmbrtowc()
Tavian Barnes [Wed, 6 Sep 2023 18:59:59 +0000 (14:59 -0400)]
bfstd: Fix an OOB string index in xmbrtowc()

This bug could be reproduced with something like

    $ bfs -samefile $'\xFA\xFA'
    bfs: error: bfs: dstrnescat@src/dstring.c:252: wordesc() result truncated

or worse, with -DNDEBUG,

    $ bfs -samefile $'.....................\xFA\xFA'
    bfs: error: bfs -samefile $'.....................\xFA\xFA\x00\x55\x53\x45\x52\x3D\x74\x61\x76\x69\x61\x6E\x61\x74\x6F\x72
    bfs: error:               ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    bfs: error: No such file or directory.

which prints the memory after the end of the string (in this case, the
environment variable USER=tavianator).

The bug was caused by the line `*i += len`, which was intended to be
`*i = len`.  But actually, the right behaviour seems to be `*i += 1`.

Fixes: 19c96abe0a1ee56cf206fd5e87defb1fd3e0daa5
8 months agobftw: Enforce the dirlimit strictly
Tavian Barnes [Wed, 6 Sep 2023 13:30:47 +0000 (09:30 -0400)]
bftw: Enforce the dirlimit strictly

The previous accounting didn't fully control the number of allocated
bfs_dirs, as the dirlimit was incremented once we popped the directory,
not when we freed it.

9 months agobfs uses the C17 standard version
Alejandro Lazaro [Fri, 1 Sep 2023 15:50:26 +0000 (17:50 +0200)]
bfs uses the C17 standard version

`bfs` uses C17 since 3.0

9 months agopwcache: Don't use _SC_GET{PW,GR}_R_SIZE_MAX
Tavian Barnes [Thu, 31 Aug 2023 15:07:38 +0000 (11:07 -0400)]
pwcache: Don't use _SC_GET{PW,GR}_R_SIZE_MAX

They tend be 1024, which is a lot of memory per user/group.  128 is
usually enough, so start there instead.

9 months agopwcache: Arena-allocate struct passwd/group
Tavian Barnes [Thu, 31 Aug 2023 14:55:39 +0000 (10:55 -0400)]
pwcache: Arena-allocate struct passwd/group

9 months agoalloc: New varena_grow() function
Tavian Barnes [Thu, 31 Aug 2023 14:42:42 +0000 (10:42 -0400)]
alloc: New varena_grow() function

9 months agotrie: New trie_clear() function
Tavian Barnes [Thu, 31 Aug 2023 14:16:35 +0000 (10:16 -0400)]
trie: New trie_clear() function

9 months agoalloc: New [v]arena_clear() functions
Tavian Barnes [Thu, 31 Aug 2023 14:16:15 +0000 (10:16 -0400)]
alloc: New [v]arena_clear() functions

9 months agoWork around https://github.com/llvm/llvm-project/issues/64946
Tavian Barnes [Thu, 24 Aug 2023 03:19:55 +0000 (23:19 -0400)]
Work around https://github.com/llvm/llvm-project/issues/64946

9 months agoioq: New ioq_slot_monitor() helper
Tavian Barnes [Tue, 8 Aug 2023 20:03:11 +0000 (16:03 -0400)]
ioq: New ioq_slot_monitor() helper

9 months agodocs/bfs.1: Document each -regextype
Tavian Barnes [Tue, 15 Aug 2023 19:57:02 +0000 (15:57 -0400)]
docs/bfs.1: Document each -regextype

9 months agodocs/bfs.1: Document that -help/-version exit immediately
Tavian Barnes [Tue, 15 Aug 2023 18:35:55 +0000 (14:35 -0400)]
docs/bfs.1: Document that -help/-version exit immediately

9 months agodocs/bfs.1: Don't unnecessarily quote {}
Tavian Barnes [Tue, 15 Aug 2023 18:30:41 +0000 (14:30 -0400)]
docs/bfs.1: Don't unnecessarily quote {}

9 months agodocs/bfs.1: Clarify the effects of $POSIXLY_CORRECT
Tavian Barnes [Tue, 15 Aug 2023 18:30:17 +0000 (14:30 -0400)]
docs/bfs.1: Clarify the effects of $POSIXLY_CORRECT

9 months agodocs/bfs.1: Document use of $PATH
Tavian Barnes [Tue, 15 Aug 2023 18:28:10 +0000 (14:28 -0400)]
docs/bfs.1: Document use of $PATH

9 months agodocs/bfs.1: Document that -prune does not work together with -depth
Tavian Barnes [Tue, 15 Aug 2023 18:27:01 +0000 (14:27 -0400)]
docs/bfs.1: Document that -prune does not work together with -depth

9 months agodocs/bfs.1: Document the -type d,f syntax
Tavian Barnes [Tue, 15 Aug 2023 18:26:23 +0000 (14:26 -0400)]
docs/bfs.1: Document the -type d,f syntax

9 months agodocs/bfs.1: Use a bulleted list for -size units
Tavian Barnes [Tue, 15 Aug 2023 18:25:42 +0000 (14:25 -0400)]
docs/bfs.1: Use a bulleted list for -size units