mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -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
118 lines
3 KiB
Makefile
118 lines
3 KiB
Makefile
if CONFIG_KERNEL
|
|
kernel_linuxdir = $(kerneldir)/linux
|
|
kernel_linux_HEADERS = \
|
|
%D%/kernel/linux/blkdev_compat.h \
|
|
%D%/kernel/linux/compiler_compat.h \
|
|
%D%/kernel/linux/dcache_compat.h \
|
|
%D%/kernel/linux/kmap_compat.h \
|
|
%D%/kernel/linux/mm_compat.h \
|
|
%D%/kernel/linux/mod_compat.h \
|
|
%D%/kernel/linux/page_compat.h \
|
|
%D%/kernel/linux/percpu_compat.h \
|
|
%D%/kernel/linux/simd.h \
|
|
%D%/kernel/linux/simd_aarch64.h \
|
|
%D%/kernel/linux/simd_arm.h \
|
|
%D%/kernel/linux/simd_powerpc.h \
|
|
%D%/kernel/linux/simd_x86.h \
|
|
%D%/kernel/linux/utsname_compat.h \
|
|
%D%/kernel/linux/vfs_compat.h \
|
|
%D%/kernel/linux/xattr_compat.h
|
|
|
|
kernel_sysdir = $(kerneldir)/sys
|
|
kernel_sys_HEADERS = \
|
|
%D%/zfs/sys/policy.h \
|
|
%D%/zfs/sys/trace_acl.h \
|
|
%D%/zfs/sys/trace_arc.h \
|
|
%D%/zfs/sys/trace_common.h \
|
|
%D%/zfs/sys/trace_dbgmsg.h \
|
|
%D%/zfs/sys/trace_dbuf.h \
|
|
%D%/zfs/sys/trace_dmu.h \
|
|
%D%/zfs/sys/trace_dnode.h \
|
|
%D%/zfs/sys/trace_multilist.h \
|
|
%D%/zfs/sys/trace_rrwlock.h \
|
|
%D%/zfs/sys/trace_txg.h \
|
|
%D%/zfs/sys/trace_vdev.h \
|
|
%D%/zfs/sys/trace_zfs.h \
|
|
%D%/zfs/sys/trace_zil.h \
|
|
%D%/zfs/sys/trace_zio.h \
|
|
%D%/zfs/sys/trace_zrlock.h \
|
|
%D%/zfs/sys/zfs_bootenv_os.h \
|
|
%D%/zfs/sys/zfs_context_os.h \
|
|
%D%/zfs/sys/zfs_ctldir.h \
|
|
%D%/zfs/sys/zfs_dir.h \
|
|
%D%/zfs/sys/zfs_vfsops_os.h \
|
|
%D%/zfs/sys/zfs_vnops_os.h \
|
|
%D%/zfs/sys/zfs_znode_impl.h \
|
|
%D%/zfs/sys/zpl.h
|
|
|
|
kernel_spl_rpcdir = $(kerneldir)/spl/rpc
|
|
kernel_spl_rpc_HEADERS = \
|
|
%D%/spl/rpc/types.h \
|
|
%D%/spl/rpc/xdr.h
|
|
|
|
kernel_spl_sysdir = $(kerneldir)/spl/sys
|
|
kernel_spl_sys_HEADERS = \
|
|
%D%/spl/sys/acl.h \
|
|
%D%/spl/sys/atomic.h \
|
|
%D%/spl/sys/byteorder.h \
|
|
%D%/spl/sys/callb.h \
|
|
%D%/spl/sys/callo.h \
|
|
%D%/spl/sys/cmn_err.h \
|
|
%D%/spl/sys/condvar.h \
|
|
%D%/spl/sys/cred.h \
|
|
%D%/spl/sys/ctype.h \
|
|
%D%/spl/sys/debug.h \
|
|
%D%/spl/sys/disp.h \
|
|
%D%/spl/sys/dkio.h \
|
|
%D%/spl/sys/errno.h \
|
|
%D%/spl/sys/fcntl.h \
|
|
%D%/spl/sys/file.h \
|
|
%D%/spl/sys/inttypes.h \
|
|
%D%/spl/sys/isa_defs.h \
|
|
%D%/spl/sys/kmem.h \
|
|
%D%/spl/sys/kmem_cache.h \
|
|
%D%/spl/sys/kstat.h \
|
|
%D%/spl/sys/list.h \
|
|
%D%/spl/sys/misc.h \
|
|
%D%/spl/sys/mod_os.h \
|
|
%D%/spl/sys/mutex.h \
|
|
%D%/spl/sys/param.h \
|
|
%D%/spl/sys/proc.h \
|
|
%D%/spl/sys/processor.h \
|
|
%D%/spl/sys/procfs_list.h \
|
|
%D%/spl/sys/random.h \
|
|
%D%/spl/sys/rwlock.h \
|
|
%D%/spl/sys/shrinker.h \
|
|
%D%/spl/sys/sid.h \
|
|
%D%/spl/sys/signal.h \
|
|
%D%/spl/sys/simd.h \
|
|
%D%/spl/sys/stat.h \
|
|
%D%/spl/sys/string.h \
|
|
%D%/spl/sys/sunddi.h \
|
|
%D%/spl/sys/sysmacros.h \
|
|
%D%/spl/sys/systeminfo.h \
|
|
%D%/spl/sys/taskq.h \
|
|
%D%/spl/sys/thread.h \
|
|
%D%/spl/sys/time.h \
|
|
%D%/spl/sys/timer.h \
|
|
%D%/spl/sys/trace.h \
|
|
%D%/spl/sys/trace_spl.h \
|
|
%D%/spl/sys/trace_taskq.h \
|
|
%D%/spl/sys/tsd.h \
|
|
%D%/spl/sys/types.h \
|
|
%D%/spl/sys/types32.h \
|
|
%D%/spl/sys/uio.h \
|
|
%D%/spl/sys/user.h \
|
|
%D%/spl/sys/vfs.h \
|
|
%D%/spl/sys/vmem.h \
|
|
%D%/spl/sys/vmsystm.h \
|
|
%D%/spl/sys/vnode.h \
|
|
%D%/spl/sys/wait.h \
|
|
%D%/spl/sys/wmsum.h \
|
|
%D%/spl/sys/zmod.h \
|
|
%D%/spl/sys/zone.h
|
|
|
|
kernel_spl_ia32dir = $(kernel_spl_sysdir)/ia32
|
|
kernel_spl_ia32_HEADERS = \
|
|
%D%/spl/sys/ia32/asm_linkage.h
|
|
endif
|