mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
OpenZFS release 2.2.4 Notable upstream pull request merges: #15076fdd97e009Refactor dmu_prefetch() #152255972bb856Use ASSERT0P() to check that a pointer is NULL #153817ea833100ZIL: Detect single-threaded workloads #155158b1a132deZIO: Optimize zio_flush() #15225d6da6cbd7Clean up existing VERIFY*() macros #152255dda8c091Add VERIFY0P() and ASSERT0P() macros #1543661f3638a3Add prefetch property #155096f323353dAdd ashift validation when adding devices to a pool #15539ea3f7c12aExtend import_progress kstat with a notes field #1563525ea8ce94ZIL: Improve next log block size prediction #1578416c223eecDo no use .cfi_negate_ra_state within the assembly on Arm64 #15839706307445vdev probe to slow disk can stall mmp write checker #1587986b39b41azpool: Fix locale-specific time #15927fa5de0c5cUpdate resume token at object receive #15941fdd8c0aeaBRT: Skip duplicate BRT prefetches #15942889152ce4Give better message from 'zpool get' with invalid pool name #159503e91a9c52BRT: Skip getting length in brt_entry_lookup() #1595119bf54b76ZAP: Massively switch to _by_dnode() interfaces #15954f7c1db636BRT: Change brt_pending_tree sorting order #15955457e62d7cBRT: Relax brt_pending_apply() locking #15967c94f73007BRT: Make BRT block sizes configurable #15976dced953b6ZAP: Some cleanups/micro-optimizations #15983531572b59Fix panics when truncating/deleting files #159925fc134ff2zvol: use multiple taskq #160072ea370a4eBRT: Fix holes cloning #1600867995229azpool: Fix option string, adding -e and fixing order #160158a5604713Add support for zfs mount -R <filesystem> #16022026fe7964Speculative prefetch for reordered requests #16040575872cc3L2ARC: Relax locking during write #16042d5fb6abd3Improve dbuf_read() error reporting #160515d859a2e2xdr: header cleanup #16052602b5dca7Fix read errors race after block cloning #1605797d7228f4Remove db_state DB_NOFILL checks from syncing context #16072f4ce02ae4Small fix to prefetch ranges aggregation #1607497889c037return NULL at end of send_progress_thread #160867aaf6ce9dAdd the BTI elf note to the AArch64 SHA2 assembly #160944d17e200dAdd zfetch stats in arcstats #161283d4d61988Fix updating the zvol_htable when renaming a zvol #16141b3b37b84eFix arcstats for FreeBSD after zfetch support Obtained from: OpenZFS OpenZFS commit:2566592045OpenZFS tag: zfs-2.2.4
30 lines
815 B
Makefile
30 lines
815 B
Makefile
|
|
.PATH: ${SRCTOP}/sys/contrib/openzfs/module/nvpair
|
|
.PATH: ${SRCTOP}/sys/contrib/openzfs/lib/libnvpair
|
|
.PATH: ${SRCTOP}/sys/contrib/openzfs/include
|
|
|
|
LIB= nvpair
|
|
LIBADD= spl
|
|
|
|
PACKAGE= zfs
|
|
# user
|
|
INCS= libnvpair.h
|
|
SRCS= libnvpair.c \
|
|
libnvpair_json.c \
|
|
nvpair_alloc_system.c
|
|
# kernel
|
|
SRCS+= nvpair_alloc_fixed.c \
|
|
nvpair.c \
|
|
fnvpair.c
|
|
|
|
WARNS?= 2
|
|
CFLAGS+= -DIN_BASE -DHAVE_RPC_TYPES
|
|
CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/include
|
|
CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/lib/libspl/include/
|
|
CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/lib/libspl/include/os/freebsd
|
|
CFLAGS+= -I${SRCTOP}/sys
|
|
CFLAGS+= -I${SRCTOP}/cddl/compat/opensolaris/include
|
|
CFLAGS+= -include ${SRCTOP}/sys/contrib/openzfs/include/os/freebsd/spl/sys/ccompile.h
|
|
CFLAGS+= -DHAVE_ISSETUGID -DHAVE_CONFIG_H -DHAVE_XDR_BYTESREC
|
|
|
|
.include <bsd.lib.mk>
|