mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Notable upstream pull request merges:
#13782 Fix setting the large_block feature after receiving a snapshot
#14157 FreeBSD: stop using buffer cache-only routines on sync
#14172 zed: post a udev change event from spa_vdev_attach()
#14181 zed: unclean disk attachment faults the vdev
#14190 Bump checksum error counter before reporting to ZED
#14196 Remove atomics from zh_refcount
#14197 Don't leak packed recieved proprties
#14198 Switch dnode stats to wmsums
#14199 Remove few pointer dereferences in dbuf_read()
#14200 Micro-optimize zrl_remove()
#14204 Lua: Fix bad bitshift in lua_strx2number()
#14212 Zstd fixes
#14218 Avoid a null pointer dereference in zfs_mount() on FreeBSD
#14235 nopwrites on dmu_sync-ed blocks can result in a panic
#14236 zio can deadlock during device removal
#14247 Micro-optimize fletcher4 calculations
#14261 FreeBSD: zfs_register_callbacks() must implement error check
correctly
Obtained from: OpenZFS
OpenZFS commit: 59493b63c1
22 lines
657 B
Bash
22 lines
657 B
Bash
#!/bin/sh
|
|
|
|
# Directories
|
|
export BIN_DIR=
|
|
export SBIN_DIR=
|
|
export LIBEXEC_DIR=
|
|
export ZTS_DIR=
|
|
export SCRIPT_DIR=
|
|
|
|
# General commands
|
|
export ZDB="${ZDB:-$SBIN_DIR/zdb}"
|
|
export ZFS="${ZFS:-$SBIN_DIR/zfs}"
|
|
export ZPOOL="${ZPOOL:-$SBIN_DIR/zpool}"
|
|
export ZTEST="${ZTEST:-$SBIN_DIR/ztest}"
|
|
export ZFS_SH="${ZFS_SH:-$SCRIPT_DIR/zfs.sh}"
|
|
|
|
# Test Suite
|
|
export RUNFILE_DIR="${RUNFILE_DIR:-$ZTS_DIR/runfiles}"
|
|
export TEST_RUNNER="${TEST_RUNNER:-$ZTS_DIR/test-runner/bin/test-runner.py}"
|
|
export ZTS_REPORT="${ZTS_REPORT:-$ZTS_DIR/test-runner/bin/zts-report.py}"
|
|
export STF_TOOLS="${STF_TOOLS:-$ZTS_DIR/test-runner}"
|
|
export STF_SUITE="${STF_SUITE:-$ZTS_DIR/zfs-tests}"
|