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 <m...@freebsd.org> AuthorDate: 2024-08-10 09:15:30 +0000 Commit: Martin Matuska <m...@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 <nabijaczlew...@gmail.com> +Ahelenia Ziemiańska <nabijaczlew...@nabijaczleweli.xyz> +Alex John <a...@stty.io> +Andreas Dilger <adil...@dilger.ca> +Andrew Walker <awal...@ixsystems.com> +Benedikt Neuffer <git...@itfriend.de> +Chengfei Zhu <chengfeix....@intel.com> +ChenHao Lu <18302010...@fudan.edu.cn> +Chris Lindee <chris.lindee+git...@gmail.com> +Colm Buckley <c...@tuatha.org> +Crag Wang <crag0...@gmail.com> +Damian Szuberski <szuberskidam...@gmail.com> +Daniel Kolesa <dan...@octaforge.org> +Debabrata Banerjee <dbava...@gmail.com> +Finix Yan <yanchong...@hotmail.com> +Gaurav Kumar <gauravk...@gmail.com> +Gionatan Danti <g.da...@assyoma.it> +Glenn Washburn <developm...@efficientek.com> +Gordan Bobic <gordan.bo...@gmail.com> +Gregory Bartholomew <gregory.lee.bartholo...@gmail.com> +hedong zhang <h_d_zh...@163.com> +Ilkka Sovanto <git...@ilkka.kapsi.fi> +InsanePrawn <insane.pra...@gmail.com> +Jason Cohen <jwittlinco...@gmail.com> +Jason Harmening <jason.harmen...@gmail.com> +Jeremy Faulkner <gldisa...@gmail.com> +Jinshan Xiong <jinshan.xi...@gmail.com> +John Poduska <jpodu...@datto.com> +Justin Scholz <g...@justinscholz.de> +Ka Ho Ng <khng...@gmail.com> +Kash Pande <git...@tripleback.net> +Kay Pedersen <christianp...@gmail.com> +KernelOfTruth <kerneloftr...@gmail.com> +Liu Hua <liu.hua...@zte.com.cn> +Liu Qing <win...@gmail.com> +loli10K <ezomori.noz...@gmail.com> +Mart Frauenlob <allk...@fastest.cc> +Matthias Blankertz <matth...@blankertz.org> +Michael Gmelin <gre...@freebsd.org> +Olivier Mazouffre <olivier.mazouf...@ims-bordeaux.fr> +Piotr Kubaj <pku...@anongoth.pl> +Quentin Zdanis <zdan...@gmail.com> +Roberto Ricci <ri...@disroot.org> +Rob Norris <r...@despairlabs.com> +Rob Norris <rob.nor...@klarasystems.com> +Sam Lunt <samuel.j.l...@gmail.com> +Sanjeev Bagewadi <sanjeev.bagew...@gmail.com> +Stoiko Ivanov <git...@nomore.at> +Tamas TEVESZ <i...@extreme.hu> +WHR <msl0000023...@gmail.com> +Yanping Gao <yanping....@xtaotech.com> +Youzhong Yang <youzh...@gmail.com> + +# Signed-off-by: overriding Author: ++Ryan <errornointer...@envs.net> <error.nointer...@gmail.com> ++Qiuhao Chen <chenqiuhao1...@gmail.com> <haohao0...@126.com> +Yuxin Wang <yuxinwang9...@gmail.com> <bi11gates9...@gmail.com> ++Zhenlei Huang <z...@freebsd.org> <zlei.hu...@gmail.com> + +# Commits from strange places, long ago +Brian Behlendorf <behlendo...@llnl.gov> <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c> +Brian Behlendorf <behlendo...@llnl.gov> <behlendo@fedora-17-amd64.(none)> +Brian Behlendorf <behlendo...@llnl.gov> <behlendo@myhost.(none)> +Brian Behlendorf <behlendo...@llnl.gov> <ubu...@ip-172-31-16-145.us-west-1.compute.internal> +Brian Behlendorf <behlendo...@llnl.gov> <ubu...@ip-172-31-20-6.us-west-1.compute.internal> +Herb Wartens <warte...@llnl.gov> <wartens2@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c> +Ned Bass <ba...@llnl.gov> <bass6@zeno1.(none)> +Tulsi Jain <tulsi.j...@delphix.com> <tulsi.jain@Tulsi-Jains-MacBook-Pro.local> + +# Mappings from Github no-reply addresses +ajs124 <g...@ajs124.de> <ajs...@users.noreply.github.com> +Alek Pinchuk <apinc...@axcient.com> <ale...@users.noreply.github.com> +Alexander Lobakin <aloba...@pm.me> <solbj...@users.noreply.github.com> +Alexey Smirnoff <fl...@member.fsf.org> <fli...@users.noreply.github.com> +Allen Holl <allen.m.h...@gmail.com> <65494904+alle...@users.noreply.github.com> ++Alphan Yılmaz <alphanyil...@gmail.com> <a1ea...@users.noreply.github.com> +Ameer Hamza <aha...@ixsystems.com> <106930537+ixha...@users.noreply.github.com> +Andrew J. Hesford <a...@sideband.org> <48421688+ahesf...@users.noreply.github.com>> +Andrew Sun <m...@andrewsun.com> <as-...@users.noreply.github.com> +Aron Xu <happyaron...@gmail.com> <happya...@users.noreply.github.com> +Arun KV <arun...@datacore.com> <65647132+arun...@users.noreply.github.com> +Ben Wolsieffer <benwolsief...@gmail.com> <lopside...@users.noreply.github.com> +bernie1995 <bernie.pi...@gmail.com> <42413912+bernie1...@users.noreply.github.com> ++Bojan Novković <bnov...@freebsd.org> <72801811+bnov...@users.noreply.github.com> +Boris Protopopov <boris.protopo...@actifio.com> <bprotopo...@users.noreply.github.com> +Brad Forschinger <git...@bnjf.id.au> <b...@users.noreply.github.com> +Brandon Thetford <bran...@dodecatec.com> <dodexahed...@users.noreply.github.com> +buzzingwires <buzzingwi...@outlook.com> <131118055+buzzingwi...@users.noreply.github.com> +Cedric Maunoury <cedric.mauno...@gmail.com> <38213715+cedricmauno...@users.noreply.github.com> +Charles Suh <charles....@gmail.com> <charles...@users.noreply.github.com> +Chris Peredun <chris.pere...@ixsystems.com> <126915832+chrispere...@users.noreply.github.com> +Dacian Reece-Stremtan <dacianstrem...@gmail.com> <35844628+dacianstrem...@users.noreply.github.com> +Damian Szuberski <szuberskidam...@gmail.com> <30863496+szube...@users.noreply.github.com> +Daniel Hiepler <d-...@coderdu.de> <32984777+hee...@users.noreply.github.com> +Daniel Kobras <d.kob...@science-computing.de> <sckob...@users.noreply.github.com> +Daniel Reichelt <hack...@nachtgeist.net> <nachtge...@users.noreply.github.com> +David Quigley <david.quig...@intel.com> <dpqu...@users.noreply.github.com> +Dennis R. Friedrichsen <dennis.r.friedrich...@gmail.com> <31087738+dennisfriedrich...@users.noreply.github.com> +Dex Wood <slash2...@gmail.com> <slash2...@users.noreply.github.com> +DHE <g...@dehacked.net> <dehac...@users.noreply.github.com> +Dmitri John Ledkov <dimitri.led...@canonical.com> <19779+x...@users.noreply.github.com> +Dries Michiels <driesm.michi...@gmail.com> <32487486+drie...@users.noreply.github.com> +Edmund Nadolski <edmund.nadol...@ixsystems.com> <137826107+ednadolski...@users.noreply.github.com> +Érico Nogueira <erico....@gmail.com> <34201958+eric...@users.noreply.github.com> +Fedor Uporov <fuporov.vst...@gmail.com> <60701163+fuporovvst...@users.noreply.github.com> +Felix Dörre <fe...@dogcraft.de> <felixdoe...@users.noreply.github.com> +Felix Neumärker <xdc...@posteo.de> <34678034+xdc...@users.noreply.github.com> +Finix Yan <ya...@info2soft.com> <finix1...@users.noreply.github.com> +Gaurav Kumar <gauravk...@gmail.com> <gaurk...@users.noreply.github.com> +George Gaydarov <g...@gg7.io> <g...@users.noreply.github.com> +Georgy Yakovlev <gyakov...@gentoo.org> <168902+gyakov...@users.noreply.github.com> +Gerardwx <gera...@alum.mit.edu> <gerar...@users.noreply.github.com> +Gian-Carlo DeFazio <defaz...@llnl.gov> <defaziogianca...@users.noreply.github.com> +Giuseppe Di Natale <dinata...@llnl.gov> <dinata...@users.noreply.github.com> +Hajo Möller <das...@gmail.com> <das...@users.noreply.github.com> +Harry Mallon <hjmal...@gmail.com> <1816667+hjmal...@users.noreply.github.com> +Hiếu Lê <leorize+...@disroot.org> <alav...@users.noreply.github.com> +Jake Howard <g...@theorangeone.net> <realorange...@users.noreply.github.com> +James Cowgill <james.cowg...@mips.com> <jcowg...@users.noreply.github.com> +Jaron Kent-Dobias <ja...@kent-dobias.com> <kentdob...@users.noreply.github.com> +Jason King <jason.k...@joyent.com> <jasonbk...@users.noreply.github.com> +Jeff Dike <jd...@akamai.com> <52420226+jd...@users.noreply.github.com> +Jitendra Patidar <jitendra.pati...@nutanix.com> <53164267+jsa...@users.noreply.github.com> +João Carlos Mendes Luís <jo...@jonny.eng.br> <dion...@users.noreply.github.com> +John Eismeier <john.eisme...@gmail.com> <32205350+jeis2497...@users.noreply.github.com> +John L. Hammond <john.hamm...@intel.com> <35266395+jhammond-in...@users.noreply.github.com> +John-Mark Gurney <j...@funkthat.com> <jmgur...@users.noreply.github.com> +John Ramsden <johnrams...@riseup.net> <johnrams...@users.noreply.github.com> +Jonathon Fernyhough <jonat...@m2x.dev> <559369+jonath...@users.noreply.github.com> +Jose Luis Duran <jldu...@gmail.com> <jldu...@users.noreply.github.com> +Justin Hibbits <chmeeed...@gmail.com> <chmeeed...@users.noreply.github.com> +Kevin Greene <kevin.gre...@delphix.com> <104801862+kxgre...@users.noreply.github.com> +Kevin Jin <lostking2...@hotmail.com> <33590050+jxdk...@users.noreply.github.com> +Kevin P. Fleming <ke...@km6g.us> <kpflem...@users.noreply.github.com> +Krzysztof Piecuch <piec...@kpiecuch.pl> <3964215+pikrzysz...@users.noreply.github.com> +Kyle Evans <kev...@freebsd.org> <kevan...@users.noreply.github.com> +Laurențiu Nicola <lnic...@dend.ro> <lnic...@users.noreply.github.com> +loli10K <ezomori.noz...@gmail.com> <loli...@users.noreply.github.com> +Lorenz Hüdepohl <d...@stellardeath.org> <lhuedep...@users.noreply.github.com> +Luís Henriques <hen...@camandro.org> <73643340+lumi...@users.noreply.github.com> +Marcin Skarbek <g...@skarbek.name> <mskar...@users.noreply.github.com> +Matt Fiddaman <git...@m.fiddaman.uk> <81489167+matt-f...@users.noreply.github.com> +Maxim Filimonov <c...@bein.link> <part1z...@users.noreply.github.com> +Max Zettlmeißl <m...@zettlmeissl.de> <6818198+m...@users.noreply.github.com> +Michael Niewöhner <f...@mniewoehner.de> <c0d3z...@users.noreply.github.com> +Michael Zhivich <mzhiv...@akamai.com> <33133421+mzhiv...@users.noreply.github.com> +MigeljanImeri <imerimi...@gmail.com> <78048439+migeljanim...@users.noreply.github.com> +Mo Zhou <cdlumin...@gmail.com> <5723047+cdlumin...@users.noreply.github.com> +Nick Mattis <nickm...@gmail.com> <nmat...@users.noreply.github.com> +omni <omni+vag...@hack.org> <79493359+omnivag...@users.noreply.github.com> +Pablo Correa Gómez <ablocor...@hotmail.com> <32678034+pablo...@users.noreply.github.com> +Paul Zuchowski <pzuchow...@datto.com> <31706010+paulz...@users.noreply.github.com> +Peter Ashford <ashf...@accs.com> <pashf...@users.noreply.github.com> +Peter Dave Hello <h...@peterdavehello.org> <peterdavehe...@users.noreply.github.com> +Peter Wirdemo <peter.wird...@gmail.com> <4224155+p...@users.noreply.github.com> +Petros Koutoupis <pet...@petroskoutoupis.com> <pkoutou...@users.noreply.github.com> +Ping Huang <huangp...@smartx.com> <101400146+hpin...@users.noreply.github.com> +Piotr P. Stefaniak <ps...@freebsd.org> <ps...@users.noreply.github.com> +Richard Allen <belper...@gmail.com> <33836503+belper...@users.noreply.github.com> +Rich Ercolani <rincebr...@gmail.com> <214141+rincebr...@users.noreply.github.com> +Rick Macklem <rmack...@uoguelph.ca> <64620010+rmack...@users.noreply.github.com> +Rob Wing <rob.w...@klarasystems.com> <98866084+rob-w...@users.noreply.github.com> +Roman Strashkin <roman.strash...@nexenta.com> <ram...@users.noreply.github.com> +Ryan Hirasaki <ryanhiras...@gmail.com> <4690732+ryan...@users.noreply.github.com> +Samuel Wycliffe J <sam...@hpe.com> <115969550+sam...@users.noreply.github.com> +Samuel Wycliffe <samuelwycli...@gmail.com> <50765275+npc...@users.noreply.github.com> +Savyasachee Jha <h...@savyasacheejha.com> <savya...@users.noreply.github.com> +Scott Colby <sc...@scolby.com> <scolb...@users.noreply.github.com> +Sean Eric Fagan <kith...@mac.com> <kith...@users.noreply.github.com> +Spencer Kinny <spencerkinny1...@gmail.com> <30333052+spencer-ki...@users.noreply.github.com> +Srikanth N S <srikanth.nagasubbaraoseethara...@hpe.com> <75025422+nssrika...@users.noreply.github.com> +Stefan Lendl <s.le...@proxmox.com> <1321542+s...@users.noreply.github.com> +Thomas Bertschinger <bertschin...@lanl.gov> <101425190+bertschin...@users.noreply.github.com> +Thomas Geppert <ge...@digitx.de> <ge...@users.noreply.github.com> +Tim Crawford <tcrawf...@datto.com> <crawf...@users.noreply.github.com> ++Todd Seidelmann <18294602+seide...@users.noreply.github.com> +Tom Matthews <t...@axiom-partners.com> <tomtas...@users.noreply.github.com> +Tony Perkins <tperk...@datto.com> <62951051+tony-...@users.noreply.github.com> +Torsten Wörtwein <twoertw...@gmail.com> <twoertw...@users.noreply.github.com> +Tulsi Jain <tulsi.j...@delphix.com> <tulsij...@users.noreply.github.com> +Václav Skála <sk...@vshosting.cz> <33496485+vaclavsk...@users.noreply.github.com> +Vaibhav Bhanawat <vaibhav.bhana...@delphix.com> <88050553+vaibhav-delp...@users.noreply.github.com> +Violet Purcell <vimpro...@inventati.org> <66446404+vimpro...@users.noreply.github.com> +Vipin Kumar Verma <vipin.ve...@hpe.com> <75025470+vermavipinku...@users.noreply.github.com> +Wolfgang Bumiller <w.bumil...@proxmox.com> <b...@users.noreply.github.com> +xtouqh <xto...@hotmail.com> <72357159+xto...@users.noreply.github.com> +Yuri Pankov <yur...@freebsd.org> <113725409+yur...@users.noreply.github.com> +Yuri Pankov <yur...@freebsd.org> <82001006+yur...@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 ***