summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2024-05-07Merge branch 'main' into find2fdfind2fdTavian Barnes
2024-05-07build/has/getdents: Squelch warningsTavian Barnes
2024-05-07ci: Save config.log filesTavian Barnes
2024-05-07distcheck: Don't build with make -sTavian Barnes
That way I can see the ./configure output on CI.
2024-05-07prelude: Kill #include <sys/param.h>Tavian Barnes
We don't check for `BSD` anymore.
2024-05-07build: Check for 1- and 2-argument getmntent() variantsTavian Barnes
2024-05-07build: Add a check for getmntinfo()Tavian Barnes
2024-05-07mtab: Fix getmntinfo() error checkTavian Barnes
The man pages all say "if an error occurs, zero is returned"
2024-05-07build: Add checks for strtofflags() and string_to_flags()Tavian Barnes
2024-05-07prelude: Remove unused __GLIBC_PREREQ() polyfillTavian Barnes
2024-05-07stat: Remove __GNU__ guardTavian Barnes
The number of people running bfs on Hurd with an outdated glibc version is vanishingly small (I hope).
2024-05-07stat: Prefer fstat(fd) to fstatat(fd, "", AT_EMPTY_PATH)Tavian Barnes
This lets us get rid of the runtime probe for AT_EMPTY_PATH support, and should be more efficient anyway. We still use statx(fd, "", AT_EMPTY_PATH) if available. Link: https://lore.kernel.org/linux-fsdevel/CAHk-=wiYnnv7Kw7v+Cp2xU6_Fd-qxQMZuuxZ61LgA2=Gtftw-A@mail.gmail.com/
2024-05-07prelude: Kill unused __NetBSD_Prereq__() polyfillTavian Barnes
2024-05-06xtime: Don't use timegm() on FreeBSD+msanTavian Barnes
2024-05-06xtime: Use the libc's timegm() if presentTavian Barnes
2024-05-03build: Don't look for -s inside VAR=val in $MAKEFLAGSTavian Barnes
2024-05-02Makefile: Recommend --enable-release over RELEASE=yTavian Barnes
2024-05-02Release 3.23.2Tavian Barnes
2024-05-02Prefer ./configure --enable-release to RELEASE=yTavian Barnes
2024-05-01build: Add some nice aliases to ./configureTavian Barnes
2024-04-30build: Listen to make -sTavian Barnes
2024-04-29build: Replace `make config` with a `./configure` scriptTavian Barnes
This lets us do more traditional out-of-tree builds like $ ../path/to/bfs/configure $ make The .mk files are moved from ./config to ./build, mostly so that ./configure will auto-complete easily.
2024-04-27bench: Get rid of stray lsTavian Barnes
2024-04-26config: Just use NOT to implement NORTavian Barnes
2024-04-26config: Move .c files into config/{use,has} subdirectoriesTavian Barnes
2024-04-25bench: Run make config when buildingTavian Barnes
2024-04-25config: Add BFS_USE_LIB* to config.h instead of CPPFLAGSTavian Barnes
2024-04-24ioq: Fix uninitialized values in ioq_create() cleanup pathTavian Barnes
I switched from ZALLOC_FLEX() to ALLOC_FLEX() in hopes that msan would catch uninitialized values in ioq_thread_create(), but in doing so, forgot to initialize all fields before the first goto fail. Fixes: f64f76b ("ioq: Copy ring_ops from the previous thread")
2024-04-24printf: Check dynamic format strings more carefullyTavian Barnes
2024-04-24printf: Refactor %y/%Y implementationTavian Barnes
2024-04-24ctx: Escape paths when reporting errors in bfs_ctx_free()Tavian Barnes
2024-04-24opt: Add missing NULL check in visit_shallow()Tavian Barnes
visit_shallow() should propagate NULL, but look_up_visitor() dereferences expr to know which visitor to return.
2024-04-24dstring: Add missing va_end() to dstrvcatf() error pathTavian Barnes
2024-04-24eval: Plug memory leak if bfs_opendir() failsTavian Barnes
2024-04-22build(deps): bump codecov/codecov-action from 3 to 4dependabot[bot]
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 4. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3...v4) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
2024-04-22Enable Dependabot for GitHub ActionsTavian Barnes
2024-04-22ci/netbsd: Use cross-platform-actionsTavian Barnes
2024-04-22ci/openbsd: Use cross-platform-actionsTavian Barnes
2024-04-22ci/freebsd: Use cross-platform-actionsTavian Barnes
2024-04-22ci/codeql: Exclude some alertsTavian Barnes
And try not to analyze config/*.c
2024-04-22fsade: Implement ACL detection on IllumosTavian Barnes
2024-04-22config: Check for acl_get_file()Tavian Barnes
2024-04-22fsade: Simplify BFS_CAN_CHECK_CAPABILITIESTavian Barnes
2024-04-22config: Check for acl_get_{entry,tag_type}()Tavian Barnes
2024-04-22config: Check for extattr_{get,list}_{file,link}()Tavian Barnes
This lets us implement -xattr on DragonFly BSD.
2024-04-19config: Check for max_align_tTavian Barnes
2024-04-19config: Check for aligned_alloc()Tavian Barnes
2024-04-19config: Check for struct stat::st_flagsTavian Barnes
2024-04-19config: Check for struct stat::st_{a,c,m,birth}{tim,timespec}Tavian Barnes
2024-04-19config: Check for struct tm::tm_gmtoffTavian Barnes