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 <[email protected]>
AuthorDate: 2024-08-10 09:15:30 +0000
Commit:     Martin Matuska <[email protected]>
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 <[email protected]>
 +Ahelenia Ziemiańska <[email protected]>
 +Alex John <[email protected]>
 +Andreas Dilger <[email protected]>
 +Andrew Walker <[email protected]>
 +Benedikt Neuffer <[email protected]>
 +Chengfei Zhu <[email protected]>
 +ChenHao Lu <[email protected]>
 +Chris Lindee <[email protected]>
 +Colm Buckley <[email protected]>
 +Crag Wang <[email protected]>
 +Damian Szuberski <[email protected]>
 +Daniel Kolesa <[email protected]>
 +Debabrata Banerjee <[email protected]>
 +Finix Yan <[email protected]>
 +Gaurav Kumar <[email protected]>
 +Gionatan Danti <[email protected]>
 +Glenn Washburn <[email protected]>
 +Gordan Bobic <[email protected]>
 +Gregory Bartholomew <[email protected]>
 +hedong zhang <[email protected]>
 +Ilkka Sovanto <[email protected]>
 +InsanePrawn <[email protected]>
 +Jason Cohen <[email protected]>
 +Jason Harmening <[email protected]>
 +Jeremy Faulkner <[email protected]>
 +Jinshan Xiong <[email protected]>
 +John Poduska <[email protected]>
 +Justin Scholz <[email protected]>
 +Ka Ho Ng <[email protected]>
 +Kash Pande <[email protected]>
 +Kay Pedersen <[email protected]>
 +KernelOfTruth <[email protected]>
 +Liu Hua <[email protected]>
 +Liu Qing <[email protected]>
 +loli10K <[email protected]>
 +Mart Frauenlob <[email protected]>
 +Matthias Blankertz <[email protected]>
 +Michael Gmelin <[email protected]>
 +Olivier Mazouffre <[email protected]>
 +Piotr Kubaj <[email protected]>
 +Quentin Zdanis <[email protected]>
 +Roberto Ricci <[email protected]>
 +Rob Norris <[email protected]>
 +Rob Norris <[email protected]>
 +Sam Lunt <[email protected]>
 +Sanjeev Bagewadi <[email protected]>
 +Stoiko Ivanov <[email protected]>
 +Tamas TEVESZ <[email protected]>
 +WHR <[email protected]>
 +Yanping Gao <[email protected]>
 +Youzhong Yang <[email protected]>
 +
 +# Signed-off-by: overriding Author:
++Ryan <[email protected]> <[email protected]>
++Qiuhao Chen <[email protected]> <[email protected]>
 +Yuxin Wang <[email protected]> <[email protected]>
++Zhenlei Huang <[email protected]> <[email protected]>
 +
 +# Commits from strange places, long ago
 +Brian Behlendorf <[email protected]> 
<behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c>
 +Brian Behlendorf <[email protected]> <behlendo@fedora-17-amd64.(none)>
 +Brian Behlendorf <[email protected]> <behlendo@myhost.(none)>
 +Brian Behlendorf <[email protected]> 
<[email protected]>
 +Brian Behlendorf <[email protected]> 
<[email protected]>
 +Herb Wartens <[email protected]> 
<wartens2@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c>
 +Ned Bass <[email protected]> <bass6@zeno1.(none)>
 +Tulsi Jain <[email protected]> <[email protected]>
 +
 +# Mappings from Github no-reply addresses
 +ajs124 <[email protected]> <[email protected]>
 +Alek Pinchuk <[email protected]> <[email protected]>
 +Alexander Lobakin <[email protected]> <[email protected]>
 +Alexey Smirnoff <[email protected]> <[email protected]>
 +Allen Holl <[email protected]> 
<[email protected]>
++Alphan Yılmaz <[email protected]> <[email protected]>
 +Ameer Hamza <[email protected]> 
<[email protected]>
 +Andrew J. Hesford <[email protected]> 
<[email protected]>>
 +Andrew Sun <[email protected]> <[email protected]>
 +Aron Xu <[email protected]> <[email protected]>
 +Arun KV <[email protected]> <[email protected]>
 +Ben Wolsieffer <[email protected]> <[email protected]>
 +bernie1995 <[email protected]> 
<[email protected]>
++Bojan Novković <[email protected]> 
<[email protected]>
 +Boris Protopopov <[email protected]> 
<[email protected]>
 +Brad Forschinger <[email protected]> <[email protected]>
 +Brandon Thetford <[email protected]> 
<[email protected]>
 +buzzingwires <[email protected]> 
<[email protected]>
 +Cedric Maunoury <[email protected]> 
<[email protected]>
 +Charles Suh <[email protected]> <[email protected]>
 +Chris Peredun <[email protected]> 
<[email protected]>
 +Dacian Reece-Stremtan <[email protected]> 
<[email protected]>
 +Damian Szuberski <[email protected]> 
<[email protected]>
 +Daniel Hiepler <[email protected]> <[email protected]>
 +Daniel Kobras <[email protected]> 
<[email protected]>
 +Daniel Reichelt <[email protected]> <[email protected]>
 +David Quigley <[email protected]> <[email protected]>
 +Dennis R. Friedrichsen <[email protected]> 
<[email protected]>
 +Dex Wood <[email protected]> <[email protected]>
 +DHE <[email protected]> <[email protected]>
 +Dmitri John Ledkov <[email protected]> 
<[email protected]>
 +Dries Michiels <[email protected]> 
<[email protected]>
 +Edmund Nadolski <[email protected]> 
<[email protected]>
 +Érico Nogueira <[email protected]> 
<[email protected]>
 +Fedor Uporov <[email protected]> 
<[email protected]>
 +Felix Dörre <[email protected]> <[email protected]>
 +Felix Neumärker <[email protected]> <[email protected]>
 +Finix Yan <[email protected]> <[email protected]>
 +Gaurav Kumar <[email protected]> <[email protected]>
 +George Gaydarov <[email protected]> <[email protected]>
 +Georgy Yakovlev <[email protected]> 
<[email protected]>
 +Gerardwx <[email protected]> <[email protected]>
 +Gian-Carlo DeFazio <[email protected]> 
<[email protected]>
 +Giuseppe Di Natale <[email protected]> <[email protected]>
 +Hajo Möller <[email protected]> <[email protected]>
 +Harry Mallon <[email protected]> <[email protected]>
 +Hiếu Lê <[email protected]> <[email protected]>
 +Jake Howard <[email protected]> <[email protected]>
 +James Cowgill <[email protected]> <[email protected]>
 +Jaron Kent-Dobias <[email protected]> 
<[email protected]>
 +Jason King <[email protected]> <[email protected]>
 +Jeff Dike <[email protected]> <[email protected]>
 +Jitendra Patidar <[email protected]> 
<[email protected]>
 +João Carlos Mendes Luís <[email protected]> 
<[email protected]>
 +John Eismeier <[email protected]> 
<[email protected]>
 +John L. Hammond <[email protected]> 
<[email protected]>
 +John-Mark Gurney <[email protected]> <[email protected]>
 +John Ramsden <[email protected]> <[email protected]>
 +Jonathon Fernyhough <[email protected]> 
<[email protected]>
 +Jose Luis Duran <[email protected]> <[email protected]>
 +Justin Hibbits <[email protected]> <[email protected]>
 +Kevin Greene <[email protected]> 
<[email protected]>
 +Kevin Jin <[email protected]> 
<[email protected]>
 +Kevin P. Fleming <[email protected]> <[email protected]>
 +Krzysztof Piecuch <[email protected]> 
<[email protected]>
 +Kyle Evans <[email protected]> <[email protected]>
 +Laurențiu Nicola <[email protected]> <[email protected]>
 +loli10K <[email protected]> <[email protected]>
 +Lorenz Hüdepohl <[email protected]> <[email protected]>
 +Luís Henriques <[email protected]> 
<[email protected]>
 +Marcin Skarbek <[email protected]> <[email protected]>
 +Matt Fiddaman <[email protected]> 
<[email protected]>
 +Maxim Filimonov <[email protected]> <[email protected]>
 +Max Zettlmeißl <[email protected]> <[email protected]>
 +Michael Niewöhner <[email protected]> <[email protected]>
 +Michael Zhivich <[email protected]> 
<[email protected]>
 +MigeljanImeri <[email protected]> 
<[email protected]>
 +Mo Zhou <[email protected]> <[email protected]>
 +Nick Mattis <[email protected]> <[email protected]>
 +omni <[email protected]> <[email protected]>
 +Pablo Correa Gómez <[email protected]> 
<[email protected]>
 +Paul Zuchowski <[email protected]> 
<[email protected]>
 +Peter Ashford <[email protected]> <[email protected]>
 +Peter Dave Hello <[email protected]> 
<[email protected]>
 +Peter Wirdemo <[email protected]> 
<[email protected]>
 +Petros Koutoupis <[email protected]> 
<[email protected]>
 +Ping Huang <[email protected]> <[email protected]>
 +Piotr P. Stefaniak <[email protected]> <[email protected]>
 +Richard Allen <[email protected]> 
<[email protected]>
 +Rich Ercolani <[email protected]> 
<[email protected]>
 +Rick Macklem <[email protected]> 
<[email protected]>
 +Rob Wing <[email protected]> 
<[email protected]>
 +Roman Strashkin <[email protected]> 
<[email protected]>
 +Ryan Hirasaki <[email protected]> 
<[email protected]>
 +Samuel Wycliffe J <[email protected]> <[email protected]>
 +Samuel Wycliffe <[email protected]> 
<[email protected]>
 +Savyasachee Jha <[email protected]> <[email protected]>
 +Scott Colby <[email protected]> <[email protected]>
 +Sean Eric Fagan <[email protected]> <[email protected]>
 +Spencer Kinny <[email protected]> 
<[email protected]>
 +Srikanth N S <[email protected]> 
<[email protected]>
 +Stefan Lendl <[email protected]> <[email protected]>
 +Thomas Bertschinger <[email protected]> 
<[email protected]>
 +Thomas Geppert <[email protected]> <[email protected]>
 +Tim Crawford <[email protected]> <[email protected]>
++Todd Seidelmann <[email protected]>
 +Tom Matthews <[email protected]> <[email protected]>
 +Tony Perkins <[email protected]> <[email protected]>
 +Torsten Wörtwein <[email protected]> <[email protected]>
 +Tulsi Jain <[email protected]> <[email protected]>
 +Václav Skála <[email protected]> 
<[email protected]>
 +Vaibhav Bhanawat <[email protected]> 
<[email protected]>
 +Violet Purcell <[email protected]> 
<[email protected]>
 +Vipin Kumar Verma <[email protected]> 
<[email protected]>
 +Wolfgang Bumiller <[email protected]> <[email protected]>
 +xtouqh <[email protected]> <[email protected]>
 +Yuri Pankov <[email protected]> <[email protected]>
 +Yuri Pankov <[email protected]> <[email protected]>
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 ***

Reply via email to