mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -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
19 lines
376 B
Makefile
19 lines
376 B
Makefile
ZFSTOP= ${SRCTOP}/sys/contrib/openzfs
|
|
|
|
.PATH: ${ZFSTOP}/scripts
|
|
|
|
PACKAGE= zfs
|
|
SCRIPTS= zfs_prepare_disk
|
|
SCRIPTSDIR= ${LIBEXECDIR}/zfs
|
|
|
|
.PATH: ${ZFSTOP}/man/man8
|
|
MAN= zfs_prepare_disk.8
|
|
|
|
CLEANFILES+= zfs_prepare_disk.8
|
|
|
|
zfs_prepare_disk.8: zfs_prepare_disk.8.in
|
|
sed ${MAN_SUB} ${.ALLSRC} >${.TARGET}
|
|
|
|
MAN_SUB+= -e 's|@zfsexecdir@|${LIBEXECDIR}/zfs|g'
|
|
|
|
.include <bsd.prog.mk>
|