Date: Sun, 4 May 2025 22:19:31 +0000 From: Colin Percival <cperciva@tarsnap.com> To: Martin Matuska <mm@FreeBSD.org>, src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: Re: git: 071ab5a1f3cb - main - zfs: merge openzfs/zfs@246e5883b Message-ID: <010001969d620e32-36e03f3d-3fa4-4a62-aa26-0f411b8710fa-000000@email.amazonses.com> In-Reply-To: <202505042208.544M87gP024481@gitrepo.freebsd.org> References: <202505042208.544M87gP024481@gitrepo.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
Is there anything in here which wants to land in 14.3? Colin Percival On 5/4/25 15:08, Martin Matuska wrote: > The branch main has been updated by mm: > > URL: https://cgit.FreeBSD.org/src/commit/?id=071ab5a1f3cbfd29c8fbec27f7e619418adaf074 > > commit 071ab5a1f3cbfd29c8fbec27f7e619418adaf074 > Merge: f61844833ee8 246e5883bb5b > Author: Martin Matuska <mm@FreeBSD.org> > AuthorDate: 2025-05-04 22:05:28 +0000 > Commit: Martin Matuska <mm@FreeBSD.org> > CommitDate: 2025-05-04 22:05:28 +0000 > > zfs: merge openzfs/zfs@246e5883b > > Notable upstream pull request merges: > #17111 246e5883b Implement allocation size ranges and use for gang leaves > #17123 5f5321eff Handle interaction between gang blocks, copies, and FDT > #17130 -multiple Implement default user/group/project quotas > #17164 301da593a Fix lock reversal on device removal cancel > #17183 367d34b3a Fix dspace underflow bug > #17187 30cc2331f zed: Ensure spare activation after kernel-initiated device > removal > #17191 11ca12dbd simd_powerpc.h: enable FPU on FreeBSD > #17192 5b29e70ae Remove mg_allocators > #17204 a497c5fc8 Improve L2 caching control for prefetched indirects > #17205 b14b3e398 Fix FDT rollback to not overwrite unnecessary fields > #17206 7be9fa259 Fix nonrot property being incorrectly unset > #17208 09fc7bb47 Fix memory leaks in pool properties handling > > #17213 78a7c78bd Added fix for zpool get state segfaults with two or more > vdevs > #17228 131df3bbf vdev_to_nvlist_iter: ignore draid parameters when matching > names > #17231 f40ab9e39 Fix double spares for failed vdev > #17264 27f3d9494 Sort the blocking snapshots lis > #17269 f86d9af16 Fix race between resilver wait and offline/detach > #17273 c8fa39b46 cred: properly pass and test creds on other threads > #17284 a7de203c8 txg: generalise txg_wait_synced_sig() to > txg_wait_synced_flags() > > Obtained from: OpenZFS > OpenZFS commit: 246e5883bb5b8e09b1a4213f7b1704b5a9ed5568 > > .../.github/workflows/scripts/generate-ci-type.py | 1 + > .../.github/workflows/scripts/qemu-1-setup.sh | 44 +--- > .../.github/workflows/scripts/qemu-2-start.sh | 51 ++++- > .../.github/workflows/scripts/qemu-3-deps-vm.sh | 4 + > .../.github/workflows/scripts/qemu-5-setup.sh | 34 ++- > .../.github/workflows/scripts/qemu-6-tests.sh | 15 +- > .../.github/workflows/scripts/qemu-7-prepare.sh | 4 +- > .../.github/workflows/scripts/qemu-8-summary.sh | 2 +- > .../.github/workflows/zfs-qemu-packages.yml | 2 +- > sys/contrib/openzfs/.github/workflows/zfs-qemu.yml | 4 +- > sys/contrib/openzfs/cmd/zed/agents/zfs_retire.c | 19 +- > sys/contrib/openzfs/cmd/zed/zed.d/zed-functions.sh | 5 + > sys/contrib/openzfs/cmd/zfs/zfs_main.c | 13 +- > sys/contrib/openzfs/cmd/zinject/zinject.c | 20 +- > .../openzfs/cmd/zpool/os/linux/zpool_vdev_os.c | 3 +- > sys/contrib/openzfs/cmd/zpool/zpool_main.c | 8 +- > .../openzfs/config/kernel-vfs-migratepage.m4 | 27 +++ > sys/contrib/openzfs/config/kernel.m4 | 65 ++++-- > sys/contrib/openzfs/config/user-libunwind.m4 | 16 ++ > sys/contrib/openzfs/contrib/debian/control | 1 + > .../contrib/initramfs/scripts/local-top/zfs | 4 +- > sys/contrib/openzfs/include/libzfs.h | 2 +- > .../openzfs/include/os/freebsd/spl/sys/debug.h | 71 +++---- > .../openzfs/include/os/freebsd/spl/sys/policy.h | 1 - > .../include/os/freebsd/spl/sys/simd_powerpc.h | 4 +- > .../include/os/freebsd/zfs/sys/zfs_vfsops_os.h | 8 + > .../openzfs/include/os/linux/spl/sys/debug.h | 67 +++--- > .../openzfs/include/os/linux/zfs/sys/policy.h | 1 - > .../include/os/linux/zfs/sys/zfs_vfsops_os.h | 8 + > sys/contrib/openzfs/include/sys/ddt.h | 4 + > sys/contrib/openzfs/include/sys/dmu_recv.h | 1 - > sys/contrib/openzfs/include/sys/dsl_dataset.h | 4 +- > sys/contrib/openzfs/include/sys/dsl_dir.h | 4 +- > sys/contrib/openzfs/include/sys/fs/zfs.h | 6 + > sys/contrib/openzfs/include/sys/metaslab.h | 10 +- > sys/contrib/openzfs/include/sys/metaslab_impl.h | 1 - > sys/contrib/openzfs/include/sys/nvpair.h | 2 + > sys/contrib/openzfs/include/sys/spa.h | 3 +- > sys/contrib/openzfs/include/sys/txg.h | 23 +- > sys/contrib/openzfs/include/sys/vdev.h | 3 + > sys/contrib/openzfs/include/sys/vdev_draid.h | 2 +- > sys/contrib/openzfs/include/sys/vdev_impl.h | 4 +- > sys/contrib/openzfs/include/sys/zcp.h | 1 - > sys/contrib/openzfs/include/sys/zfs_context.h | 4 +- > sys/contrib/openzfs/include/sys/zfs_debug.h | 20 ++ > sys/contrib/openzfs/include/sys/zfs_quota.h | 2 +- > sys/contrib/openzfs/include/sys/zio.h | 1 + > sys/contrib/openzfs/lib/libnvpair/libnvpair.abi | 40 ++-- > sys/contrib/openzfs/lib/libnvpair/libnvpair.c | 181 +++------------- > sys/contrib/openzfs/lib/libspl/backtrace.c | 66 ++++-- > sys/contrib/openzfs/lib/libspl/include/assert.h | 65 +++--- > sys/contrib/openzfs/lib/libuutil/libuutil.abi | 45 +--- > sys/contrib/openzfs/lib/libzfs/libzfs.abi | 133 ++++++------ > sys/contrib/openzfs/lib/libzfs/libzfs_dataset.c | 60 ++++-- > sys/contrib/openzfs/lib/libzfs/libzfs_iter.c | 2 +- > sys/contrib/openzfs/lib/libzfs/libzfs_pool.c | 15 +- > .../openzfs/lib/libzfs_core/libzfs_core.abi | 77 +++---- > .../openzfs/lib/libzfsbootenv/libzfsbootenv.abi | 2 +- > sys/contrib/openzfs/lib/libzpool/Makefile.am | 1 + > sys/contrib/openzfs/lib/libzpool/kernel.c | 7 - > sys/contrib/openzfs/man/man7/zfsprops.7 | 36 ++++ > sys/contrib/openzfs/man/man8/zfs-rollback.8 | 4 +- > sys/contrib/openzfs/module/Kbuild.in | 1 + > sys/contrib/openzfs/module/Makefile.bsd | 16 +- > sys/contrib/openzfs/module/nvpair/nvpair.c | 236 +++++++++++++++++++++ > .../openzfs/module/os/freebsd/spl/spl_policy.c | 7 - > .../openzfs/module/os/freebsd/zfs/vdev_geom.c | 3 +- > .../openzfs/module/os/freebsd/zfs/zfs_vfsops.c | 122 +++++++++-- > .../openzfs/module/os/linux/spl/spl-kstat.c | 5 +- > sys/contrib/openzfs/module/os/linux/zfs/abd_os.c | 2 + > sys/contrib/openzfs/module/os/linux/zfs/policy.c | 44 ++-- > .../openzfs/module/os/linux/zfs/vdev_disk.c | 3 +- > .../openzfs/module/os/linux/zfs/zfs_vfsops.c | 131 ++++++++++-- > sys/contrib/openzfs/module/os/linux/zfs/zpl_file.c | 2 +- > sys/contrib/openzfs/module/zcommon/zfs_prop.c | 22 ++ > sys/contrib/openzfs/module/zcommon/zfs_valstr.c | 4 +- > sys/contrib/openzfs/module/zfs/abd.c | 2 + > sys/contrib/openzfs/module/zfs/dbuf.c | 25 ++- > sys/contrib/openzfs/module/zfs/ddt.c | 32 +++ > sys/contrib/openzfs/module/zfs/dmu_direct.c | 4 +- > sys/contrib/openzfs/module/zfs/dmu_objset.c | 25 ++- > sys/contrib/openzfs/module/zfs/dmu_recv.c | 48 +++-- > sys/contrib/openzfs/module/zfs/dsl_dataset.c | 29 ++- > sys/contrib/openzfs/module/zfs/dsl_dir.c | 42 ++-- > sys/contrib/openzfs/module/zfs/dsl_scan.c | 13 +- > sys/contrib/openzfs/module/zfs/dsl_synctask.c | 19 +- > sys/contrib/openzfs/module/zfs/metaslab.c | 225 +++++++++++++++----- > sys/contrib/openzfs/module/zfs/refcount.c | 3 +- > sys/contrib/openzfs/module/zfs/spa.c | 101 ++++++++- > sys/contrib/openzfs/module/zfs/txg.c | 34 +-- > sys/contrib/openzfs/module/zfs/vdev.c | 60 +++++- > sys/contrib/openzfs/module/zfs/vdev_draid.c | 21 +- > sys/contrib/openzfs/module/zfs/vdev_file.c | 5 +- > sys/contrib/openzfs/module/zfs/vdev_indirect.c | 3 +- > sys/contrib/openzfs/module/zfs/vdev_mirror.c | 9 +- > sys/contrib/openzfs/module/zfs/vdev_missing.c | 6 +- > sys/contrib/openzfs/module/zfs/vdev_raidz.c | 34 ++- > sys/contrib/openzfs/module/zfs/vdev_rebuild.c | 2 +- > sys/contrib/openzfs/module/zfs/vdev_removal.c | 67 +++--- > sys/contrib/openzfs/module/zfs/vdev_root.c | 3 +- > sys/contrib/openzfs/module/zfs/zcp.c | 12 +- > sys/contrib/openzfs/module/zfs/zcp_synctask.c | 2 - > sys/contrib/openzfs/module/zfs/zfs_debug_common.c | 97 +++++++++ > sys/contrib/openzfs/module/zfs/zfs_fm.c | 18 +- > sys/contrib/openzfs/module/zfs/zfs_ioctl.c | 98 ++++++++- > sys/contrib/openzfs/module/zfs/zfs_quota.c | 64 +++++- > sys/contrib/openzfs/module/zfs/zfs_znode.c | 8 + > sys/contrib/openzfs/module/zfs/zio.c | 144 ++++++++++--- > sys/contrib/openzfs/rpm/generic/zfs-dkms.spec.in | 6 + > sys/contrib/openzfs/tests/runfiles/common.run | 18 +- > sys/contrib/openzfs/tests/runfiles/linux.run | 18 +- > sys/contrib/openzfs/tests/runfiles/sanity.run | 4 + > .../openzfs/tests/zfs-tests/cmd/clonefile.c | 11 +- > .../tests/zfs-tests/cmd/file/largest_file.c | 2 +- > sys/contrib/openzfs/tests/zfs-tests/cmd/statx.c | 3 + > .../openzfs/tests/zfs-tests/tests/Makefile.am | 27 +++ > .../cli_root/zpool_add/zpool_add_dryrun_output.ksh | 22 +- > .../zpool_create/zpool_create_dryrun_output.ksh | 15 +- > .../functional/cli_root/zpool_get/vdev_get_all.ksh | 92 ++++++++ > .../zpool_split/zpool_split_dryrun_output.ksh | 14 +- > .../cli_root/zpool_status/zpool_status_003_pos.ksh | 2 +- > .../cli_root/zpool_status/zpool_status_004_pos.ksh | 2 +- > .../tests/functional/dedup/dedup_quota.ksh | 21 +- > .../tests/functional/events/zed_cksum_reported.ksh | 2 +- > .../tests/functional/fault/auto_spare_double.ksh | 122 +++++++++++ > .../functional/gang_blocks/gang_blocks_001_pos.ksh | 59 ++++++ > .../gang_blocks/gang_blocks_ddt_copies.ksh | 79 +++++++ > .../online_offline/online_offline_001_pos.ksh | 11 +- > .../online_offline/online_offline_002_neg.ksh | 7 +- > .../online_offline/online_offline_003_neg.ksh | 9 +- > .../pool_checkpoint/checkpoint_capacity.ksh | 5 +- > .../pool_checkpoint/pool_checkpoint.kshlib | 3 +- > .../projectquota/defaultprojectquota_001_pos.ksh | 89 ++++++++ > .../projectquota/defaultprojectquota_002_pos.ksh | 87 ++++++++ > .../projectquota/defaultprojectquota_003_neg.ksh | 77 +++++++ > .../projectquota/defaultprojectquota_004_pos.ksh | 67 ++++++ > .../projectquota/defaultprojectquota_005_pos.ksh | 76 +++++++ > .../projectquota/defaultprojectquota_006_pos.ksh | 90 ++++++++ > .../projectquota/defaultprojectquota_007_pos.ksh | 130 ++++++++++++ > .../projectquota/projectquota_007_pos.ksh | 4 +- > .../projectquota/projectquota_common.kshlib | 2 + > .../projectquota/projectspace_005_pos.ksh | 84 ++++++++ > .../replacement/resilver_restart_001.ksh | 2 +- > .../tests/functional/slog/slog_006_pos.ksh | 3 +- > .../userquota/defaultuserquota_001_pos.ksh | 75 +++++++ > .../userquota/defaultuserquota_002_pos.ksh | 96 +++++++++ > .../userquota/defaultuserquota_003_pos.ksh | 62 ++++++ > .../userquota/defaultuserquota_004_neg.ksh | 72 +++++++ > .../userquota/defaultuserquota_005_pos.ksh | 76 +++++++ > .../userquota/defaultuserquota_006_pos.ksh | 61 ++++++ > .../userquota/defaultuserquota_007_pos.ksh | 90 ++++++++ > .../userquota/defaultuserquota_008_pos.ksh | 78 +++++++ > .../userquota/defaultuserquota_009_pos.ksh | 133 ++++++++++++ > .../userquota/defaultuserquota_010_neg.ksh | 65 ++++++ > .../userquota/defaultuserquota_011_neg.ksh | 79 +++++++ > .../userquota/defaultuserquota_012_neg.ksh | 88 ++++++++ > .../userquota/defaultuserquota_013_neg.ksh | 71 +++++++ > .../functional/userquota/groupspace_004_pos.ksh | 78 +++++++ > .../tests/functional/userquota/userquota.cfg | 2 + > .../functional/userquota/userquota_common.kshlib | 6 + > .../functional/userquota/userspace_004_pos.ksh | 80 +++++++ > .../tests/functional/vdev_disk/page_alignment.c | 8 +- > .../functional/zvol/zvol_stress/zvol_stress.ksh | 3 +- > .../openzfs/tests/zfs-tests/tests/perf/perf.shlib | 136 ++++++------ > sys/modules/zfs/zfs_config.h | 12 +- > sys/modules/zfs/zfs_gitrev.h | 2 +- > 166 files changed, 4680 insertions(+), 1144 deletions(-) > > diff --cc sys/contrib/openzfs/config/kernel-vfs-migratepage.m4 > index 000000000000,05db3af511eb..05db3af511eb > mode 000000,100644..100644 > --- a/sys/contrib/openzfs/config/kernel-vfs-migratepage.m4 > +++ b/sys/contrib/openzfs/config/kernel-vfs-migratepage.m4 > diff --cc sys/contrib/openzfs/module/zfs/zfs_debug_common.c > index 000000000000,cff0dc01c39c..cff0dc01c39c > mode 000000,100644..100644 > --- a/sys/contrib/openzfs/module/zfs/zfs_debug_common.c > +++ b/sys/contrib/openzfs/module/zfs/zfs_debug_common.c > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_get/vdev_get_all.ksh > index 000000000000,0a63b6059410..0a63b6059410 > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_get/vdev_get_all.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_get/vdev_get_all.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/fault/auto_spare_double.ksh > index 000000000000,6a905c867952..6a905c867952 > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/fault/auto_spare_double.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/fault/auto_spare_double.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/gang_blocks/gang_blocks_001_pos.ksh > index 000000000000,3601f5422250..3601f5422250 > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/gang_blocks/gang_blocks_001_pos.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/gang_blocks/gang_blocks_001_pos.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/gang_blocks/gang_blocks_ddt_copies.ksh > index 000000000000,12ebcec3af37..12ebcec3af37 > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/gang_blocks/gang_blocks_ddt_copies.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/gang_blocks/gang_blocks_ddt_copies.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_001_pos.ksh > index 000000000000,7d0bf5cf0fe1..7d0bf5cf0fe1 > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_001_pos.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_001_pos.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_002_pos.ksh > index 000000000000,eabf4fecfcb4..eabf4fecfcb4 > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_002_pos.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_002_pos.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_003_neg.ksh > index 000000000000,53ae9b213c1c..53ae9b213c1c > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_003_neg.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_003_neg.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_004_pos.ksh > index 000000000000,784077e62501..784077e62501 > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_004_pos.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_004_pos.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_005_pos.ksh > index 000000000000,2adf2a9340f7..2adf2a9340f7 > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_005_pos.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_005_pos.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_006_pos.ksh > index 000000000000,88af37c60549..88af37c60549 > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_006_pos.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_006_pos.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_007_pos.ksh > index 000000000000,fecb7670dfc6..fecb7670dfc6 > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_007_pos.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/defaultprojectquota_007_pos.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/projectspace_005_pos.ksh > index 000000000000,92d6e2e81656..92d6e2e81656 > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/projectspace_005_pos.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/projectquota/projectspace_005_pos.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_001_pos.ksh > index 000000000000,c57352595662..c57352595662 > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_001_pos.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_001_pos.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_002_pos.ksh > index 000000000000,325873f90af2..325873f90af2 > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_002_pos.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_002_pos.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_003_pos.ksh > index 000000000000,f43f5bd5e57e..f43f5bd5e57e > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_003_pos.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_003_pos.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_004_neg.ksh > index 000000000000,42be33cac12c..42be33cac12c > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_004_neg.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_004_neg.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_005_pos.ksh > index 000000000000,c3302d10dae9..c3302d10dae9 > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_005_pos.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_005_pos.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_006_pos.ksh > index 000000000000,37e6e66c8119..37e6e66c8119 > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_006_pos.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_006_pos.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_007_pos.ksh > index 000000000000,91e27cf460fc..91e27cf460fc > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_007_pos.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_007_pos.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_008_pos.ksh > index 000000000000,b8efb74d0f12..b8efb74d0f12 > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_008_pos.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_008_pos.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_009_pos.ksh > index 000000000000,30aa93e2b0ba..30aa93e2b0ba > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_009_pos.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_009_pos.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_010_neg.ksh > index 000000000000,ec964236a115..ec964236a115 > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_010_neg.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_010_neg.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_011_neg.ksh > index 000000000000,e822052ff3dd..e822052ff3dd > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_011_neg.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_011_neg.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_012_neg.ksh > index 000000000000,046273ebd869..046273ebd869 > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_012_neg.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_012_neg.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_013_neg.ksh > index 000000000000,7877bee5f48d..7877bee5f48d > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_013_neg.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/defaultuserquota_013_neg.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/groupspace_004_pos.ksh > index 000000000000,f7dc33591ca9..f7dc33591ca9 > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/groupspace_004_pos.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/groupspace_004_pos.ksh > diff --cc sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/userspace_004_pos.ksh > index 000000000000,795c65101878..795c65101878 > mode 000000,100755..100755 > --- a/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/userspace_004_pos.ksh > +++ b/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/userspace_004_pos.ksh > diff --cc sys/modules/zfs/zfs_config.h > index 2650db0a389b,000000000000..86ccdbee2d5b > mode 100644,000000..100644 > --- a/sys/modules/zfs/zfs_config.h > +++ b/sys/modules/zfs/zfs_config.h > @@@ -1,833 -1,0 +1,839 @@@ > +/* > + */ > + > +/* 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 */ > + > +/* __assign_str() has one arg */ > +/* #undef HAVE_1ARG_ASSIGN_STR */ > + > +/* lookup_bdev() wants 1 arg */ > +/* #undef HAVE_1ARG_LOOKUP_BDEV */ > + > +/* kernel has access_ok with 'type' parameter */ > +/* #undef HAVE_ACCESS_OK_TYPE */ > + > +/* 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_*_io_acct() available */ > +/* #undef HAVE_BIO_IO_ACCT */ > + > +/* bio_max_segs() is implemented */ > +/* #undef HAVE_BIO_MAX_SEGS */ > + > +/* 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 */ > + > +/* struct queue_limits has a features field */ > +/* #undef HAVE_BLKDEV_QUEUE_LIMITS_FEATURES */ > + > +/* 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 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 */ > + > +/* backing_dev_info is available through queue gendisk */ > +/* #undef HAVE_BLK_QUEUE_DISK_BDI */ > + > +/* blk_queue_secure_erase() is available */ > +/* #undef HAVE_BLK_QUEUE_SECURE_ERASE */ > + > +/* blk_queue_update_readahead() exists */ > +/* #undef HAVE_BLK_QUEUE_UPDATE_READAHEAD */ > + > +/* 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 > + 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 */ > + > +/* copy_splice_read exists */ > +/* #undef HAVE_COPY_SPLICE_READ */ > + > +/* cpu_has_feature() is GPL-only */ > +/* #undef HAVE_CPU_HAS_FEATURE_GPL_ONLY */ > + > +/* Define if the GNU dcgettext() function is already present or preinstalled. > + */ > +/* #undef HAVE_DCGETTEXT */ > + > +/* DECLARE_EVENT_CLASS() is available */ > +/* #undef HAVE_DECLARE_EVENT_CLASS */ > + > +/* 3-arg dequeue_signal() takes a type argument */ > +/* #undef HAVE_DEQUEUE_SIGNAL_3ARG_TYPE */ > + > +/* dequeue_signal() takes 4 arguments */ > +/* #undef HAVE_DEQUEUE_SIGNAL_4ARG */ > + > +/* lookup_bdev() wants dev_t arg */ > +/* #undef HAVE_DEVT_LOOKUP_BDEV */ > + > +/* 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 > + > +/* dops->d_revalidate() takes 4 args */ > +/* #undef HAVE_D_REVALIDATE_4ARGS */ > + > +/* Define to 1 if you have the 'execvpe' function. */ > +#define HAVE_EXECVPE 1 > + > +/* fault_in_iov_iter_readable() is available */ > +/* #undef HAVE_FAULT_IN_IOV_ITER_READABLE */ > + > +/* file->f_version exists */ > +/* #undef HAVE_FILE_F_VERSION */ > + > +/* flush_dcache_page() is GPL-only */ > +/* #undef HAVE_FLUSH_DCACHE_PAGE_GPL_ONLY */ > + > +/* Define if compiler supports -Wformat-overflow */ > +/* #undef HAVE_FORMAT_OVERFLOW */ > + > +/* fsync_bdev() is declared in include/blkdev.h */ > +/* #undef HAVE_FSYNC_BDEV */ > + > +/* yes */ > +/* #undef HAVE_GENERIC_FADVISE */ > + > +/* generic_fillattr requires struct mnt_idmap* */ > +/* #undef HAVE_GENERIC_FILLATTR_IDMAP */ > + > +/* generic_fillattr requires struct mnt_idmap* and u32 request_mask */ > +/* #undef HAVE_GENERIC_FILLATTR_IDMAP_REQMASK */ > + > +/* generic_fillattr requires struct user_namespace* */ > +/* #undef HAVE_GENERIC_FILLATTR_USERNS */ > + > +/* generic_*_io_acct() 4 arg available */ > +/* #undef HAVE_GENERIC_IO_ACCT_4ARG */ > + > +/* GENHD_FL_EXT_DEVT flag is available */ > +/* #undef HAVE_GENHD_FL_EXT_DEVT */ > + > +/* GENHD_FL_NO_PART flag is available */ > +/* #undef HAVE_GENHD_FL_NO_PART */ > + > +/* Define if the GNU gettext() function is already present or preinstalled. */ > +/* #undef HAVE_GETTEXT */ > + > +/* Define to 1 if you have the 'gettid' function. */ > +/* #undef HAVE_GETTID */ > + > +/* iops->get_acl() exists */ > +/* #undef HAVE_GET_ACL */ > + > +/* iops->get_acl() takes rcu */ > +/* #undef HAVE_GET_ACL_RCU */ > + > +/* has iops->get_inode_acl() */ > +/* #undef HAVE_GET_INODE_ACL */ > + > +/* iattr->ia_vfsuid and iattr->ia_vfsgid exist */ > +/* #undef HAVE_IATTR_VFSID */ > + > +/* Define if you have the iconv() function and it works. */ > +#define HAVE_ICONV 1 > + > +/* iops->getattr() takes struct mnt_idmap* */ > +/* #undef HAVE_IDMAP_IOPS_GETATTR */ > + > +/* iops->setattr() takes struct mnt_idmap* */ > +/* #undef HAVE_IDMAP_IOPS_SETATTR */ > + > +/* APIs for idmapped mount are present */ > +/* #undef HAVE_IDMAP_MNT_API */ > + > +/* mnt_idmap does not have user_namespace */ > +/* #undef HAVE_IDMAP_NO_USERNS */ > + > +/* Define if compiler supports -Wimplicit-fallthrough */ > +/* #undef HAVE_IMPLICIT_FALLTHROUGH */ > + > +/* Define if compiler supports -Winfinite-recursion */ > +/* #undef HAVE_INFINITE_RECURSION */ > + > +/* inode_get_atime() exists in linux/fs.h */ > +/* #undef HAVE_INODE_GET_ATIME */ > + > +/* inode_get_ctime() exists in linux/fs.h */ > +/* #undef HAVE_INODE_GET_CTIME */ > + > +/* inode_get_mtime() exists in linux/fs.h */ > +/* #undef HAVE_INODE_GET_MTIME */ > + > +/* inode_owner_or_capable() exists */ > +/* #undef HAVE_INODE_OWNER_OR_CAPABLE */ > + > +/* inode_owner_or_capable() takes mnt_idmap */ > +/* #undef HAVE_INODE_OWNER_OR_CAPABLE_IDMAP */ > + > +/* inode_owner_or_capable() takes user_ns */ > +/* #undef HAVE_INODE_OWNER_OR_CAPABLE_USERNS */ > + > +/* inode_set_atime_to_ts() exists in linux/fs.h */ > +/* #undef HAVE_INODE_SET_ATIME_TO_TS */ > + > +/* inode_set_ctime_to_ts() exists in linux/fs.h */ > +/* #undef HAVE_INODE_SET_CTIME_TO_TS */ > + > +/* inode_set_mtime_to_ts() exists in linux/fs.h */ > +/* #undef HAVE_INODE_SET_MTIME_TO_TS */ > + > +/* timestamp_truncate() exists */ > +/* #undef HAVE_INODE_TIMESTAMP_TRUNCATE */ > + > +/* Define to 1 if you have the <inttypes.h> header file. */ > +#define HAVE_INTTYPES_H 1 > + > +/* iops->create() takes struct mnt_idmap* */ > +/* #undef HAVE_IOPS_CREATE_IDMAP */ > + > +/* iops->create() takes struct user_namespace* */ > +/* #undef HAVE_IOPS_CREATE_USERNS */ > + > +/* iops->mkdir() takes struct mnt_idmap* */ > +/* #undef HAVE_IOPS_MKDIR_IDMAP */ > + > +/* iops->mkdir() takes struct user_namespace* */ > +/* #undef HAVE_IOPS_MKDIR_USERNS */ > + > +/* iops->mknod() takes struct mnt_idmap* */ > +/* #undef HAVE_IOPS_MKNOD_IDMAP */ > + > +/* iops->mknod() takes struct user_namespace* */ > +/* #undef HAVE_IOPS_MKNOD_USERNS */ > + > +/* iops->permission() takes struct mnt_idmap* */ > +/* #undef HAVE_IOPS_PERMISSION_IDMAP */ > + > +/* iops->permission() takes struct user_namespace* */ > +/* #undef HAVE_IOPS_PERMISSION_USERNS */ > + > +/* iops->rename() takes struct mnt_idmap* */ > +/* #undef HAVE_IOPS_RENAME_IDMAP */ > + > +/* iops->rename() takes struct user_namespace* */ > +/* #undef HAVE_IOPS_RENAME_USERNS */ > + > +/* iops->symlink() takes struct mnt_idmap* */ > +/* #undef HAVE_IOPS_SYMLINK_IDMAP */ > + > +/* iops->symlink() takes struct user_namespace* */ > +/* #undef HAVE_IOPS_SYMLINK_USERNS */ > + > +/* iov_iter_get_pages2() is available */ > +/* #undef HAVE_IOV_ITER_GET_PAGES2 */ > + > +/* iov_iter_type() is available */ > +/* #undef HAVE_IOV_ITER_TYPE */ > + > +/* Define to 1 if you have the 'issetugid' function. */ > +#define HAVE_ISSETUGID 1 > + > +/* iter_iov() is available */ > +/* #undef HAVE_ITER_IOV */ > + > +/* iter_is_ubuf() is available */ > +/* #undef HAVE_ITER_IS_UBUF */ > + > +/* kernel has kernel_fpu_* functions */ > +/* #undef HAVE_KERNEL_FPU */ > + > +/* kernel has asm/fpu/api.h */ > +/* #undef HAVE_KERNEL_FPU_API_HEADER */ > + > +/* kernel fpu internal */ > +/* #undef HAVE_KERNEL_FPU_INTERNAL */ > + > +/* kernel has asm/fpu/internal.h */ > +/* #undef HAVE_KERNEL_FPU_INTERNAL_HEADER */ > + > +/* Define if compiler supports -Winfinite-recursion */ > +/* #undef HAVE_KERNEL_INFINITE_RECURSION */ > + > +/* kernel defines intptr_t */ > +/* #undef HAVE_KERNEL_INTPTR_T */ > + > +/* kernel has kernel_neon_* functions */ > +/* #undef HAVE_KERNEL_NEON */ > + > +/* kernel does stack verification */ > +/* #undef HAVE_KERNEL_OBJTOOL */ > + > +/* kernel has linux/objtool.h */ > +/* #undef HAVE_KERNEL_OBJTOOL_HEADER */ > + > +/* strlcpy() exists */ > +/* #undef HAVE_KERNEL_STRLCPY */ > + > +/* kernel has kmap_local_page */ > +/* #undef HAVE_KMAP_LOCAL_PAGE */ > + > +/* Define if you have [aio] */ > +/* #undef HAVE_LIBAIO */ > + > +/* Define if you have [blkid] */ > +/* #undef HAVE_LIBBLKID */ > + > +/* Define if you have [crypto] */ > +#define HAVE_LIBCRYPTO 1 > + > +/* Define if you have [tirpc] */ > +/* #undef HAVE_LIBTIRPC */ > + > +/* Define if you have [udev] */ > +/* #undef HAVE_LIBUDEV */ > + > +/* Define if you have [unwind] */ > +/* #undef HAVE_LIBUNWIND */ > + > +/* libunwind has unw_get_elf_filename */ > +/* #undef HAVE_LIBUNWIND_ELF */ > + > +/* Define if you have [uuid] */ > +/* #undef HAVE_LIBUUID */ > + > +/* building against unsupported kernel version */ > +/* #undef HAVE_LINUX_EXPERIMENTAL */ > + > +/* makedev() is declared in sys/mkdev.h */ > +/* #undef HAVE_MAKEDEV_IN_MKDEV */ > + > +/* makedev() is declared in sys/sysmacros.h */ > +/* #undef HAVE_MAKEDEV_IN_SYSMACROS */ > + > +/* Noting that make_request_fn() returns blk_qc_t */ > +/* #undef HAVE_MAKE_REQUEST_FN_RET_QC */ > + > +/* Define to 1 if you have the 'mlockall' function. */ > +#define HAVE_MLOCKALL 1 > + > +/* PG_error flag is available */ > +/* #undef HAVE_MM_PAGE_FLAG_ERROR */ > + > +/* page_mapping() is available */ > +/* #undef HAVE_MM_PAGE_MAPPING */ > + > +/* page_size() is available */ > +/* #undef HAVE_MM_PAGE_SIZE */ > + > +/* Define if host toolchain supports MOVBE */ > +#define HAVE_MOVBE 1 > + > +/* folio_wait_bit() exists */ > +/* #undef HAVE_PAGEMAP_FOLIO_WAIT_BIT */ > + > +/* part_to_dev() exists */ > +/* #undef HAVE_PART_TO_DEV */ > + > +/* iops->getattr() takes a path */ > +/* #undef HAVE_PATH_IOPS_GETATTR */ > + > +/* Define if host toolchain supports PCLMULQDQ */ > +#define HAVE_PCLMULQDQ 1 > + > +/* pin_user_pages_unlocked() is available */ > +/* #undef HAVE_PIN_USER_PAGES_UNLOCKED */ > + > +/* proc_handler ctl_table arg is const */ > +/* #undef HAVE_PROC_HANDLER_CTL_TABLE_CONST */ > + > +/* proc_ops structure exists */ > +/* #undef HAVE_PROC_OPS_STRUCT */ > + > +/* If available, contains the Python version number currently in use. */ > +#define HAVE_PYTHON "3.7" > + > +/* qat is enabled and existed */ > +/* #undef HAVE_QAT */ > + > +/* struct reclaim_state has reclaimed */ > +/* #undef HAVE_RECLAIM_STATE_RECLAIMED */ > + > +/* register_shrinker is vararg */ > +/* #undef HAVE_REGISTER_SHRINKER_VARARG */ > + > +/* register_sysctl_sz exists */ > +/* #undef HAVE_REGISTER_SYSCTL_SZ */ > + > +/* register_sysctl_table exists */ > +/* #undef HAVE_REGISTER_SYSCTL_TABLE */ > + > +/* iops->rename() wants flags */ > +/* #undef HAVE_RENAME_WANTS_FLAGS */ > + > +/* revalidate_disk() is available */ > +/* #undef HAVE_REVALIDATE_DISK */ > + > +/* revalidate_disk_size() is available */ > +/* #undef HAVE_REVALIDATE_DISK_SIZE */ > + > +/* Define to 1 if you have the <security/pam_modules.h> header file. */ > +#define HAVE_SECURITY_PAM_MODULES_H 1 > + > +/* setattr_prepare() accepts mnt_idmap */ > +/* #undef HAVE_SETATTR_PREPARE_IDMAP */ > + > +/* setattr_prepare() is available, doesn't accept user_namespace */ > +/* #undef HAVE_SETATTR_PREPARE_NO_USERNS */ > + > +/* setattr_prepare() accepts user_namespace */ > +/* #undef HAVE_SETATTR_PREPARE_USERNS */ > + > +/* iops->set_acl() takes 4 args, arg1 is struct mnt_idmap * */ > +/* #undef HAVE_SET_ACL_IDMAP_DENTRY */ > + > +/* iops->set_acl() takes 4 args */ > +/* #undef HAVE_SET_ACL_USERNS */ > + > +/* iops->set_acl() takes 4 args, arg2 is struct dentry * */ > +/* #undef HAVE_SET_ACL_USERNS_DENTRY_ARG2 */ > + > +/* shrinker_register exists */ > +/* #undef HAVE_SHRINKER_REGISTER */ > + > +/* kernel_siginfo_t exists */ > +/* #undef HAVE_SIGINFO */ > + > +#if defined(__amd64__) || defined(__i386__) > +/* Define if host toolchain supports SSE */ > +#define HAVE_SSE 1 > + > +/* Define if host toolchain supports SSE2 */ > +#define HAVE_SSE2 1 > + > +/* Define if host toolchain supports SSE3 */ > +#define HAVE_SSE3 1 > + > +/* Define if host toolchain supports SSE4.1 */ > +#define HAVE_SSE4_1 1 > + > +/* Define if host toolchain supports SSE4.2 */ > +#define HAVE_SSE4_2 1 > + > +/* Define if host toolchain supports SSSE3 */ > +#define HAVE_SSSE3 1 > +#endif > + > +/* STACK_FRAME_NON_STANDARD is defined */ > +/* #undef HAVE_STACK_FRAME_NON_STANDARD */ > + > +/* standalone <linux/stdarg.h> exists */ > +/* #undef HAVE_STANDALONE_LINUX_STDARG */ > + > +/* Define to 1 if you have the <stdint.h> header file. */ > +#define HAVE_STDINT_H 1 > + > +/* Define to 1 if you have the <stdio.h> header file. */ > +#define HAVE_STDIO_H 1 > + > +/* Define to 1 if you have the <stdlib.h> header file. */ > +#define HAVE_STDLIB_H 1 > + > +/* Define to 1 if you have the <strings.h> header file. */ > +#define HAVE_STRINGS_H 1 > + > +/* Define to 1 if you have the <string.h> header file. */ > +#define HAVE_STRING_H 1 > + > +/* Define to 1 if you have the 'strlcat' function. */ > +#define HAVE_STRLCAT 1 > + > +/* Define to 1 if you have the 'strlcpy' function. */ > *** 224 LINES SKIPPED *** > -- Colin Percival FreeBSD Release Engineering Lead & EC2 platform maintainer Founder, Tarsnap | www.tarsnap.com | Online backups for the truly paranoid
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?010001969d620e32-36e03f3d-3fa4-4a62-aa26-0f411b8710fa-000000>