git: ce4dcb97ca43 - main - zfs: merge openzfs/zfs@9c56b8ec7

From: Martin Matuska <mm_at_FreeBSD.org>
Date: Sat, 10 Aug 2024 10:47:35 UTC
The branch main has been updated by mm:

URL: https://cgit.FreeBSD.org/src/commit/?id=ce4dcb97ca433b2a2f03fbae957dae0ff16f6f51

commit ce4dcb97ca433b2a2f03fbae957dae0ff16f6f51
Merge: 54a543d5ea3a 9c56b8ec7855
Author:     Martin Matuska <mm@FreeBSD.org>
AuthorDate: 2024-08-10 09:15:30 +0000
Commit:     Martin Matuska <mm@FreeBSD.org>
CommitDate: 2024-08-10 09:43:43 +0000

    zfs: merge openzfs/zfs@9c56b8ec7
    
    Notable upstream pull request merges:
     #15817 5536c0dee Sync AUX label during pool import
     #15889 c7ada64bb ddt: dedup table quota enforcement
     #15890 62e7d3c89 ddt: add support for prefetching tables into the ARC
     #15894 e26b3771e spa_preferred_class: pass the entire zio
     #15894 d54d0fff3 dnode: allow storage class to be overridden by object type
     #16197 55427add3 Several improvements to ARC shrinking
     #16217 -multiple JSON output for various zfs and zpool subcommands
     #16248 24e6585e7 libzfs.h: Set ZFS_MAXPROPLEN and ZPOOL_MAXPROPLEN
                      to ZAP_MAXVALUELEN
     #16264 9dfc5c4a0 Fix long_free_dirty accounting for small files
     #16268 ed0db1cc8 Make txg_wait_synced conditional in zfsvfs_teardown,
                      for FreeBSD
     #16288 d60debbf5 Fix sa_add_projid to lookup and update SA_ZPL_DXATTR
     #16308 ec580bc52 zfs: add bounds checking to zil_parse
     #16310 c21dc56ea Fix zdb_dump_block for little endian
     #16315 7ddc1f737 zil: add stats for commit failure/fallback
     #16326 b0bf14cdb abd: lift ABD zero scan from zio_compress_data()
                      to abd_cmp_zero()
     #16337 c8184d714 Block cloning conditionally destroy ARC buffer
     #16338 dbe07928b Add support for multiple lines to the sharenfs property
                      for FreeBSD
     #16374 1a3e32e6a Cleanup DB_DNODE() macros usage
     #16374 ed87d456e Skip dnode handles use when not needed
     #16346 fb6d8cf22 Add some missing vdev properties
     #16364 670147be5 zvol: ensure device minors are properly cleaned up
     #16382 dea8fabf7 FreeBSD: Fix RLIMIT_FSIZE handling for block cloning
     #16387 aef452f10 Improve zfs_blkptr_verify()
     #16395 cbcb52243 Fix the names of some FreeBSD sysctls in
                      include/tunables.cfg
     #16401 5b9f3b766 Soften pruning threshold on not evictable metadata
     #16404 cdd53fea1 FreeBSD: Add missing memory reclamation accounting
     #16404 1fdcb653b Once more refactor arc_summary output
     #16419 1f5bf91a8 Fix memory corruption during parallel zpool import
                      with -o cachefile
     #16426 cf6e8b218 zstream: remove duplicate highbit64 definition
    
    Obtained from:  OpenZFS
    OpenZFS commit: 9c56b8ec7855119c8948c551ee28086a11465a56

 cddl/sbin/zpool/Makefile                           |    1 +
 .../openzfs/.github/workflows/zfs-linux-tests.yml  |    4 +-
 sys/contrib/openzfs/.mailmap                       |    6 +
 sys/contrib/openzfs/AUTHORS                        |   13 +
 sys/contrib/openzfs/README.md                      |    2 +-
 sys/contrib/openzfs/cmd/arc_summary                |  147 +-
 sys/contrib/openzfs/cmd/zdb/zdb.c                  |   29 +-
 sys/contrib/openzfs/cmd/zfs/zfs_main.c             |  428 +++-
 sys/contrib/openzfs/cmd/zilstat.in                 |    3 +
 sys/contrib/openzfs/cmd/zpool/zpool_main.c         | 2507 +++++++++++++++++---
 sys/contrib/openzfs/cmd/zstream/zstream_redup.c    |    9 -
 sys/contrib/openzfs/cmd/ztest.c                    |   37 +-
 sys/contrib/openzfs/config/Rules.am                |    2 +-
 .../openzfs/contrib/bash_completion.d/.gitignore   |    1 +
 .../openzfs/contrib/bash_completion.d/Makefile.am  |   13 +-
 .../contrib/debian/openzfs-zfsutils.install        |    1 +
 sys/contrib/openzfs/include/libzfs.h               |   28 +-
 sys/contrib/openzfs/include/libzfs_core.h          |    3 +
 .../openzfs/include/os/freebsd/spl/sys/ccompat.h   |   42 -
 .../openzfs/include/os/freebsd/spl/sys/kmem.h      |    1 +
 .../openzfs/include/os/freebsd/spl/sys/policy.h    |    6 -
 .../openzfs/include/os/freebsd/spl/sys/proc.h      |    3 -
 .../openzfs/include/os/freebsd/spl/sys/random.h    |    4 +-
 .../openzfs/include/os/freebsd/spl/sys/vm.h        |   16 -
 .../openzfs/include/os/freebsd/spl/sys/vnode.h     |   14 +-
 .../include/os/freebsd/zfs/sys/zfs_vfsops_os.h     |   77 -
 .../openzfs/include/os/linux/spl/sys/kmem_cache.h  |    5 +-
 sys/contrib/openzfs/include/sys/abd.h              |    7 +
 sys/contrib/openzfs/include/sys/arc.h              |   11 +
 sys/contrib/openzfs/include/sys/arc_impl.h         |    4 +-
 sys/contrib/openzfs/include/sys/dbuf.h             |   16 +-
 sys/contrib/openzfs/include/sys/ddt.h              |    9 +-
 sys/contrib/openzfs/include/sys/ddt_impl.h         |    1 +
 sys/contrib/openzfs/include/sys/dmu.h              |    8 +
 sys/contrib/openzfs/include/sys/dnode.h            |    5 +
 sys/contrib/openzfs/include/sys/fs/zfs.h           |   28 +
 sys/contrib/openzfs/include/sys/sa_impl.h          |    1 -
 sys/contrib/openzfs/include/sys/spa.h              |    6 +-
 sys/contrib/openzfs/include/sys/spa_impl.h         |    4 +
 sys/contrib/openzfs/include/sys/zap.h              |    1 +
 sys/contrib/openzfs/include/sys/zfs_context.h      |    1 +
 sys/contrib/openzfs/include/sys/zil.h              |   18 +
 sys/contrib/openzfs/include/sys/zio.h              |    1 +
 sys/contrib/openzfs/include/sys/zvol_impl.h        |   18 +-
 sys/contrib/openzfs/lib/libshare/os/freebsd/nfs.c  |   71 +-
 .../openzfs/lib/libspl/include/statcommon.h        |    4 +
 sys/contrib/openzfs/lib/libspl/timestamp.c         |   42 +
 sys/contrib/openzfs/lib/libuutil/libuutil.abi      |   14 +
 sys/contrib/openzfs/lib/libzfs/libzfs.abi          |  127 +-
 sys/contrib/openzfs/lib/libzfs/libzfs_impl.h       |    3 +
 sys/contrib/openzfs/lib/libzfs/libzfs_pool.c       |  232 +-
 sys/contrib/openzfs/lib/libzfs/libzfs_util.c       |  168 ++
 .../openzfs/lib/libzfs_core/libzfs_core.abi        |   27 +
 sys/contrib/openzfs/lib/libzfs_core/libzfs_core.c  |   20 +
 sys/contrib/openzfs/man/Makefile.am                |    1 +
 sys/contrib/openzfs/man/man4/zfs.4                 |    7 +
 sys/contrib/openzfs/man/man7/vdevprops.7           |   10 +-
 sys/contrib/openzfs/man/man7/zfsprops.7            |   14 +-
 sys/contrib/openzfs/man/man7/zpoolprops.7          |   31 +-
 sys/contrib/openzfs/man/man8/zfs-list.8            |  161 ++
 sys/contrib/openzfs/man/man8/zfs-mount.8           |    6 +
 sys/contrib/openzfs/man/man8/zfs-set.8             |   51 +
 sys/contrib/openzfs/man/man8/zfs.8                 |    5 +
 sys/contrib/openzfs/man/man8/zpool-get.8           |   17 +
 sys/contrib/openzfs/man/man8/zpool-list.8          |  107 +
 sys/contrib/openzfs/man/man8/zpool-prefetch.8      |   46 +
 sys/contrib/openzfs/man/man8/zpool-status.8        |  185 +-
 sys/contrib/openzfs/man/man8/zpool.8               |   10 +-
 sys/contrib/openzfs/module/Kbuild.in               |    1 +
 .../openzfs/module/os/freebsd/spl/spl_kmem.c       |    8 -
 .../openzfs/module/os/freebsd/spl/spl_policy.c     |   52 +-
 .../openzfs/module/os/freebsd/spl/spl_taskq.c      |    5 -
 .../openzfs/module/os/freebsd/spl/spl_vfs.c        |   12 +-
 .../openzfs/module/os/freebsd/spl/spl_zone.c       |    4 +-
 sys/contrib/openzfs/module/os/freebsd/zfs/abd_os.c |    2 +-
 sys/contrib/openzfs/module/os/freebsd/zfs/arc_os.c |   19 +-
 .../openzfs/module/os/freebsd/zfs/crypto_os.c      |  249 --
 sys/contrib/openzfs/module/os/freebsd/zfs/dmu_os.c |   27 +-
 .../openzfs/module/os/freebsd/zfs/event_os.c       |   19 -
 .../openzfs/module/os/freebsd/zfs/kmod_core.c      |    4 -
 .../openzfs/module/os/freebsd/zfs/vdev_geom.c      |    4 -
 .../openzfs/module/os/freebsd/zfs/zfs_ctldir.c     |   28 +-
 .../openzfs/module/os/freebsd/zfs/zfs_dir.c        |    4 +-
 .../openzfs/module/os/freebsd/zfs/zfs_file_os.c    |   10 +-
 .../openzfs/module/os/freebsd/zfs/zfs_ioctl_os.c   |    4 -
 .../openzfs/module/os/freebsd/zfs/zfs_vfsops.c     |   49 +-
 .../openzfs/module/os/freebsd/zfs/zfs_vnops_os.c   |  299 +--
 .../openzfs/module/os/freebsd/zfs/zfs_znode.c      |   19 +-
 .../openzfs/module/os/freebsd/zfs/zvol_os.c        |   18 +-
 .../openzfs/module/os/linux/spl/spl-kmem-cache.c   |    8 +
 sys/contrib/openzfs/module/os/linux/spl/spl-zlib.c |    2 +-
 sys/contrib/openzfs/module/os/linux/zfs/abd_os.c   |    6 +-
 sys/contrib/openzfs/module/os/linux/zfs/arc_os.c   |   88 +-
 .../openzfs/module/os/linux/zfs/zfs_vfsops.c       |   18 +-
 .../openzfs/module/os/linux/zfs/zfs_znode.c        |    3 +-
 sys/contrib/openzfs/module/os/linux/zfs/zvol_os.c  |   23 +-
 sys/contrib/openzfs/module/zcommon/zpool_prop.c    |   20 +-
 sys/contrib/openzfs/module/zfs/abd.c               |   25 +
 sys/contrib/openzfs/module/zfs/arc.c               |  230 +-
 sys/contrib/openzfs/module/zfs/dbuf.c              |   35 +-
 sys/contrib/openzfs/module/zfs/ddt.c               |  160 +-
 sys/contrib/openzfs/module/zfs/ddt_stats.c         |   79 +-
 sys/contrib/openzfs/module/zfs/ddt_zap.c           |    7 +
 sys/contrib/openzfs/module/zfs/dmu.c               |  281 ++-
 sys/contrib/openzfs/module/zfs/dmu_tx.c            |    5 +-
 sys/contrib/openzfs/module/zfs/dnode.c             |   34 +-
 sys/contrib/openzfs/module/zfs/lz4_zfs.c           |    3 +-
 sys/contrib/openzfs/module/zfs/sa.c                |   88 +-
 sys/contrib/openzfs/module/zfs/spa.c               |   75 +-
 sys/contrib/openzfs/module/zfs/spa_misc.c          |   29 +-
 sys/contrib/openzfs/module/zfs/vdev.c              |   18 +
 sys/contrib/openzfs/module/zfs/vdev_label.c        |  123 +-
 sys/contrib/openzfs/module/zfs/zap_micro.c         |   16 +
 sys/contrib/openzfs/module/zfs/zfs_ioctl.c         |   98 +-
 sys/contrib/openzfs/module/zfs/zfs_log.c           |    2 +-
 sys/contrib/openzfs/module/zfs/zfs_replay.c        |    4 +-
 sys/contrib/openzfs/module/zfs/zil.c               |   40 +-
 sys/contrib/openzfs/module/zfs/zio.c               |  104 +-
 sys/contrib/openzfs/module/zfs/zio_compress.c      |   28 +-
 sys/contrib/openzfs/module/zfs/zvol.c              |  116 +-
 sys/contrib/openzfs/rpm/generic/zfs.spec.in        |    1 +
 sys/contrib/openzfs/tests/runfiles/common.run      |   17 +-
 sys/contrib/openzfs/tests/runfiles/linux.run       |    2 +-
 .../tests/test-runner/bin/test-runner.py.in        |    2 +-
 .../openzfs/tests/test-runner/bin/zts-report.py.in |    7 +-
 .../openzfs/tests/zfs-tests/cmd/mmap_seek.c        |   10 +
 .../openzfs/tests/zfs-tests/include/commands.cfg   |    1 +
 .../openzfs/tests/zfs-tests/include/tunables.cfg   |    7 +-
 .../openzfs/tests/zfs-tests/tests/Makefile.am      |   11 +
 .../block_cloning/block_cloning_rlimit_fsize.ksh   |   64 +
 .../tests/functional/cli_root/json/cleanup.ksh     |   31 +
 .../tests/functional/cli_root/json/json_sanity.ksh |   57 +
 .../tests/functional/cli_root/json/setup.ksh       |   50 +
 .../cli_root/zfs_clone/zfs_clone_010_pos.ksh       |   10 +-
 .../cli_root/zfs_copies/zfs_copies.kshlib          |   20 +-
 .../functional/cli_root/zpool_get/vdev_get.cfg     |    3 +
 .../functional/cli_root/zpool_get/zpool_get.cfg    |    2 +
 .../functional/cli_root/zpool_prefetch/cleanup.ksh |   30 +
 .../functional/cli_root/zpool_prefetch/setup.ksh   |   32 +
 .../zpool_prefetch/zpool_prefetch_001_pos.ksh      |  128 +
 .../cli_root/zpool_set/user_property_001_pos.ksh   |   16 +-
 .../cli_root/zpool_set/user_property_002_neg.ksh   |   28 +-
 .../tests/functional/cp_files/cp_stress.ksh        |    9 +-
 .../tests/functional/cp_files/seekflood.c          |    7 +
 .../zfs-tests/tests/functional/dedup/cleanup.ksh   |   29 +
 .../tests/functional/dedup/dedup_quota.ksh         |  223 ++
 .../zfs-tests/tests/functional/dedup/setup.ksh     |   31 +
 .../zfs-tests/tests/functional/history/history.cfg |    6 +-
 .../zfs-tests/tests/functional/io/io_uring.ksh     |    6 +-
 .../upgrade/upgrade_projectquota_002_pos.ksh       |   80 +
 .../functional/zvol/zvol_misc/zvol_misc_fua.ksh    |    9 -
 .../functional/zvol/zvol_misc/zvol_misc_trim.ksh   |    9 -
 sys/modules/zfs/zfs_config.h                       |    4 +-
 sys/modules/zfs/zfs_gitrev.h                       |    2 +-
 154 files changed, 6493 insertions(+), 1956 deletions(-)

diff --cc cddl/sbin/zpool/Makefile
index ffe180ae1f9c,000000000000..aaa2c51016ad
mode 100644,000000..100644
--- a/cddl/sbin/zpool/Makefile
+++ b/cddl/sbin/zpool/Makefile
@@@ -1,79 -1,0 +1,80 @@@
 +ZFSTOP=	${SRCTOP}/sys/contrib/openzfs
 +
 +.PATH: ${ZFSTOP}/man/man4
 +.PATH: ${ZFSTOP}/man/man5
 +.PATH: ${ZFSTOP}/man/man7
 +.PATH: ${ZFSTOP}/man/man8
 +.PATH: ${ZFSTOP}/cmd/zpool
 +.PATH: ${ZFSTOP}/cmd/zpool/os/freebsd
 +
 +
 +PACKAGE=	zfs
 +PROG=	zpool
 +MAN= \
 +	spl.4 \
 +	vdevprops.7 \
 +	zfs.4 \
 +	zpool.8 \
 +	zpool-add.8 \
 +	zpool-attach.8 \
 +	zpool-checkpoint.8 \
 +	zpool-clear.8 \
 +	zpool-create.8 \
 +	zpool-destroy.8 \
 +	zpool-detach.8 \
 +	zpool-events.8 \
 +	zpool-export.8 \
 +	zpool-features.7 \
 +	zpool-get.8 \
 +	zpool-history.8 \
 +	zpool-import.8 \
 +	zpool-initialize.8 \
 +	zpool-iostat.8 \
 +	zpool-labelclear.8 \
 +	zpool-list.8 \
 +	zpool-offline.8 \
++	zpool-prefetch.8 \
 +	zpool-reguid.8 \
 +	zpool-remove.8 \
 +	zpool-reopen.8 \
 +	zpool-replace.8 \
 +	zpool-resilver.8 \
 +	zpool-scrub.8 \
 +	zpool-split.8 \
 +	zpool-status.8 \
 +	zpool-sync.8 \
 +	zpool-trim.8 \
 +	zpool-upgrade.8 \
 +	zpool-wait.8 \
 +	zpoolconcepts.7 \
 +	zpoolprops.7
 +MLINKS= \
 +	zpool-offline.8 zpool-online.8 \
 +	zpool-get.8 zpool-set.8
 +SRCS= \
 +	zpool_iter.c \
 +	zpool_main.c \
 +	zpool_util.c \
 +	zpool_util.h \
 +	zpool_vdev.c \
 +	zpool_vdev_os.c
 +
 +WARNS?=	2
 +
 +CFLAGS+= \
 +	-DIN_BASE \
 +	-I${ZFSTOP}/include \
 +	-I${ZFSTOP}/lib/libspl/include \
 +	-I${ZFSTOP}/lib/libspl/include/os/freebsd \
 +	-I${SRCTOP}/sys \
 +	-I${SRCTOP}/cddl/compat/opensolaris/include \
 +	-I${ZFSTOP}/cmd/zpool \
 +	-include ${ZFSTOP}/include/os/freebsd/spl/sys/ccompile.h \
 +	-DHAVE_ISSETUGID \
 +	-include ${SRCTOP}/sys/modules/zfs/zfs_config.h \
 +	-DSYSCONFDIR=\"/etc\" \
 +	-DPKGDATADIR=\"/usr/share/zfs\"
 +
 +LIBADD=	geom nvpair uutil zfs zutil avl spl tpool zfs_core m
 +LDADD+= 	-pthread
 +.include <bsd.prog.mk>
diff --cc sys/contrib/openzfs/.mailmap
index 32bdb5209613,000000000000..7e17d82d7352
mode 100644,000000..100644
--- a/sys/contrib/openzfs/.mailmap
+++ b/sys/contrib/openzfs/.mailmap
@@@ -1,207 -1,0 +1,213 @@@
 +# This file maps the name+email seen in a commit back to a canonical
 +# name+email. Git will replace the commit name/email with the canonical version
 +# wherever it sees it.
 +#
 +# If there is a commit in the history with a "wrong" name or email, list it
 +# here. If you regularly commit with an alternate name or email address and
 +# would like to ensure that you are always listed consistently in the repo, add
 +# mapping here.
 +#
 +# On the other hand, if you use multiple names or email addresses legitimately
 +# (eg you use a company email address for your paid OpenZFS work, and a
 +# personal address for your evening side projects), then don't map one to the
 +# other here.
 +#
 +# The most common formats are:
 +#
 +# Canonical Name <canonical-email>
 +# Canonical Name <canonical-email> <commit-email>
 +# Canonical Name <canonical-email> Commit Name <commit-email>
 +#
 +# See https://git-scm.com/docs/gitmailmap for more info.
 +
 +# These maps are making names consistent where they have varied but the email
 +# address has never changed. In most cases, the full name is in the
 +# Signed-off-by of a commit with a matching author.
 +Ahelenia Ziemiańska <nabijaczleweli@gmail.com>
 +Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz>
 +Alex John <alex@stty.io>
 +Andreas Dilger <adilger@dilger.ca>
 +Andrew Walker <awalker@ixsystems.com>
 +Benedikt Neuffer <github@itfriend.de>
 +Chengfei Zhu <chengfeix.zhu@intel.com>
 +ChenHao Lu <18302010006@fudan.edu.cn>
 +Chris Lindee <chris.lindee+github@gmail.com>
 +Colm Buckley <colm@tuatha.org>
 +Crag Wang <crag0715@gmail.com>
 +Damian Szuberski <szuberskidamian@gmail.com>
 +Daniel Kolesa <daniel@octaforge.org>
 +Debabrata Banerjee <dbavatar@gmail.com>
 +Finix Yan <yanchongwen@hotmail.com>
 +Gaurav Kumar <gauravk.18@gmail.com>
 +Gionatan Danti <g.danti@assyoma.it>
 +Glenn Washburn <development@efficientek.com>
 +Gordan Bobic <gordan.bobic@gmail.com>
 +Gregory Bartholomew <gregory.lee.bartholomew@gmail.com>
 +hedong zhang <h_d_zhang@163.com>
 +Ilkka Sovanto <github@ilkka.kapsi.fi>
 +InsanePrawn <Insane.Prawny@gmail.com>
 +Jason Cohen <jwittlincohen@gmail.com>
 +Jason Harmening <jason.harmening@gmail.com>
 +Jeremy Faulkner <gldisater@gmail.com>
 +Jinshan Xiong <jinshan.xiong@gmail.com>
 +John Poduska <jpoduska@datto.com>
 +Justin Scholz <git@justinscholz.de>
 +Ka Ho Ng <khng300@gmail.com>
 +Kash Pande <github@tripleback.net>
 +Kay Pedersen <christianpe96@gmail.com>
 +KernelOfTruth <kerneloftruth@gmail.com>
 +Liu Hua <liu.hua130@zte.com.cn>
 +Liu Qing <winglq@gmail.com>
 +loli10K <ezomori.nozomu@gmail.com>
 +Mart Frauenlob <allkind@fastest.cc>
 +Matthias Blankertz <matthias@blankertz.org>
 +Michael Gmelin <grembo@FreeBSD.org>
 +Olivier Mazouffre <olivier.mazouffre@ims-bordeaux.fr>
 +Piotr Kubaj <pkubaj@anongoth.pl>
 +Quentin Zdanis <zdanisq@gmail.com>
 +Roberto Ricci <ricci@disroot.org>
 +Rob Norris <robn@despairlabs.com>
 +Rob Norris <rob.norris@klarasystems.com>
 +Sam Lunt <samuel.j.lunt@gmail.com>
 +Sanjeev Bagewadi <sanjeev.bagewadi@gmail.com>
 +Stoiko Ivanov <github@nomore.at>
 +Tamas TEVESZ <ice@extreme.hu>
 +WHR <msl0000023508@gmail.com>
 +Yanping Gao <yanping.gao@xtaotech.com>
 +Youzhong Yang <youzhong@gmail.com>
 +
 +# Signed-off-by: overriding Author:
++Ryan <errornointernet@envs.net> <error.nointernet@gmail.com>
++Qiuhao Chen <chenqiuhao1997@gmail.com> <haohao0924@126.com>
 +Yuxin Wang <yuxinwang9999@gmail.com> <Bi11gates9999@gmail.com>
++Zhenlei Huang <zlei@FreeBSD.org> <zlei.huang@gmail.com>
 +
 +# Commits from strange places, long ago
 +Brian Behlendorf <behlendorf1@llnl.gov> <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c>
 +Brian Behlendorf <behlendorf1@llnl.gov> <behlendo@fedora-17-amd64.(none)>
 +Brian Behlendorf <behlendorf1@llnl.gov> <behlendo@myhost.(none)>
 +Brian Behlendorf <behlendorf1@llnl.gov> <ubuntu@ip-172-31-16-145.us-west-1.compute.internal>
 +Brian Behlendorf <behlendorf1@llnl.gov> <ubuntu@ip-172-31-20-6.us-west-1.compute.internal>
 +Herb Wartens <wartens2@llnl.gov> <wartens2@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c>
 +Ned Bass <bass6@llnl.gov> <bass6@zeno1.(none)>
 +Tulsi Jain <tulsi.jain@delphix.com> <tulsi.jain@Tulsi-Jains-MacBook-Pro.local>
 +
 +# Mappings from Github no-reply addresses
 +ajs124 <git@ajs124.de> <ajs124@users.noreply.github.com>
 +Alek Pinchuk <apinchuk@axcient.com> <alek-p@users.noreply.github.com>
 +Alexander Lobakin <alobakin@pm.me> <solbjorn@users.noreply.github.com>
 +Alexey Smirnoff <fling@member.fsf.org> <fling-@users.noreply.github.com>
 +Allen Holl <allen.m.holl@gmail.com> <65494904+allen-4@users.noreply.github.com>
++Alphan Yılmaz <alphanyilmaz@gmail.com> <a1ea321@users.noreply.github.com>
 +Ameer Hamza <ahamza@ixsystems.com> <106930537+ixhamza@users.noreply.github.com>
 +Andrew J. Hesford <ajh@sideband.org> <48421688+ahesford@users.noreply.github.com>>
 +Andrew Sun <me@andrewsun.com> <as-com@users.noreply.github.com>
 +Aron Xu <happyaron.xu@gmail.com> <happyaron@users.noreply.github.com>
 +Arun KV <arun.kv@datacore.com> <65647132+arun-kv@users.noreply.github.com>
 +Ben Wolsieffer <benwolsieffer@gmail.com> <lopsided98@users.noreply.github.com>
 +bernie1995 <bernie.pikes@gmail.com> <42413912+bernie1995@users.noreply.github.com>
++Bojan Novković <bnovkov@FreeBSD.org> <72801811+bnovkov@users.noreply.github.com>
 +Boris Protopopov <boris.protopopov@actifio.com> <bprotopopov@users.noreply.github.com>
 +Brad Forschinger <github@bnjf.id.au> <bnjf@users.noreply.github.com>
 +Brandon Thetford <brandon@dodecatec.com> <dodexahedron@users.noreply.github.com>
 +buzzingwires <buzzingwires@outlook.com> <131118055+buzzingwires@users.noreply.github.com>
 +Cedric Maunoury <cedric.maunoury@gmail.com> <38213715+cedricmaunoury@users.noreply.github.com>
 +Charles Suh <charles.suh@gmail.com> <charlessuh@users.noreply.github.com>
 +Chris Peredun <chris.peredun@ixsystems.com> <126915832+chrisperedun@users.noreply.github.com>
 +Dacian Reece-Stremtan <dacianstremtan@gmail.com> <35844628+dacianstremtan@users.noreply.github.com>
 +Damian Szuberski <szuberskidamian@gmail.com> <30863496+szubersk@users.noreply.github.com>
 +Daniel Hiepler <d-git@coderdu.de> <32984777+heeplr@users.noreply.github.com>
 +Daniel Kobras <d.kobras@science-computing.de> <sckobras@users.noreply.github.com>
 +Daniel Reichelt <hacking@nachtgeist.net> <nachtgeist@users.noreply.github.com>
 +David Quigley <david.quigley@intel.com> <dpquigl@users.noreply.github.com>
 +Dennis R. Friedrichsen <dennis.r.friedrichsen@gmail.com> <31087738+dennisfriedrichsen@users.noreply.github.com>
 +Dex Wood <slash2314@gmail.com> <slash2314@users.noreply.github.com>
 +DHE <git@dehacked.net> <DeHackEd@users.noreply.github.com>
 +Dmitri John Ledkov <dimitri.ledkov@canonical.com> <19779+xnox@users.noreply.github.com>
 +Dries Michiels <driesm.michiels@gmail.com> <32487486+driesmp@users.noreply.github.com>
 +Edmund Nadolski <edmund.nadolski@ixsystems.com> <137826107+ednadolski-ix@users.noreply.github.com>
 +Érico Nogueira <erico.erc@gmail.com> <34201958+ericonr@users.noreply.github.com>
 +Fedor Uporov <fuporov.vstack@gmail.com> <60701163+fuporovvStack@users.noreply.github.com>
 +Felix Dörre <felix@dogcraft.de> <felixdoerre@users.noreply.github.com>
 +Felix Neumärker <xdch47@posteo.de> <34678034+xdch47@users.noreply.github.com>
 +Finix Yan <yancw@info2soft.com> <Finix1979@users.noreply.github.com>
 +Gaurav Kumar <gauravk.18@gmail.com> <gaurkuma@users.noreply.github.com>
 +George Gaydarov <git@gg7.io> <gg7@users.noreply.github.com>
 +Georgy Yakovlev <gyakovlev@gentoo.org> <168902+gyakovlev@users.noreply.github.com>
 +Gerardwx <gerardw@alum.mit.edu> <Gerardwx@users.noreply.github.com>
 +Gian-Carlo DeFazio <defazio1@llnl.gov> <defaziogiancarlo@users.noreply.github.com>
 +Giuseppe Di Natale <dinatale2@llnl.gov> <dinatale2@users.noreply.github.com>
 +Hajo Möller <dasjoe@gmail.com> <dasjoe@users.noreply.github.com>
 +Harry Mallon <hjmallon@gmail.com> <1816667+hjmallon@users.noreply.github.com>
 +Hiếu Lê <leorize+oss@disroot.org> <alaviss@users.noreply.github.com>
 +Jake Howard <git@theorangeone.net> <RealOrangeOne@users.noreply.github.com>
 +James Cowgill <james.cowgill@mips.com> <jcowgill@users.noreply.github.com>
 +Jaron Kent-Dobias <jaron@kent-dobias.com> <kentdobias@users.noreply.github.com>
 +Jason King <jason.king@joyent.com> <jasonbking@users.noreply.github.com>
 +Jeff Dike <jdike@akamai.com> <52420226+jdike@users.noreply.github.com>
 +Jitendra Patidar <jitendra.patidar@nutanix.com> <53164267+jsai20@users.noreply.github.com>
 +João Carlos Mendes Luís <jonny@jonny.eng.br> <dioni21@users.noreply.github.com>
 +John Eismeier <john.eismeier@gmail.com> <32205350+jeis2497052@users.noreply.github.com>
 +John L. Hammond <john.hammond@intel.com> <35266395+jhammond-intel@users.noreply.github.com>
 +John-Mark Gurney <jmg@funkthat.com> <jmgurney@users.noreply.github.com>
 +John Ramsden <johnramsden@riseup.net> <johnramsden@users.noreply.github.com>
 +Jonathon Fernyhough <jonathon@m2x.dev> <559369+jonathonf@users.noreply.github.com>
 +Jose Luis Duran <jlduran@gmail.com> <jlduran@users.noreply.github.com>
 +Justin Hibbits <chmeeedalf@gmail.com> <chmeeedalf@users.noreply.github.com>
 +Kevin Greene <kevin.greene@delphix.com> <104801862+kxgreene@users.noreply.github.com>
 +Kevin Jin <lostking2008@hotmail.com> <33590050+jxdking@users.noreply.github.com>
 +Kevin P. Fleming <kevin@km6g.us> <kpfleming@users.noreply.github.com>
 +Krzysztof Piecuch <piecuch@kpiecuch.pl> <3964215+pikrzysztof@users.noreply.github.com>
 +Kyle Evans <kevans@FreeBSD.org> <kevans91@users.noreply.github.com>
 +Laurențiu Nicola <lnicola@dend.ro> <lnicola@users.noreply.github.com>
 +loli10K <ezomori.nozomu@gmail.com> <loli10K@users.noreply.github.com>
 +Lorenz Hüdepohl <dev@stellardeath.org> <lhuedepohl@users.noreply.github.com>
 +Luís Henriques <henrix@camandro.org> <73643340+lumigch@users.noreply.github.com>
 +Marcin Skarbek <git@skarbek.name> <mskarbek@users.noreply.github.com>
 +Matt Fiddaman <github@m.fiddaman.uk> <81489167+matt-fidd@users.noreply.github.com>
 +Maxim Filimonov <che@bein.link> <part1zano@users.noreply.github.com>
 +Max Zettlmeißl <max@zettlmeissl.de> <6818198+maxz@users.noreply.github.com>
 +Michael Niewöhner <foss@mniewoehner.de> <c0d3z3r0@users.noreply.github.com>
 +Michael Zhivich <mzhivich@akamai.com> <33133421+mzhivich@users.noreply.github.com>
 +MigeljanImeri <ImeriMigel@gmail.com> <78048439+MigeljanImeri@users.noreply.github.com>
 +Mo Zhou <cdluminate@gmail.com> <5723047+cdluminate@users.noreply.github.com>
 +Nick Mattis <nickm970@gmail.com> <nmattis@users.noreply.github.com>
 +omni <omni+vagant@hack.org> <79493359+omnivagant@users.noreply.github.com>
 +Pablo Correa Gómez <ablocorrea@hotmail.com> <32678034+pablofsf@users.noreply.github.com>
 +Paul Zuchowski <pzuchowski@datto.com> <31706010+PaulZ-98@users.noreply.github.com>
 +Peter Ashford <ashford@accs.com> <pashford@users.noreply.github.com>
 +Peter Dave Hello <hsu@peterdavehello.org> <PeterDaveHello@users.noreply.github.com>
 +Peter Wirdemo <peter.wirdemo@gmail.com> <4224155+pewo@users.noreply.github.com>
 +Petros Koutoupis <petros@petroskoutoupis.com> <pkoutoupis@users.noreply.github.com>
 +Ping Huang <huangping@smartx.com> <101400146+hpingfs@users.noreply.github.com>
 +Piotr P. Stefaniak <pstef@freebsd.org> <pstef@users.noreply.github.com>
 +Richard Allen <belperite@gmail.com> <33836503+belperite@users.noreply.github.com>
 +Rich Ercolani <rincebrain@gmail.com> <214141+rincebrain@users.noreply.github.com>
 +Rick Macklem <rmacklem@uoguelph.ca> <64620010+rmacklem@users.noreply.github.com>
 +Rob Wing <rob.wing@klarasystems.com> <98866084+rob-wing@users.noreply.github.com>
 +Roman Strashkin <roman.strashkin@nexenta.com> <Ramzec@users.noreply.github.com>
 +Ryan Hirasaki <ryanhirasaki@gmail.com> <4690732+RyanHir@users.noreply.github.com>
 +Samuel Wycliffe J <samwyc@hpe.com> <115969550+samwyc@users.noreply.github.com>
 +Samuel Wycliffe <samuelwycliffe@gmail.com> <50765275+npc203@users.noreply.github.com>
 +Savyasachee Jha <hi@savyasacheejha.com> <savyajha@users.noreply.github.com>
 +Scott Colby <scott@scolby.com> <scolby33@users.noreply.github.com>
 +Sean Eric Fagan <kithrup@mac.com> <kithrup@users.noreply.github.com>
 +Spencer Kinny <spencerkinny1995@gmail.com> <30333052+Spencer-Kinny@users.noreply.github.com>
 +Srikanth N S <srikanth.nagasubbaraoseetharaman@hpe.com> <75025422+nssrikanth@users.noreply.github.com>
 +Stefan Lendl <s.lendl@proxmox.com> <1321542+stfl@users.noreply.github.com>
 +Thomas Bertschinger <bertschinger@lanl.gov> <101425190+bertschinger@users.noreply.github.com>
 +Thomas Geppert <geppi@digitx.de> <geppi@users.noreply.github.com>
 +Tim Crawford <tcrawford@datto.com> <crawfxrd@users.noreply.github.com>
++Todd Seidelmann <18294602+seidelma@users.noreply.github.com>
 +Tom Matthews <tom@axiom-partners.com> <tomtastic@users.noreply.github.com>
 +Tony Perkins <tperkins@datto.com> <62951051+tony-zfs@users.noreply.github.com>
 +Torsten Wörtwein <twoertwein@gmail.com> <twoertwein@users.noreply.github.com>
 +Tulsi Jain <tulsi.jain@delphix.com> <TulsiJain@users.noreply.github.com>
 +Václav Skála <skala@vshosting.cz> <33496485+vaclavskala@users.noreply.github.com>
 +Vaibhav Bhanawat <vaibhav.bhanawat@delphix.com> <88050553+vaibhav-delphix@users.noreply.github.com>
 +Violet Purcell <vimproved@inventati.org> <66446404+vimproved@users.noreply.github.com>
 +Vipin Kumar Verma <vipin.verma@hpe.com> <75025470+vermavipinkumar@users.noreply.github.com>
 +Wolfgang Bumiller <w.bumiller@proxmox.com> <Blub@users.noreply.github.com>
 +xtouqh <xtouqh@hotmail.com> <72357159+xtouqh@users.noreply.github.com>
 +Yuri Pankov <yuripv@FreeBSD.org> <113725409+yuripv@users.noreply.github.com>
 +Yuri Pankov <yuripv@FreeBSD.org> <82001006+yuripv@users.noreply.github.com>
diff --cc sys/contrib/openzfs/README.md
index af244c1fff14,000000000000..a90736bb56b7
mode 100644,000000..100644
--- a/sys/contrib/openzfs/README.md
+++ b/sys/contrib/openzfs/README.md
@@@ -1,35 -1,0 +1,35 @@@
 +![img](https://openzfs.github.io/openzfs-docs/_static/img/logo/480px-Open-ZFS-Secondary-Logo-Colour-halfsize.png)
 +
 +OpenZFS is an advanced file system and volume manager which was originally
 +developed for Solaris and is now maintained by the OpenZFS community.
 +This repository contains the code for running OpenZFS on Linux and FreeBSD.
 +
 +[![codecov](https://codecov.io/gh/openzfs/zfs/branch/master/graph/badge.svg)](https://codecov.io/gh/openzfs/zfs)
 +[![coverity](https://scan.coverity.com/projects/1973/badge.svg)](https://scan.coverity.com/projects/openzfs-zfs)
 +
 +# Official Resources
 +
 +  * [Documentation](https://openzfs.github.io/openzfs-docs/) - for using and developing this repo
 +  * [ZoL Site](https://zfsonlinux.org) - Linux release info & links
 +  * [Mailing lists](https://openzfs.github.io/openzfs-docs/Project%20and%20Community/Mailing%20Lists.html)
 +  * [OpenZFS site](https://openzfs.org/) - for conference videos and info on other platforms (illumos, OSX, Windows, etc)
 +
 +# Installation
 +
 +Full documentation for installing OpenZFS on your favorite operating system can
 +be found at the [Getting Started Page](https://openzfs.github.io/openzfs-docs/Getting%20Started/index.html).
 +
 +# Contribute & Develop
 +
 +We have a separate document with [contribution guidelines](./.github/CONTRIBUTING.md).
 +
 +We have a [Code of Conduct](./CODE_OF_CONDUCT.md).
 +
 +# Release
 +
 +OpenZFS is released under a CDDL license.
 +For more details see the NOTICE, LICENSE and COPYRIGHT files; `UCRL-CODE-235197`
 +
 +# Supported Kernels
 +  * The `META` file contains the officially recognized supported Linux kernel versions.
-   * Supported FreeBSD versions are any supported branches and releases starting from 12.4-RELEASE.
++  * Supported FreeBSD versions are any supported branches and releases starting from 13.0-RELEASE.
diff --cc sys/contrib/openzfs/man/man8/zpool-prefetch.8
index 000000000000,57445bd4a655..57445bd4a655
mode 000000,100644..100644
--- a/sys/contrib/openzfs/man/man8/zpool-prefetch.8
+++ b/sys/contrib/openzfs/man/man8/zpool-prefetch.8
diff --cc sys/contrib/openzfs/module/os/freebsd/zfs/zfs_vnops_os.c
index b9d4da3de084,283f56963170..8185954b3e05
--- a/sys/contrib/openzfs/module/os/freebsd/zfs/zfs_vnops_os.c
+++ b/sys/contrib/openzfs/module/os/freebsd/zfs/zfs_vnops_os.c
@@@ -6354,10 -6140,11 +6140,9 @@@ bad_locked_fallback
  bad_write_fallback:
  	if (mp != NULL)
  		vn_finished_write(mp);
 -	error = vn_generic_copy_file_range(ap->a_invp, ap->a_inoffp,
 -	    ap->a_outvp, ap->a_outoffp, ap->a_lenp, ap->a_flags,
 -	    ap->a_incred, ap->a_outcred, ap->a_fsizetd);
 +	error = ENOSYS;
  	return (error);
  }
- #endif
  
  struct vop_vector zfs_vnodeops;
  struct vop_vector zfs_fifoops;
diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/block_cloning/block_cloning_rlimit_fsize.ksh
index 000000000000,a8a64e52491a..a8a64e52491a
mode 000000,100755..100755
--- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/block_cloning/block_cloning_rlimit_fsize.ksh
+++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/block_cloning/block_cloning_rlimit_fsize.ksh
diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/json/cleanup.ksh
index 000000000000,f82a90962292..f82a90962292
mode 000000,100755..100755
--- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/json/cleanup.ksh
+++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/json/cleanup.ksh
diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/json/json_sanity.ksh
index 000000000000,e598dd57181e..e598dd57181e
mode 000000,100755..100755
--- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/json/json_sanity.ksh
+++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/json/json_sanity.ksh
diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/json/setup.ksh
index 000000000000,f94dc5697423..f94dc5697423
mode 000000,100755..100755
--- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/json/setup.ksh
+++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/json/setup.ksh
diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_prefetch/cleanup.ksh
index 000000000000,79cd6e9f908e..79cd6e9f908e
mode 000000,100755..100755
--- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_prefetch/cleanup.ksh
+++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_prefetch/cleanup.ksh
diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_prefetch/setup.ksh
index 000000000000,6a9af3bc28c3..6a9af3bc28c3
mode 000000,100755..100755
--- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_prefetch/setup.ksh
+++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_prefetch/setup.ksh
diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_prefetch/zpool_prefetch_001_pos.ksh
index 000000000000,a96a38ff178a..a96a38ff178a
mode 000000,100755..100755
--- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_prefetch/zpool_prefetch_001_pos.ksh
+++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_prefetch/zpool_prefetch_001_pos.ksh
diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/dedup/cleanup.ksh
index 000000000000,b3c4c04d7761..b3c4c04d7761
mode 000000,100755..100755
--- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/dedup/cleanup.ksh
+++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/dedup/cleanup.ksh
diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/dedup/dedup_quota.ksh
index 000000000000,5b83a1ca396f..5b83a1ca396f
mode 000000,100755..100755
--- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/dedup/dedup_quota.ksh
+++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/dedup/dedup_quota.ksh
diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/dedup/setup.ksh
index 000000000000,3c0830401f81..3c0830401f81
mode 000000,100755..100755
--- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/dedup/setup.ksh
+++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/dedup/setup.ksh
diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/upgrade/upgrade_projectquota_002_pos.ksh
index 000000000000,fe837435190c..fe837435190c
mode 000000,100755..100755
--- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/upgrade/upgrade_projectquota_002_pos.ksh
+++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/upgrade/upgrade_projectquota_002_pos.ksh
diff --cc sys/modules/zfs/zfs_config.h
index 920bb59e2fc9,000000000000..631c83fe8bab
mode 100644,000000..100644
--- a/sys/modules/zfs/zfs_config.h
+++ b/sys/modules/zfs/zfs_config.h
@@@ -1,1239 -1,0 +1,1239 @@@
 +/*
 + */
 +
 +/* zfs_config.h.  Generated from zfs_config.h.in by configure.  */
 +/* zfs_config.h.in.  Generated from configure.ac by autoheader.  */
 +
 +/* Define to 1 if translation of program messages to the user's native
 +   language is requested. */
 +/* #undef ENABLE_NLS */
 +
 +/* bio_end_io_t wants 1 arg */
 +/* #undef HAVE_1ARG_BIO_END_IO_T */
 +
 +/* lookup_bdev() wants 1 arg */
 +/* #undef HAVE_1ARG_LOOKUP_BDEV */
 +
 +/* submit_bio() wants 1 arg */
 +/* #undef HAVE_1ARG_SUBMIT_BIO */
 +
 +/* bdi_setup_and_register() wants 2 args */
 +/* #undef HAVE_2ARGS_BDI_SETUP_AND_REGISTER */
 +
 +/* vfs_getattr wants 2 args */
 +/* #undef HAVE_2ARGS_VFS_GETATTR */
 +
 +/* zlib_deflate_workspacesize() wants 2 args */
 +/* #undef HAVE_2ARGS_ZLIB_DEFLATE_WORKSPACESIZE */
 +
 +/* bdi_setup_and_register() wants 3 args */
 +/* #undef HAVE_3ARGS_BDI_SETUP_AND_REGISTER */
 +
 +/* vfs_getattr wants 3 args */
 +/* #undef HAVE_3ARGS_VFS_GETATTR */
 +
 +/* vfs_getattr wants 4 args */
 +/* #undef HAVE_4ARGS_VFS_GETATTR */
 +
 +/* kernel has access_ok with 'type' parameter */
 +/* #undef HAVE_ACCESS_OK_TYPE */
 +
 +/* posix_acl has refcount_t */
 +/* #undef HAVE_ACL_REFCOUNT */
 +
 +/* add_disk() returns int */
 +/* #undef HAVE_ADD_DISK_RET */
 +
 +/* Define if host toolchain supports AES */
 +#define HAVE_AES 1
 +
 +/* Define if you have [rt] */
 +#define HAVE_AIO_H 1
 +
 +#ifdef __amd64__
 +#ifndef RESCUE
 +/* Define if host toolchain supports AVX */
 +#define HAVE_AVX 1
 +#endif
 +
 +/* Define if host toolchain supports AVX2 */
 +#define HAVE_AVX2 1
 +
 +/* Define if host toolchain supports AVX512BW */
 +#define HAVE_AVX512BW 1
 +
 +/* Define if host toolchain supports AVX512CD */
 +#define HAVE_AVX512CD 1
 +
 +/* Define if host toolchain supports AVX512DQ */
 +#define HAVE_AVX512DQ 1
 +
 +/* Define if host toolchain supports AVX512ER */
 +#define HAVE_AVX512ER 1
 +
 +/* Define if host toolchain supports AVX512F */
 +#define HAVE_AVX512F 1
 +
 +/* Define if host toolchain supports AVX512IFMA */
 +#define HAVE_AVX512IFMA 1
 +
 +/* Define if host toolchain supports AVX512PF */
 +#define HAVE_AVX512PF 1
 +
 +/* Define if host toolchain supports AVX512VBMI */
 +#define HAVE_AVX512VBMI 1
 +
 +/* Define if host toolchain supports AVX512VL */
 +#define HAVE_AVX512VL 1
 +#endif
 +
 +/* backtrace() is available */
 +/* #undef HAVE_BACKTRACE */
 +
 +/* bdevname() is available */
 +/* #undef HAVE_BDEVNAME */
 +
 +/* bdev_check_media_change() exists */
 +/* #undef HAVE_BDEV_CHECK_MEDIA_CHANGE */
 +
 +/* bdev_file_open_by_path() exists */
 +/* #undef HAVE_BDEV_FILE_OPEN_BY_PATH */
 +
 +/* bdev_*_io_acct() available */
 +/* #undef HAVE_BDEV_IO_ACCT_63 */
 +
 +/* bdev_*_io_acct() available */
 +/* #undef HAVE_BDEV_IO_ACCT_OLD */
 +
 +/* bdev_kobj() exists */
 +/* #undef HAVE_BDEV_KOBJ */
 +
 +/* bdev_max_discard_sectors() is available */
 +/* #undef HAVE_BDEV_MAX_DISCARD_SECTORS */
 +
 +/* bdev_max_secure_erase_sectors() is available */
 +/* #undef HAVE_BDEV_MAX_SECURE_ERASE_SECTORS */
 +
 +/* bdev_nr_bytes() is available */
 +/* #undef HAVE_BDEV_NR_BYTES */
 +
 +/* bdev_open_by_path() exists */
 +/* #undef HAVE_BDEV_OPEN_BY_PATH */
 +
 +/* bdev_release() exists */
 +/* #undef HAVE_BDEV_RELEASE */
 +
 +/* block_device_operations->submit_bio() returns void */
 +/* #undef HAVE_BDEV_SUBMIT_BIO_RETURNS_VOID */
 +
 +/* bdev_whole() is available */
 +/* #undef HAVE_BDEV_WHOLE */
 +
 +/* bio_alloc() takes 4 arguments */
 +/* #undef HAVE_BIO_ALLOC_4ARG */
 +
 +/* bio->bi_bdev->bd_disk exists */
 +/* #undef HAVE_BIO_BDEV_DISK */
 +
 +/* bio->bi_opf is defined */
 +/* #undef HAVE_BIO_BI_OPF */
 +
 +/* bio->bi_status exists */
 +/* #undef HAVE_BIO_BI_STATUS */
 +
 +/* bio has bi_iter */
 +/* #undef HAVE_BIO_BVEC_ITER */
 +
 +/* bio_*_io_acct() available */
 +/* #undef HAVE_BIO_IO_ACCT */
 +
 +/* bio_max_segs() is implemented */
 +/* #undef HAVE_BIO_MAX_SEGS */
 +
 +/* bio_set_dev() is available */
 +/* #undef HAVE_BIO_SET_DEV */
 +
 +/* bio_set_dev() GPL-only */
 +/* #undef HAVE_BIO_SET_DEV_GPL_ONLY */
 +
 +/* bio_set_dev() is a macro */
 +/* #undef HAVE_BIO_SET_DEV_MACRO */
 +
 +/* bio_set_op_attrs is available */
 +/* #undef HAVE_BIO_SET_OP_ATTRS */
 +
 +/* blkdev_get_by_path() exists and takes 4 args */
 +/* #undef HAVE_BLKDEV_GET_BY_PATH_4ARG */
 +
 +/* blkdev_get_by_path() handles ERESTARTSYS */
 +/* #undef HAVE_BLKDEV_GET_ERESTARTSYS */
 +
 +/* __blkdev_issue_discard(flags) is available */
 +/* #undef HAVE_BLKDEV_ISSUE_DISCARD_ASYNC_FLAGS */
 +
 +/* __blkdev_issue_discard() is available */
 +/* #undef HAVE_BLKDEV_ISSUE_DISCARD_ASYNC_NOFLAGS */
 +
 +/* blkdev_issue_discard(flags) is available */
 +/* #undef HAVE_BLKDEV_ISSUE_DISCARD_FLAGS */
 +
 +/* blkdev_issue_discard() is available */
 +/* #undef HAVE_BLKDEV_ISSUE_DISCARD_NOFLAGS */
 +
 +/* blkdev_issue_secure_erase() is available */
 +/* #undef HAVE_BLKDEV_ISSUE_SECURE_ERASE */
 +
 +/* blkdev_put() exists */
 +/* #undef HAVE_BLKDEV_PUT */
 +
 +/* blkdev_put() accepts void* as arg 2 */
 +/* #undef HAVE_BLKDEV_PUT_HOLDER */
 +
 +/* blkdev_reread_part() exists */
 +/* #undef HAVE_BLKDEV_REREAD_PART */
 +
 +/* blkg_tryget() is available */
 +/* #undef HAVE_BLKG_TRYGET */
 +
 +/* blkg_tryget() GPL-only */
 +/* #undef HAVE_BLKG_TRYGET_GPL_ONLY */
 +
 +/* blk_alloc_disk() exists */
 +/* #undef HAVE_BLK_ALLOC_DISK */
 +
 +/* blk_alloc_disk() exists and takes 2 args */
 +/* #undef HAVE_BLK_ALLOC_DISK_2ARG */
 +
 +/* blk_alloc_queue() expects request function */
 +/* #undef HAVE_BLK_ALLOC_QUEUE_REQUEST_FN */
 +
 +/* blk_alloc_queue_rh() expects request function */
 +/* #undef HAVE_BLK_ALLOC_QUEUE_REQUEST_FN_RH */
 +
 +/* blk_cleanup_disk() exists */
 +/* #undef HAVE_BLK_CLEANUP_DISK */
 +
 +/* blk_mode_t is defined */
 +/* #undef HAVE_BLK_MODE_T */
 +
 +/* block multiqueue is available */
 +/* #undef HAVE_BLK_MQ */
 +
 +/* block multiqueue hardware context is cached in struct request */
 +/* #undef HAVE_BLK_MQ_RQ_HCTX */
 +
 +/* blk queue backing_dev_info is dynamic */
 +/* #undef HAVE_BLK_QUEUE_BDI_DYNAMIC */
 +
 +/* blk_queue_discard() is available */
 +/* #undef HAVE_BLK_QUEUE_DISCARD */
 +
 +/* blk_queue_flag_clear() exists */
 +/* #undef HAVE_BLK_QUEUE_FLAG_CLEAR */
 +
 +/* blk_queue_flag_set() exists */
 +/* #undef HAVE_BLK_QUEUE_FLAG_SET */
 +
 +/* blk_queue_flush() is available */
 +/* #undef HAVE_BLK_QUEUE_FLUSH */
 +
 +/* blk_queue_flush() is GPL-only */
 +/* #undef HAVE_BLK_QUEUE_FLUSH_GPL_ONLY */
 +
 +/* blk_queue_secdiscard() is available */
 +/* #undef HAVE_BLK_QUEUE_SECDISCARD */
 +
 +/* blk_queue_secure_erase() is available */
 +/* #undef HAVE_BLK_QUEUE_SECURE_ERASE */
 +
 +/* blk_queue_update_readahead() exists */
 +/* #undef HAVE_BLK_QUEUE_UPDATE_READAHEAD */
 +
 +/* blk_queue_write_cache() exists */
 +/* #undef HAVE_BLK_QUEUE_WRITE_CACHE */
 +
 +/* blk_queue_write_cache() is GPL-only */
 +/* #undef HAVE_BLK_QUEUE_WRITE_CACHE_GPL_ONLY */
 +
 +/* BLK_STS_RESV_CONFLICT is defined */
 +/* #undef HAVE_BLK_STS_RESV_CONFLICT */
 +
 +/* Define if release() in block_device_operations takes 1 arg */
 +/* #undef HAVE_BLOCK_DEVICE_OPERATIONS_RELEASE_1ARG */
 +
 +/* Define if revalidate_disk() in block_device_operations */
 +/* #undef HAVE_BLOCK_DEVICE_OPERATIONS_REVALIDATE_DISK */
 +
 +/* Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the
 +   CoreFoundation framework. */
 +/* #undef HAVE_CFLOCALECOPYCURRENT */
 +
 +/* Define to 1 if you have the Mac OS X function
 +   CFLocaleCopyPreferredLanguages in the CoreFoundation framework. */
 +/* #undef HAVE_CFLOCALECOPYPREFERREDLANGUAGES */
 +
 +/* Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in
 +   the CoreFoundation framework. */
 +/* #undef HAVE_CFPREFERENCESCOPYAPPVALUE */
 +
 +/* check_disk_change() exists */
 +/* #undef HAVE_CHECK_DISK_CHANGE */
 +
 +/* clear_inode() is available */
 +/* #undef HAVE_CLEAR_INODE */
 +
 +/* dentry uses const struct dentry_operations */
 +/* #undef HAVE_CONST_DENTRY_OPERATIONS */
 +
 +/* copy_from_iter() is available */
 +/* #undef HAVE_COPY_FROM_ITER */
 +
 +/* copy_splice_read exists */
 +/* #undef HAVE_COPY_SPLICE_READ */
 +
 +/* copy_to_iter() is available */
 +/* #undef HAVE_COPY_TO_ITER */
 +
 +/* cpu_has_feature() is GPL-only */
 +/* #undef HAVE_CPU_HAS_FEATURE_GPL_ONLY */
 +
 +/* yes */
 +/* #undef HAVE_CPU_HOTPLUG */
 +
 +/* current_time() exists */
 +/* #undef HAVE_CURRENT_TIME */
 +
 +/* Define if the GNU dcgettext() function is already present or preinstalled.
 +   */
 +/* #undef HAVE_DCGETTEXT */
 +
 +/* DECLARE_EVENT_CLASS() is available */
 +/* #undef HAVE_DECLARE_EVENT_CLASS */
 +
 +/* dentry aliases are in d_u member */
 +/* #undef HAVE_DENTRY_D_U_ALIASES */
 +
 +/* dequeue_signal() takes 4 arguments */
 +/* #undef HAVE_DEQUEUE_SIGNAL_4ARG */
 +
 +/* lookup_bdev() wants dev_t arg */
 +/* #undef HAVE_DEVT_LOOKUP_BDEV */
 +
 +/* sops->dirty_inode() wants flags */
 +/* #undef HAVE_DIRTY_INODE_WITH_FLAGS */
 +
 +/* disk_check_media_change() exists */
 +/* #undef HAVE_DISK_CHECK_MEDIA_CHANGE */
 +
 +/* disk_*_io_acct() available */
 +/* #undef HAVE_DISK_IO_ACCT */
 +
 +/* disk_update_readahead() exists */
 +/* #undef HAVE_DISK_UPDATE_READAHEAD */
 +
 +/* Define to 1 if you have the <dlfcn.h> header file. */
 +#define HAVE_DLFCN_H 1
 +
 +/* d_make_root() is available */
 +/* #undef HAVE_D_MAKE_ROOT */
 +
 +/* d_prune_aliases() is available */
 +/* #undef HAVE_D_PRUNE_ALIASES */
 +
 +/* dops->d_revalidate() operation takes nameidata */
 +/* #undef HAVE_D_REVALIDATE_NAMEIDATA */
 +
 +/* eops->encode_fh() wants child and parent inodes */
 +/* #undef HAVE_ENCODE_FH_WITH_INODE */
*** 902 LINES SKIPPED ***