mirror_zfs/module/os/freebsd/spl
Rob Norris 3b64a9619f FreeBSD: zfs_putpages: don't undirty pages until after write completes
In syncing mode, zfs_putpages() would put the entire range of pages onto
the ZIL, then return VM_PAGER_OK for each page to the kernel. However,
an associated zil_commit() or txg sync had not happened at this point,
so the write may not actually be on disk.

So, we rework that case to use a ZIL commit callback, and do the
post-write work of undirtying the page and signaling completion there.
We return VM_PAGER_PEND to the kernel instead so it knows that we will
take care of it.

The original version of this (238eab7dc1) copied the Linux model and did
the cleanup in a ZIL callback for both async and sync. This was a
mistake, as FreeBSD does not have a separate "busy for writeback" flag
like Linux which keeps the page usable. The full sbusy flag locks the
entire page out until the itx callback fires, which for async is after
txg sync, which could be literal seconds in the future.

For the async case, the data is already on the DMU and the in-memory
ZIL, which is sufficient for async writeback, so the old method of
logging it without a callback, undirtying the page and returning is more
than sufficient and reclaims that lost performance.

Sponsored-by: Klara, Inc.
Sponsored-by: Wasabi Technology, Inc.
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Alexander Motin <mav@FreeBSD.org>
Reviewed-by: Mark Johnston <markj@FreeBSD.org>
Signed-off-by: Rob Norris <rob.norris@klarasystems.com>
Closes #17533
2025-08-12 22:41:17 -04:00
..
acl_common.c SPDX: license tags: CDDL-1.0 2025-04-16 09:59:44 -07:00
callb.c SPDX: license tags: CDDL-1.0 2025-04-16 09:59:44 -07:00
list.c SPDX: license tags: CDDL-1.0 2025-04-16 09:59:44 -07:00
spl_acl.c SPDX: license tags: BSD-2-Clause 2025-04-16 09:59:44 -07:00
spl_atomic.c SPDX: license tags: BSD-2-Clause 2025-04-16 09:59:44 -07:00
spl_cmn_err.c SPDX: license tags: CDDL-1.0 2025-04-16 09:59:44 -07:00
spl_dtrace.c SPDX: license tags: BSD-2-Clause 2025-04-16 09:59:44 -07:00
spl_kmem.c SPDX: license tags: BSD-2-Clause 2025-04-16 09:59:44 -07:00
spl_kstat.c SPDX: license tags: BSD-2-Clause 2025-04-16 09:59:44 -07:00
spl_misc.c Skip dbuf_evict_one() from dbuf_evict_notify() for reclaim thread 2025-08-07 12:15:14 -04:00
spl_policy.c cred: properly pass and test creds on other threads (#17273) 2025-05-28 16:00:28 -07:00
spl_procfs_list.c SPDX: license tags: BSD-2-Clause 2025-04-16 09:59:44 -07:00
spl_string.c SPDX: license tags: CDDL-1.0 2025-04-16 09:59:44 -07:00
spl_sunddi.c SPDX: license tags: BSD-2-Clause 2025-04-16 09:59:44 -07:00
spl_sysevent.c SPDX: license tags: BSD-2-Clause 2025-04-16 09:59:44 -07:00
spl_taskq.c SPDX: license tags: BSD-2-Clause 2025-04-16 09:59:44 -07:00
spl_uio.c SPDX: license tags: CDDL-1.0 2025-04-16 09:59:44 -07:00
spl_vfs.c spl_vfs: fix vrele task runner signature mismatch 2025-04-16 09:59:45 -07:00
spl_vm.c FreeBSD: zfs_putpages: don't undirty pages until after write completes 2025-08-12 22:41:17 -04:00
spl_zlib.c SPDX: license tags: BSD-2-Clause 2025-04-16 09:59:44 -07:00
spl_zone.c SPDX: license tags: BSD-2-Clause 2025-04-16 09:59:44 -07:00