mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
OpenZFS release 2.2.1 Notable upstream pull request merges: #143786d693e20aLarge sync writes perform worse with slog #1524378fd79eacAdd zfs_prepare_disk script for disk firmware install #15356b76724ae4FreeBSD: Improve taskq wrapper #15360f9a9aea12Add mutex_enter_interruptible() for interruptible sleeping IOCTLs #15371e82e68400DMU: Do not pre-read holes during write #1539079f7de575Remove lock from dsl_pool_need_dirty_delay() #153976e41aca51Trust ARC_BUF_SHARED() more #15402eaa62d995Properly pad struct tx_cpu to cache line #154051cc1bf4faSet spa_ccw_fail_time=0 when expanding a vdev #15416edebca5dfFreeBSD: taskq: Remove unused declaration #154517aef672b7Read prefetched buffers from L2ARC #15452bd7a02c25Tune zio buffer caches and their alignments #154563ec4ea68dUnify arc_prune_async() code #15465459c99ff2Fix block cloning between unencrypted and encrypted datasets #1547876663fe37Fix accounting error for pending sync IO ops in zpool iostat #1552987e9e8286Add a tunable to disable BRT support Obtained from: OpenZFS OpenZFS commit:55dd24c4ccOpenZFS tag: zfs-2.2.1
17 lines
611 B
Bash
Executable file
17 lines
611 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# This is an optional helper script that is automatically called by libzfs
|
|
# before a disk is about to be added into the pool. It can be modified by
|
|
# the user to run whatever commands are necessary to prepare a disk for
|
|
# inclusion into the pool. For example, users can add lines to this
|
|
# script to do things like update the drive's firmware or check the drive's
|
|
# health. The script is optional and can be removed if it is not needed.
|
|
#
|
|
# See the zfs_prepare_disk(8) man page for details.
|
|
#
|
|
# Example:
|
|
#
|
|
# echo "Prepare disk $VDEV_PATH ($VDEV_UPATH) for $VDEV_PREPARE in $POOL_NAME"
|
|
#
|
|
|
|
exit 0
|