1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020
|
/* 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 */
#undef HAVE_AES
/* Define if host toolchain supports AVX */
#undef HAVE_AVX
/* Define if host toolchain supports AVX2 */
#undef HAVE_AVX2
/* Define if host toolchain supports AVX512BW */
#undef HAVE_AVX512BW
/* Define if host toolchain supports AVX512CD */
#undef HAVE_AVX512CD
/* Define if host toolchain supports AVX512DQ */
#undef HAVE_AVX512DQ
/* Define if host toolchain supports AVX512ER */
#undef HAVE_AVX512ER
/* Define if host toolchain supports AVX512F */
#undef HAVE_AVX512F
/* Define if host toolchain supports AVX512IFMA */
#undef HAVE_AVX512IFMA
/* Define if host toolchain supports AVX512PF */
#undef HAVE_AVX512PF
/* Define if host toolchain supports AVX512VBMI */
#undef HAVE_AVX512VBMI
/* Define if host toolchain supports AVX512VL */
#undef HAVE_AVX512VL
/* bdevname() is available */
#undef HAVE_BDEVNAME
/* bdev_check_media_change() exists */
#undef HAVE_BDEV_CHECK_MEDIA_CHANGE
/* 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
/* 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() handles ERESTARTSYS */
#undef HAVE_BLKDEV_GET_ERESTARTSYS
/* blkdev_issue_discard() is available */
#undef HAVE_BLKDEV_ISSUE_DISCARD
/* blkdev_issue_secure_erase() is available */
#undef HAVE_BLKDEV_ISSUE_SECURE_ERASE
/* 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_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 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
/* 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_to_iter() is available */
#undef HAVE_COPY_TO_ITER
/* 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_*_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. */
#undef HAVE_DLFCN_H
/* 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
/* sops->evict_inode() exists */
#undef HAVE_EVICT_INODE
/* FALLOC_FL_ZERO_RANGE is defined */
#undef HAVE_FALLOC_FL_ZERO_RANGE
/* fault_in_iov_iter_readable() is available */
#undef HAVE_FAULT_IN_IOV_ITER_READABLE
/* fops->aio_fsync() exists */
#undef HAVE_FILE_AIO_FSYNC
/* file_dentry() is available */
#undef HAVE_FILE_DENTRY
/* file_inode() is available */
#undef HAVE_FILE_INODE
/* iops->follow_link() cookie */
#undef HAVE_FOLLOW_LINK_COOKIE
/* iops->follow_link() nameidata */
#undef HAVE_FOLLOW_LINK_NAMEIDATA
/* fops->fsync() with range */
#undef HAVE_FSYNC_RANGE
/* fops->fsync() without dentry */
#undef HAVE_FSYNC_WITHOUT_DENTRY
/* generic_fillattr requires struct user_namespace* */
#undef HAVE_GENERIC_FILLATTR_USERNS
/* generic_*_io_acct() 3 arg available */
#undef HAVE_GENERIC_IO_ACCT_3ARG
/* generic_*_io_acct() 4 arg available */
#undef HAVE_GENERIC_IO_ACCT_4ARG
/* generic_readlink is global */
#undef HAVE_GENERIC_READLINK
/* generic_setxattr() exists */
#undef HAVE_GENERIC_SETXATTR
/* generic_write_checks() takes kiocb */
#undef HAVE_GENERIC_WRITE_CHECKS_KIOCB
/* Define if the GNU gettext() function is already present or preinstalled. */
#undef HAVE_GETTEXT
/* 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
/* iops->get_link() cookie */
#undef HAVE_GET_LINK_COOKIE
/* iops->get_link() delayed */
#undef HAVE_GET_LINK_DELAYED
/* group_info->gid exists */
#undef HAVE_GROUP_INFO_GID
/* has_capability() is available */
#undef HAVE_HAS_CAPABILITY
/* Define if you have the iconv() function and it works. */
#undef HAVE_ICONV
/* Define if compiler supports -Wimplicit-fallthrough */
#undef HAVE_IMPLICIT_FALLTHROUGH
/* Define if compiler supports -Winfinite-recursion */
#undef HAVE_INFINITE_RECURSION
/* yes */
#undef HAVE_INODE_LOCK_SHARED
/* inode_owner_or_capable() exists */
#undef HAVE_INODE_OWNER_OR_CAPABLE
/* inode_owner_or_capable() takes user_ns */
#undef HAVE_INODE_OWNER_OR_CAPABLE_IDMAPPED
/* inode_set_flags() exists */
#undef HAVE_INODE_SET_FLAGS
/* inode_set_iversion() exists */
#undef HAVE_INODE_SET_IVERSION
/* inode->i_*time's are timespec64 */
#undef HAVE_INODE_TIMESPEC64_TIMES
/* timestamp_truncate() exists */
#undef HAVE_INODE_TIMESTAMP_TRUNCATE
/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
/* in_compat_syscall() is available */
#undef HAVE_IN_COMPAT_SYSCALL
/* iops->create() takes struct user_namespace* */
#undef HAVE_IOPS_CREATE_USERNS
/* iops->mkdir() takes struct user_namespace* */
#undef HAVE_IOPS_MKDIR_USERNS
/* iops->mknod() takes struct user_namespace* */
#undef HAVE_IOPS_MKNOD_USERNS
/* iops->rename() takes struct user_namespace* */
#undef HAVE_IOPS_RENAME_USERNS
/* iops->symlink() takes struct user_namespace* */
#undef HAVE_IOPS_SYMLINK_USERNS
/* iov_iter_advance() is available */
#undef HAVE_IOV_ITER_ADVANCE
/* iov_iter_count() is available */
#undef HAVE_IOV_ITER_COUNT
/* iov_iter_fault_in_readable() is available */
#undef HAVE_IOV_ITER_FAULT_IN_READABLE
/* iov_iter_revert() is available */
#undef HAVE_IOV_ITER_REVERT
/* iov_iter_type() is available */
#undef HAVE_IOV_ITER_TYPE
/* iov_iter types are available */
#undef HAVE_IOV_ITER_TYPES
/* yes */
#undef HAVE_IO_SCHEDULE_TIMEOUT
/* Define to 1 if you have the `issetugid' function. */
#undef HAVE_ISSETUGID
/* 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
/* kernel has asm/fpu/xcr.h */
#undef HAVE_KERNEL_FPU_XCR_HEADER
/* kernel fpu and XSAVE internal */
#undef HAVE_KERNEL_FPU_XSAVE_INTERNAL
/* uncached_acl_sentinel() exists */
#undef HAVE_KERNEL_GET_ACL_HANDLE_CACHE
/* kernel does stack verification */
#undef HAVE_KERNEL_OBJTOOL
/* kernel has linux/objtool.h */
#undef HAVE_KERNEL_OBJTOOL_HEADER
/* kernel_read() take loff_t pointer */
#undef HAVE_KERNEL_READ_PPOS
/* timer_list.function gets a timer_list */
#undef HAVE_KERNEL_TIMER_FUNCTION_TIMER_LIST
/* struct timer_list has a flags member */
#undef HAVE_KERNEL_TIMER_LIST_FLAGS
/* timer_setup() is available */
#undef HAVE_KERNEL_TIMER_SETUP
/* kernel_write() take loff_t pointer */
#undef HAVE_KERNEL_WRITE_PPOS
/* kmem_cache_create_usercopy() exists */
#undef HAVE_KMEM_CACHE_CREATE_USERCOPY
/* kstrtoul() exists */
#undef HAVE_KSTRTOUL
/* ktime_get_coarse_real_ts64() exists */
#undef HAVE_KTIME_GET_COARSE_REAL_TS64
/* ktime_get_raw_ts64() exists */
#undef HAVE_KTIME_GET_RAW_TS64
/* kvmalloc exists */
#undef HAVE_KVMALLOC
/* Define if you have [aio] */
#undef HAVE_LIBAIO
/* Define if you have [blkid] */
#undef HAVE_LIBBLKID
/* Define if you have [crypto] */
#undef HAVE_LIBCRYPTO
/* Define if you have [tirpc] */
#undef HAVE_LIBTIRPC
/* Define if you have [udev] */
#undef HAVE_LIBUDEV
/* Define if you have [uuid] */
#undef HAVE_LIBUUID
/* linux/blk-cgroup.h exists */
#undef HAVE_LINUX_BLK_CGROUP_HEADER
/* lseek_execute() is available */
#undef HAVE_LSEEK_EXECUTE
/* 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
/* Noting that make_request_fn() returns void */
#undef HAVE_MAKE_REQUEST_FN_RET_VOID
/* iops->mkdir() takes umode_t */
#undef HAVE_MKDIR_UMODE_T
/* Define to 1 if you have the `mlockall' function. */
#undef HAVE_MLOCKALL
/* lookup_bdev() wants mode arg */
#undef HAVE_MODE_LOOKUP_BDEV
/* Define if host toolchain supports MOVBE */
#undef HAVE_MOVBE
/* new_sync_read()/new_sync_write() are available */
#undef HAVE_NEW_SYNC_READ
/* 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 */
#undef HAVE_PCLMULQDQ
/* percpu_counter_add_batch() is defined */
#undef HAVE_PERCPU_COUNTER_ADD_BATCH
/* percpu_counter_init() wants gfp_t */
#undef HAVE_PERCPU_COUNTER_INIT_WITH_GFP
/* posix_acl_chmod() exists */
#undef HAVE_POSIX_ACL_CHMOD
/* posix_acl_from_xattr() needs user_ns */
#undef HAVE_POSIX_ACL_FROM_XATTR_USERNS
/* posix_acl_release() is available */
#undef HAVE_POSIX_ACL_RELEASE
/* posix_acl_release() is GPL-only */
#undef HAVE_POSIX_ACL_RELEASE_GPL_ONLY
/* posix_acl_valid() wants user namespace */
#undef HAVE_POSIX_ACL_VALID_WITH_NS
/* proc_ops structure exists */
#undef HAVE_PROC_OPS_STRUCT
/* iops->put_link() cookie */
#undef HAVE_PUT_LINK_COOKIE
/* iops->put_link() delayed */
#undef HAVE_PUT_LINK_DELAYED
/* iops->put_link() nameidata */
#undef HAVE_PUT_LINK_NAMEIDATA
/* If available, contains the Python version number currently in use. */
#undef HAVE_PYTHON
/* qat is enabled and existed */
#undef HAVE_QAT
/* register_shrinker is vararg */
#undef HAVE_REGISTER_SHRINKER_VARARG
/* iops->rename() wants flags */
#undef HAVE_RENAME_WANTS_FLAGS
/* REQ_DISCARD is defined */
#undef HAVE_REQ_DISCARD
/* REQ_FLUSH is defined */
#undef HAVE_REQ_FLUSH
/* REQ_OP_DISCARD is defined */
#undef HAVE_REQ_OP_DISCARD
/* REQ_OP_FLUSH is defined */
#undef HAVE_REQ_OP_FLUSH
/* REQ_OP_SECURE_ERASE is defined */
#undef HAVE_REQ_OP_SECURE_ERASE
/* REQ_PREFLUSH is defined */
#undef HAVE_REQ_PREFLUSH
/* revalidate_disk() is available */
#undef HAVE_REVALIDATE_DISK
/* revalidate_disk_size() is available */
#undef HAVE_REVALIDATE_DISK_SIZE
/* struct rw_semaphore has member activity */
#undef HAVE_RWSEM_ACTIVITY
/* struct rw_semaphore has atomic_long_t member count */
#undef HAVE_RWSEM_ATOMIC_LONG_COUNT
/* linux/sched/signal.h exists */
#undef HAVE_SCHED_SIGNAL_HEADER
/* Define to 1 if you have the <security/pam_modules.h> header file. */
#undef HAVE_SECURITY_PAM_MODULES_H
/* 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() exists, takes 3 args */
#undef HAVE_SET_ACL
/* 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
/* set_cached_acl() is usable */
#undef HAVE_SET_CACHED_ACL_USABLE
/* set_special_state() exists */
#undef HAVE_SET_SPECIAL_STATE
/* struct shrink_control exists */
#undef HAVE_SHRINK_CONTROL_STRUCT
/* kernel_siginfo_t exists */
#undef HAVE_SIGINFO
/* signal_stop() exists */
#undef HAVE_SIGNAL_STOP
/* new shrinker callback wants 2 args */
#undef HAVE_SINGLE_SHRINKER_CALLBACK
/* cs->count_objects exists */
#undef HAVE_SPLIT_SHRINKER_CALLBACK
/* Define if host toolchain supports SSE */
#undef HAVE_SSE
/* Define if host toolchain supports SSE2 */
#undef HAVE_SSE2
/* Define if host toolchain supports SSE3 */
#undef HAVE_SSE3
/* Define if host toolchain supports SSE4.1 */
#undef HAVE_SSE4_1
/* Define if host toolchain supports SSE4.2 */
#undef HAVE_SSE4_2
/* Define if host toolchain supports SSSE3 */
#undef HAVE_SSSE3
/* 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. */
#undef HAVE_STDINT_H
/* Define to 1 if you have the <stdio.h> header file. */
#undef HAVE_STDIO_H
/* Define to 1 if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H
/* Define to 1 if you have the <strings.h> header file. */
#undef HAVE_STRINGS_H
/* Define to 1 if you have the <string.h> header file. */
#undef HAVE_STRING_H
/* Define to 1 if you have the `strlcat' function. */
#undef HAVE_STRLCAT
/* Define to 1 if you have the `strlcpy' function. */
#undef HAVE_STRLCPY
/* submit_bio is member of struct block_device_operations */
#undef HAVE_SUBMIT_BIO_IN_BLOCK_DEVICE_OPERATIONS
/* super_setup_bdi_name() exits */
#undef HAVE_SUPER_SETUP_BDI_NAME
/* super_block->s_user_ns exists */
#undef HAVE_SUPER_USER_NS
/* struct kobj_type has default_groups */
#undef HAVE_SYSFS_DEFAULT_GROUPS
/* Define to 1 if you have the <sys/stat.h> header file. */
#undef HAVE_SYS_STAT_H
/* Define to 1 if you have the <sys/types.h> header file. */
#undef HAVE_SYS_TYPES_H
/* i_op->tmpfile() exists */
#undef HAVE_TMPFILE
/* i_op->tmpfile() uses old dentry signature */
#undef HAVE_TMPFILE_DENTRY
/* i_op->tmpfile() has userns */
#undef HAVE_TMPFILE_USERNS
/* totalhigh_pages() exists */
#undef HAVE_TOTALHIGH_PAGES
/* kernel has totalram_pages() */
#undef HAVE_TOTALRAM_PAGES_FUNC
/* Define to 1 if you have the `udev_device_get_is_initialized' function. */
#undef HAVE_UDEV_DEVICE_GET_IS_INITIALIZED
/* kernel has __kernel_fpu_* functions */
#undef HAVE_UNDERSCORE_KERNEL_FPU
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
/* iops->getattr() takes struct user_namespace* */
#undef HAVE_USERNS_IOPS_GETATTR
/* iops->getattr() takes a vfsmount */
#undef HAVE_VFSMOUNT_IOPS_GETATTR
/* aops->direct_IO() uses iovec */
#undef HAVE_VFS_DIRECT_IO_IOVEC
/* aops->direct_IO() uses iov_iter without rw */
#undef HAVE_VFS_DIRECT_IO_ITER
/* aops->direct_IO() uses iov_iter with offset */
#undef HAVE_VFS_DIRECT_IO_ITER_OFFSET
/* aops->direct_IO() uses iov_iter with rw and offset */
#undef HAVE_VFS_DIRECT_IO_ITER_RW_OFFSET
/* filemap_dirty_folio exists */
#undef HAVE_VFS_FILEMAP_DIRTY_FOLIO
/* All required iov_iter interfaces are available */
#undef HAVE_VFS_IOV_ITER
/* fops->iterate() is available */
#undef HAVE_VFS_ITERATE
/* fops->iterate_shared() is available */
#undef HAVE_VFS_ITERATE_SHARED
/* fops->readdir() is available */
#undef HAVE_VFS_READDIR
/* address_space_operations->readpages exists */
#undef HAVE_VFS_READPAGES
/* read_folio exists */
#undef HAVE_VFS_READ_FOLIO
/* fops->read/write_iter() are available */
#undef HAVE_VFS_RW_ITERATE
/* __set_page_dirty_nobuffers exists */
#undef HAVE_VFS_SET_PAGE_DIRTY_NOBUFFERS
/* __vmalloc page flags exists */
#undef HAVE_VMALLOC_PAGE_KERNEL
/* yes */
#undef HAVE_WAIT_ON_BIT_ACTION
/* wait_queue_entry_t exists */
#undef HAVE_WAIT_QUEUE_ENTRY_T
/* wq_head->head and wq_entry->entry exist */
#undef HAVE_WAIT_QUEUE_HEAD_ENTRY
/* xattr_handler->get() wants dentry */
#undef HAVE_XATTR_GET_DENTRY
/* xattr_handler->get() wants both dentry and inode */
#undef HAVE_XATTR_GET_DENTRY_INODE
/* xattr_handler->get() wants dentry and inode and flags */
#undef HAVE_XATTR_GET_DENTRY_INODE_FLAGS
/* xattr_handler->get() wants xattr_handler */
#undef HAVE_XATTR_GET_HANDLER
/* xattr_handler has name */
#undef HAVE_XATTR_HANDLER_NAME
/* xattr_handler->list() wants dentry */
#undef HAVE_XATTR_LIST_DENTRY
/* xattr_handler->list() wants xattr_handler */
#undef HAVE_XATTR_LIST_HANDLER
/* xattr_handler->list() wants simple */
#undef HAVE_XATTR_LIST_SIMPLE
/* xattr_handler->set() wants dentry */
#undef HAVE_XATTR_SET_DENTRY
/* xattr_handler->set() wants both dentry and inode */
#undef HAVE_XATTR_SET_DENTRY_INODE
/* xattr_handler->set() wants xattr_handler */
#undef HAVE_XATTR_SET_HANDLER
/* xattr_handler->set() takes user_namespace */
#undef HAVE_XATTR_SET_USERNS
/* Define if host toolchain supports XSAVE */
#undef HAVE_XSAVE
/* Define if host toolchain supports XSAVEOPT */
#undef HAVE_XSAVEOPT
/* Define if host toolchain supports XSAVES */
#undef HAVE_XSAVES
/* ZERO_PAGE() is GPL-only */
#undef HAVE_ZERO_PAGE_GPL_ONLY
/* Define if you have [z] */
#undef HAVE_ZLIB
/* __posix_acl_chmod() exists */
#undef HAVE___POSIX_ACL_CHMOD
/* kernel exports FPU functions */
#undef KERNEL_EXPORTS_X86_FPU
/* whether the chosen libfetch is to be loaded at run-time */
#undef LIBFETCH_DYNAMIC
/* libfetch is fetch(3) */
#undef LIBFETCH_IS_FETCH
/* libfetch is libcurl */
#undef LIBFETCH_IS_LIBCURL
/* soname of chosen libfetch */
#undef LIBFETCH_SONAME
/* Define to the sub-directory where libtool stores uninstalled libraries. */
#undef LT_OBJDIR
/* make_request_fn() return type */
#undef MAKE_REQUEST_FN_RET
/* Name of package */
#undef PACKAGE
/* Define to the address where bug reports for this package should be sent. */
#undef PACKAGE_BUGREPORT
/* Define to the full name of this package. */
#undef PACKAGE_NAME
/* Define to the full name and version of this package. */
#undef PACKAGE_STRING
/* Define to the one symbol short name of this package. */
#undef PACKAGE_TARNAME
/* Define to the home page for this package. */
#undef PACKAGE_URL
/* Define to the version of this package. */
#undef PACKAGE_VERSION
/* struct shrink_control has nid */
#undef SHRINK_CONTROL_HAS_NID
/* using complete_and_exit() instead */
#undef SPL_KTHREAD_COMPLETE_AND_EXIT
/* Defined for legacy compatibility. */
#undef SPL_META_ALIAS
/* Defined for legacy compatibility. */
#undef SPL_META_RELEASE
/* Defined for legacy compatibility. */
#undef SPL_META_VERSION
/* pde_data() is PDE_DATA() */
#undef SPL_PDE_DATA
/* Define to 1 if all of the C90 standard headers exist (not just the ones
required in a freestanding environment). This macro is provided for
backward compatibility; new code need not use it. */
#undef STDC_HEADERS
/* True if ZFS is to be compiled for a FreeBSD system */
#undef SYSTEM_FREEBSD
/* True if ZFS is to be compiled for a Linux system */
#undef SYSTEM_LINUX
/* Version number of package */
#undef VERSION
/* zfs debugging enabled */
#undef ZFS_DEBUG
/* /dev/zfs minor */
#undef ZFS_DEVICE_MINOR
/* enum node_stat_item contains NR_FILE_PAGES */
#undef ZFS_ENUM_NODE_STAT_ITEM_NR_FILE_PAGES
/* enum node_stat_item contains NR_INACTIVE_ANON */
#undef ZFS_ENUM_NODE_STAT_ITEM_NR_INACTIVE_ANON
/* enum node_stat_item contains NR_INACTIVE_FILE */
#undef ZFS_ENUM_NODE_STAT_ITEM_NR_INACTIVE_FILE
/* enum zone_stat_item contains NR_FILE_PAGES */
#undef ZFS_ENUM_ZONE_STAT_ITEM_NR_FILE_PAGES
/* enum zone_stat_item contains NR_INACTIVE_ANON */
#undef ZFS_ENUM_ZONE_STAT_ITEM_NR_INACTIVE_ANON
/* enum zone_stat_item contains NR_INACTIVE_FILE */
#undef ZFS_ENUM_ZONE_STAT_ITEM_NR_INACTIVE_FILE
/* GENHD_FL_EXT_DEVT flag is not available */
#undef ZFS_GENHD_FL_EXT_DEVT
/* GENHD_FL_NO_PART_SCAN flag is available */
#undef ZFS_GENHD_FL_NO_PART
/* global_node_page_state() exists */
#undef ZFS_GLOBAL_NODE_PAGE_STATE
/* global_zone_page_state() exists */
#undef ZFS_GLOBAL_ZONE_PAGE_STATE
/* Define to 1 if GPL-only symbols can be used */
#undef ZFS_IS_GPL_COMPATIBLE
/* Define the project alias string. */
#undef ZFS_META_ALIAS
/* Define the project author. */
#undef ZFS_META_AUTHOR
/* Define the project release date. */
#undef ZFS_META_DATA
/* Define the maximum compatible kernel version. */
#undef ZFS_META_KVER_MAX
/* Define the minimum compatible kernel version. */
#undef ZFS_META_KVER_MIN
/* Define the project license. */
#undef ZFS_META_LICENSE
/* Define the libtool library 'age' version information. */
#undef ZFS_META_LT_AGE
/* Define the libtool library 'current' version information. */
#undef ZFS_META_LT_CURRENT
/* Define the libtool library 'revision' version information. */
#undef ZFS_META_LT_REVISION
/* Define the project name. */
#undef ZFS_META_NAME
/* Define the project release. */
#undef ZFS_META_RELEASE
/* Define the project version. */
#undef ZFS_META_VERSION
/* count is located in percpu_ref.data */
#undef ZFS_PERCPU_REF_COUNT_IN_DATA
#undef PACKAGE
#undef PACKAGE_BUGREPORT
#undef PACKAGE_NAME
#undef PACKAGE_STRING
#undef PACKAGE_TARNAME
#undef PACKAGE_VERSION
#undef STDC_HEADERS
#undef VERSION
|