1# $FreeBSD$ 2# 3# On the handling of kernel options 4# 5# All kernel options should be listed in NOTES, with suitable 6# descriptions. Negative options (options that make some code not 7# compile) should be commented out; LINT (generated from NOTES) should 8# compile as much code as possible. Try to structure option-using 9# code so that a single option only switch code on, or only switch 10# code off, to make it possible to have a full compile-test. If 11# necessary, you can check for COMPILING_LINT to get maximum code 12# coverage. 13# 14# All new options shall also be listed in either "conf/options" or 15# "conf/options.<machine>". Options that affect a single source-file 16# <xxx>.[c|s] should be directed into "opt_<xxx>.h", while options 17# that affect multiple files should either go in "opt_global.h" if 18# this is a kernel-wide option (used just about everywhere), or in 19# "opt_<option-name-in-lower-case>.h" if it affect only some files. 20# Note that the effect of listing only an option without a 21# header-file-name in conf/options (and cousins) is that the last 22# convention is followed. 23# 24# This handling scheme is not yet fully implemented. 25# 26# 27# Format of this file: 28# Option name filename 29# 30# If filename is missing, the default is 31# opt_<name-of-option-in-lower-case>.h 32 33# Adaptec Array Controller driver options 34AAC_DEBUG opt_aac.h # Debugging levels: 35 # 0 - quiet, only emit warnings 36 # 1 - noisy, emit major function 37 # points and things done 38 # 2 - extremely noisy, emit trace 39 # items in loops, etc. 40 41# Adaptec aic7xxx SCSI controller options 42AHC_ALLOW_MEMIO opt_aic7xxx.h # Allow PCI devices to use memory 43 # mapped I/O 44 45AHC_TMODE_ENABLE opt_aic7xxx.h # Bitmap of units to enable 46 # targetmode operations. 47 48AHC_DUMP_EEPROM opt_aic7xxx.h # Dump the contents of our 49 # configuration prom. 50 51AHC_DEBUG opt_aic7xxx.h # Compile in Aic7xxx Debugging code. 52 53AHC_DEBUG_OPTS opt_aic7xxx.h # Aic7xxx driver debugging options. 54 # See sys/dev/aic7xxx/aic7xxx.h 55 56AHC_REG_PRETTY_PRINT opt_aic7xxx.h # Print register bitfields in debug 57 # output. Adds ~128k to driver. 58 59# Adaptec aic79xx SCSI controller options 60AHD_DEBUG opt_aic79xx.h # Compile in Aic79xx Debugging code. 61 62AHD_DEBUG_OPTS opt_aic79xx.h # Aic79xx driver debugging options. 63 # See sys/dev/aic7xxx/aic79xx.h 64 65AHD_TMODE_ENABLE opt_aic79xx.h # Bitmap of units to enable 66 # targetmode operations. 67 68AHD_REG_PRETTY_PRINT opt_aic79xx.h # Print register bitfields in debug 69 # output. Adds ~215k to driver. 70 71ADW_ALLOW_MEMIO opt_adw.h # Allow PCI devices to use memory 72 # mapped I/O 73 74# Miscellaneous options. 75ALQ opt_alq.h 76ADAPTIVE_MUTEXES 77COMPAT_43 opt_compat.h 78COMPAT_FREEBSD4 opt_compat.h 79COMPAT_SUNOS opt_compat.h 80NO_COMPAT_FREEBSD4 opt_compat.h 81COMPILING_LINT opt_global.h 82CY_PCI_FASTINTR 83CONSPEED opt_comconsole.h 84DDB 85DDB_NOKLDSYM opt_ddb.h 86DDB_TRACE 87DDB_UNATTENDED 88GDB_REMOTE_CHAT opt_ddb.h 89GDBSPEED opt_ddb.h 90GEOM_AES opt_geom.h 91GEOM_APPLE opt_geom.h 92GEOM_BDE opt_geom.h 93GEOM_BSD opt_geom.h 94GEOM_GPT opt_geom.h 95GEOM_MBR opt_geom.h 96GEOM_MIRROR opt_geom.h 97GEOM_PC98 opt_geom.h 98GEOM_SUNLABEL opt_geom.h 99GEOM_VOL opt_geom.h 100HW_WDOG 101KSTACK_PAGES 102KSTACK_MAX_PAGES 103KTRACE 104KTRACE_REQUEST_POOL opt_ktrace.h 105LIBICONV 106MD_ROOT opt_md.h 107MD_ROOT_SIZE opt_md.h 108NDGBPORTS opt_dgb.h 109NTIMECOUNTER opt_ntp.h 110NSWAPDEV opt_swap.h 111NSWBUF_MIN opt_swap.h 112PANIC_REBOOT_WAIT_TIME opt_panic.h 113PPS_SYNC opt_ntp.h 114PUC_FASTINTR opt_puc.h 115QUOTA 116SCHED_4BSD opt_sched.h 117SCHED_ULE opt_sched.h 118SHOW_BUSYBUFS 119SPX_HACK 120SUIDDIR opt_suiddir.h 121MSGMNB opt_sysvipc.h 122MSGMNI opt_sysvipc.h 123MSGSEG opt_sysvipc.h 124MSGSSZ opt_sysvipc.h 125MSGTQL opt_sysvipc.h 126SEMMAP opt_sysvipc.h 127SEMMNI opt_sysvipc.h 128SEMMNS opt_sysvipc.h 129SEMMNU opt_sysvipc.h 130SEMMSL opt_sysvipc.h 131SEMOPM opt_sysvipc.h 132SEMUME opt_sysvipc.h 133SHMALL opt_sysvipc.h 134SHMMAX opt_sysvipc.h 135SHMMAXPGS opt_sysvipc.h 136SHMMIN opt_sysvipc.h 137SHMMNI opt_sysvipc.h 138SHMSEG opt_sysvipc.h 139SYSVMSG opt_sysvipc.h 140SYSVSEM opt_sysvipc.h 141SYSVSHM opt_sysvipc.h 142VFS_AIO 143WLCACHE opt_wavelan.h 144WLDEBUG opt_wavelan.h 145TTYHOG opt_tty.h 146DIRECTIO opt_directio.h 147 148# POSIX kernel options 149_KPOSIX_PRIORITY_SCHEDULING opt_posix.h 150P1003_1B_SEMAPHORES opt_posix.h 151 152##################################################################### 153# SECURITY POLICY PARAMETERS 154 155# Support for Mandatory Access Control (MAC) 156MAC opt_mac.h 157MAC_BIBA opt_dontuse.h 158MAC_BSDEXTENDED opt_dontuse.h 159MAC_DEBUG opt_mac.h 160MAC_IFOFF opt_dontuse.h 161MAC_LOMAC opt_dontuse.h 162MAC_MLS opt_dontuse.h 163MAC_NONE opt_dontuse.h 164MAC_PARTITION opt_dontuse.h 165MAC_PORTACL opt_dontuse.h 166MAC_SEEOTHERUIDS opt_dontuse.h 167MAC_TEST opt_dontuse.h 168 169# Do we want the config file compiled into the kernel? 170INCLUDE_CONFIG_FILE opt_config.h 171 172# Options for static filesystems. These should only be used at config 173# time, since the corresponding lkms cannot work if there are any static 174# dependencies. Unusability is enforced by hiding the defines for the 175# options in a never-included header. 176CD9660 opt_dontuse.h 177CODA opt_dontuse.h 178EXT2FS opt_dontuse.h 179FDESCFS opt_dontuse.h 180LINPROCFS opt_dontuse.h 181MSDOSFS opt_dontuse.h 182NULLFS opt_dontuse.h 183NWFS opt_dontuse.h 184PORTALFS opt_dontuse.h 185PROCFS opt_dontuse.h 186PSEUDOFS opt_dontuse.h 187UMAPFS opt_dontuse.h 188NTFS opt_dontuse.h 189HPFS opt_dontuse.h 190SMBFS opt_dontuse.h 191UNIONFS opt_dontuse.h 192UDF opt_dontuse.h 193 194# Broken - ffs_snapshot() dependency from ufs_lookup() :-( 195FFS opt_ffs_broken_fixme.h 196 197# These static filesystems has one slightly bogus static dependency in 198# sys/i386/i386/autoconf.c. If any of these filesystems are 199# statically compiled into the kernel, code for mounting them as root 200# filesystems will be enabled - but look below. 201NFSCLIENT opt_nfs.h 202NFSSERVER opt_nfs.h 203 204# If you are following the conditions in the copyright, 205# you can enable soft-updates which will speed up a lot of thigs 206# and make the system safer from crashes at the same time. 207# otherwise a STUB module will be compiled in. 208SOFTUPDATES opt_ffs.h 209 210# Enabling this option turns on support for Access Control Lists in UFS, 211# which can be used to support high security configurations. Depends on 212# UFS_EXTATTR. 213UFS_ACL opt_ufs.h 214 215# Enabling this option turns on support for extended attributes in UFS-based 216# filesystems, which can be used to support high security configurations 217# as well as new filesystem features. 218UFS_EXTATTR opt_ufs.h 219UFS_EXTATTR_AUTOSTART opt_ufs.h 220 221# Enable fast hash lookups for large directories on UFS-based filesystems. 222UFS_DIRHASH opt_ufs.h 223 224# The above static dependencies are planned removed, with a 225# <filesystem>_ROOT option to control if it usable as root. This list 226# allows these options to be present in config files already (though 227# they won't make any difference yet). 228NFS_ROOT opt_nfsroot.h 229 230# SMB/CIFS requester 231NETSMB opt_netsmb.h 232NETSMBCRYPTO opt_netsmb.h 233 234# Options used only in subr_param.c. 235HZ opt_param.h 236MAXFILES opt_param.h 237NBUF opt_param.h 238NMBCLUSTERS opt_param.h 239NSFBUFS opt_param.h 240VM_BCACHE_SIZE_MAX opt_param.h 241VM_SWZONE_SIZE_MAX opt_param.h 242MAXUSERS 243DFLDSIZ opt_param.h 244MAXDSIZ opt_param.h 245MAXSSIZ opt_param.h 246 247# Generic SCSI options. 248CAM_MAX_HIGHPOWER opt_cam.h 249CAMDEBUG opt_cam.h 250CAM_DEBUG_DELAY opt_cam.h 251CAM_DEBUG_BUS opt_cam.h 252CAM_DEBUG_TARGET opt_cam.h 253CAM_DEBUG_LUN opt_cam.h 254CAM_DEBUG_FLAGS opt_cam.h 255CAM_NEW_TRAN_CODE opt_cam.h 256SCSI_DELAY opt_scsi.h 257SCSI_NO_SENSE_STRINGS opt_scsi.h 258SCSI_NO_OP_STRINGS opt_scsi.h 259 260 261 262# Options used only in cam/scsi/scsi_cd.c 263CHANGER_MIN_BUSY_SECONDS opt_cd.h 264CHANGER_MAX_BUSY_SECONDS opt_cd.h 265 266# Options used only in cam/scsi/scsi_sa.c. 267SA_IO_TIMEOUT opt_sa.h 268SA_SPACE_TIMEOUT opt_sa.h 269SA_REWIND_TIMEOUT opt_sa.h 270SA_ERASE_TIMEOUT opt_sa.h 271SA_1FM_AT_EOD opt_sa.h 272 273# Options used only in cam/scsi/scsi_pt.c 274SCSI_PT_DEFAULT_TIMEOUT opt_pt.h 275 276# Options used only in cam/scsi/scsi_ses.c 277SES_ENABLE_PASSTHROUGH opt_ses.h 278 279# Options used in dev/sym/ (Symbios SCSI driver). 280SYM_SETUP_LP_PROBE_MAP opt_sym.h #-Low Priority Probe Map (bits) 281 # Allows the ncr to take precedence 282 # 1 (1<<0) -> 810a, 860 283 # 2 (1<<1) -> 825a, 875, 885, 895 284 # 4 (1<<2) -> 895a, 896, 1510d 285SYM_SETUP_SCSI_DIFF opt_sym.h #-HVD support for 825a, 875, 885 286 # disabled:0 (default), enabled:1 287SYM_SETUP_PCI_PARITY opt_sym.h #-PCI parity checking 288 # disabled:0, enabled:1 (default) 289SYM_SETUP_MAX_LUN opt_sym.h #-Number of LUNs supported 290 # default:8, range:[1..64] 291 292# Options used only in pci/ncr.c 293SCSI_NCR_DEBUG opt_ncr.h 294SCSI_NCR_MAX_SYNC opt_ncr.h 295SCSI_NCR_MAX_WIDE opt_ncr.h 296SCSI_NCR_MYADDR opt_ncr.h 297 298# Options used only in dev/isp/* 299ISP_TARGET_MODE opt_isp.h 300ISP_FW_CRASH_DUMP opt_isp.h 301 302# Options used in the 'ata' ATA/ATAPI driver 303ATA_STATIC_ID opt_ata.h 304ATA_NOPCI opt_ata.h 305DEV_ATADISK opt_ata.h 306DEV_ATAPICD opt_ata.h 307DEV_ATAPIST opt_ata.h 308DEV_ATAPIFD opt_ata.h 309DEV_ATAPICAM opt_ata.h 310ATA_DEBUG opt_ata.h 311ATAPI_DEBUG opt_ata.h 312ACD_DEBUG opt_ata.h 313AST_DEBUG opt_ata.h 314 315# Net stuff. 316ACCEPT_FILTER_DATA 317ACCEPT_FILTER_HTTP 318BOOTP opt_bootp.h 319BOOTP_COMPAT opt_bootp.h 320BOOTP_NFSROOT opt_bootp.h 321BOOTP_NFSV3 opt_bootp.h 322BOOTP_WIRED_TO opt_bootp.h 323BRIDGE opt_bdg.h 324ETHER_II opt_ef.h 325ETHER_8023 opt_ef.h 326ETHER_8022 opt_ef.h 327ETHER_SNAP opt_ef.h 328MROUTING opt_mrouting.h 329INET opt_inet.h 330INET6 opt_inet6.h 331IPSEC opt_ipsec.h 332IPSEC_ESP opt_ipsec.h 333IPSEC_DEBUG opt_ipsec.h 334IPSEC_FILTERGIF opt_ipsec.h 335FAST_IPSEC opt_ipsec.h 336IPDIVERT 337DUMMYNET opt_ipdn.h 338IPFILTER opt_ipfilter.h 339IPFILTER_LOG opt_ipfilter.h 340IPFILTER_DEFAULT_BLOCK opt_ipfilter.h 341PFIL_HOOKS opt_pfil_hooks.h 342IPFIREWALL opt_ipfw.h 343IPFIREWALL_VERBOSE opt_ipfw.h 344IPFIREWALL_VERBOSE_LIMIT opt_ipfw.h 345IPFIREWALL_DEFAULT_TO_ACCEPT opt_ipfw.h 346IPFIREWALL_FORWARD opt_ipfw.h 347IPV6FIREWALL opt_ip6fw.h 348IPV6FIREWALL_VERBOSE opt_ip6fw.h 349IPV6FIREWALL_VERBOSE_LIMIT opt_ip6fw.h 350IPV6FIREWALL_DEFAULT_TO_ACCEPT opt_ip6fw.h 351IPSTEALTH 352IPX opt_ipx.h 353IPXIP opt_ipx.h 354LIBMCHAIN 355NCP opt_ncp.h 356NETATALK opt_atalk.h 357PPP_BSDCOMP opt_ppp.h 358PPP_DEFLATE opt_ppp.h 359PPP_FILTER opt_ppp.h 360RANDOM_IP_ID 361SLIP_IFF_OPTS opt_slip.h 362TCPDEBUG 363TCP_DROP_SYNFIN opt_tcp_input.h 364XBONEHACK 365MBUF_FRAG_TEST opt_mbuf_frag_test.h 366 367# Netgraph(4). Use option NETGRAPH to enable the base netgraph code. 368# Each netgraph node type can be either be compiled into the kernel 369# or loaded dynamically. To get the former, include the corresponding 370# option below. Each type has its own man page, e.g. ng_async(4). 371NETGRAPH 372NETGRAPH_ASYNC opt_netgraph.h 373NETGRAPH_BPF opt_netgraph.h 374NETGRAPH_BRIDGE opt_netgraph.h 375NETGRAPH_CISCO opt_netgraph.h 376NETGRAPH_ECHO opt_netgraph.h 377NETGRAPH_ETHER opt_netgraph.h 378NETGRAPH_FRAME_RELAY opt_netgraph.h 379NETGRAPH_GIF opt_netgraph.h 380NETGRAPH_GIF_DEMUX opt_netgraph.h 381NETGRAPH_HOLE opt_netgraph.h 382NETGRAPH_IFACE opt_netgraph.h 383NETGRAPH_IP_INPUT opt_netgraph.h 384NETGRAPH_KSOCKET opt_netgraph.h 385NETGRAPH_LMI opt_netgraph.h 386NETGRAPH_L2TP opt_netgraph.h 387# MPPC compression requires proprietary files (not included) 388NETGRAPH_MPPC_COMPRESSION opt_netgraph.h 389NETGRAPH_MPPC_ENCRYPTION opt_netgraph.h 390NETGRAPH_ONE2MANY opt_netgraph.h 391NETGRAPH_PPP opt_netgraph.h 392NETGRAPH_PPPOE opt_netgraph.h 393NETGRAPH_PPTPGRE opt_netgraph.h 394NETGRAPH_RFC1490 opt_netgraph.h 395NETGRAPH_SOCKET opt_netgraph.h 396NETGRAPH_SPLIT opt_netgraph.h 397NETGRAPH_TEE opt_netgraph.h 398NETGRAPH_TTY opt_netgraph.h 399NETGRAPH_UI opt_netgraph.h 400NETGRAPH_VJC opt_netgraph.h 401 402# DRM options 403DRM_LINUX opt_drm.h 404DRM_DEBUG opt_drm.h 405 406 407ZERO_COPY_SOCKETS opt_zero.h 408TI_PRIVATE_JUMBOS opt_ti.h 409TI_JUMBO_HDRSPLIT opt_ti.h 410 411# ATM (HARP version) 412ATM_CORE opt_atm.h 413ATM_IP opt_atm.h 414ATM_SIGPVC opt_atm.h 415ATM_SPANS opt_atm.h 416ATM_UNI opt_atm.h 417 418# XXX Conflict: # of devices vs network protocol (Native ATM). 419# This makes "atm.h" unusable. 420NATM opt_natm.h 421 422DPT_ALLOW_MEMIO opt_dpt.h # Allow PCI devices to use memory 423 # mapped I/O 424# DPT driver debug flags 425DPT_MEASURE_PERFORMANCE opt_dpt.h 426DPT_HANDLE_TIMEOUTS opt_dpt.h 427DPT_TIMEOUT_FACTOR opt_dpt.h 428DPT_LOST_IRQ opt_dpt.h 429DPT_RESET_HBA opt_dpt.h 430 431# Adaptec ASR and DPT V/VI controller options 432ASR_MEASURE_PERFORMANCE opt_asr.h 433 434# Misc debug flags. Most of these should probably be replaced with 435# 'DEBUG', and then let people recompile just the interesting modules 436# with 'make CC="cc -DDEBUG"'. 437CLUSTERDEBUG opt_debug_cluster.h 438DEBUG_1284 opt_ppb_1284.h 439VP0_DEBUG opt_vpo.h 440LPT_DEBUG opt_lpt.h 441PLIP_DEBUG opt_plip.h 442LOCKF_DEBUG opt_debug_lockf.h 443NPX_DEBUG opt_debug_npx.h 444NETATALKDEBUG opt_atalk.h 445SI_DEBUG opt_debug_si.h 446 447# Fb options 448FB_DEBUG opt_fb.h 449FB_INSTALL_CDEV opt_fb.h 450 451# ppbus related options 452PERIPH_1284 opt_ppb_1284.h 453DONTPROBE_1284 opt_ppb_1284.h 454 455# smbus related options 456ENABLE_ALART opt_intpm.h 457 458# These cause changes all over the kernel 459BLKDEV_IOSIZE opt_global.h 460DEBUG opt_global.h 461DEBUG_LOCKS opt_global.h 462DEBUG_VFS_LOCKS opt_global.h 463LOOKUP_SHARED opt_global.h 464DIAGNOSTIC opt_global.h 465INVARIANT_SUPPORT opt_global.h 466INVARIANTS opt_global.h 467MCLSHIFT opt_global.h 468MSIZE opt_global.h 469REGRESSION opt_global.h 470RESTARTABLE_PANICS opt_global.h 471VFS_BIO_DEBUG opt_global.h 472 473# These are VM related options 474VM_KMEM_SIZE opt_vm.h 475VM_KMEM_SIZE_SCALE opt_vm.h 476VM_KMEM_SIZE_MAX opt_vm.h 477NO_SWAPPING opt_vm.h 478MALLOC_MAKE_FAILURES opt_vm.h 479MALLOC_PROFILE opt_vm.h 480PQ_NOOPT opt_vmpage.h 481PQ_NORMALCACHE opt_vmpage.h 482PQ_MEDIUMCACHE opt_vmpage.h 483PQ_LARGECACHE opt_vmpage.h 484PQ_HUGECACHE opt_vmpage.h 485PQ_CACHESIZE opt_vmpage.h 486 487# Standard SMP options 488SMP opt_global.h 489 490# Size of the kernel message buffer 491MSGBUF_SIZE opt_msgbuf.h 492 493# NFS options 494NFS_MINATTRTIMO opt_nfs.h 495NFS_MAXATTRTIMO opt_nfs.h 496NFS_MINDIRATTRTIMO opt_nfs.h 497NFS_MAXDIRATTRTIMO opt_nfs.h 498NFS_GATHERDELAY opt_nfs.h 499NFS_WDELAYHASHSIZ opt_nfs.h 500NFS_DEBUG opt_nfs.h 501 502# For the Bt848/Bt848A/Bt849/Bt878/Bt879 driver 503OVERRIDE_CARD opt_bktr.h 504OVERRIDE_TUNER opt_bktr.h 505OVERRIDE_DBX opt_bktr.h 506OVERRIDE_MSP opt_bktr.h 507BROOKTREE_SYSTEM_DEFAULT opt_bktr.h 508BROOKTREE_ALLOC_PAGES opt_bktr.h 509BKTR_OVERRIDE_CARD opt_bktr.h 510BKTR_OVERRIDE_TUNER opt_bktr.h 511BKTR_OVERRIDE_DBX opt_bktr.h 512BKTR_OVERRIDE_MSP opt_bktr.h 513BKTR_SYSTEM_DEFAULT opt_bktr.h 514BKTR_ALLOC_PAGES opt_bktr.h 515BKTR_USE_PLL opt_bktr.h 516BKTR_GPIO_ACCESS opt_bktr.h 517BKTR_NO_MSP_RESET opt_bktr.h 518BKTR_430_FX_MODE opt_bktr.h 519BKTR_SIS_VIA_MODE opt_bktr.h 520BKTR_USE_FREEBSD_SMBUS opt_bktr.h 521 522# meteor opt_meteor.h 523METEOR_ALLOC_PAGES opt_meteor.h 524METEOR_TEST_VIDEO opt_meteor.h 525METEOR_SYSTEM_DEFAULT opt_meteor.h 526METEOR_DEALLOC_PAGES opt_meteor.h 527METEOR_DEALLOC_ABOVE opt_meteor.h 528 529# options for serial support 530COM_ESP opt_sio.h 531COM_MULTIPORT opt_sio.h 532BREAK_TO_DEBUGGER opt_comconsole.h 533ALT_BREAK_TO_DEBUGGER opt_comconsole.h 534 535# options for bus/device framework 536BUS_DEBUG opt_bus.h 537 538# options for USB support 539UHCI_DEBUG opt_usb.h 540OHCI_DEBUG opt_usb.h 541USB_DEBUG opt_usb.h 542UGEN_DEBUG opt_usb.h 543UHID_DEBUG opt_usb.h 544UHUB_DEBUG opt_usb.h 545UKBD_DEBUG opt_usb.h 546ULPT_DEBUG opt_usb.h 547UMASS_DEBUG opt_usb.h 548UMS_DEBUG opt_usb.h 549URIO_DEBUG opt_usb.h 550UKBD_DFLT_KEYMAP opt_ukbd.h 551UVSCOM_DEFAULT_OPKTSIZE opt_uvscom.h 552 553# Vinum options 554VINUMDEBUG opt_vinum.h 555VINUM_AUTOSTART opt_vinum.h 556 557# Embedded system options 558INIT_PATH opt_init_path.h 559 560ROOTDEVNAME opt_rootdevname.h 561 562FDC_DEBUG opt_fdc.h 563PCFCLOCK_VERBOSE opt_pcfclock.h 564PCFCLOCK_MAX_RETRIES opt_pcfclock.h 565 566# RAIDframe options 567RAID_AUTOCONFIG opt_raid.h 568RAID_DEBUG opt_raid.h 569TDFX_LINUX opt_tdfx.h 570 571KTR opt_global.h 572KTR_ALQ opt_ktr.h 573KTR_MASK opt_ktr.h 574KTR_CPUMASK opt_ktr.h 575KTR_COMPILE opt_global.h 576KTR_ENTRIES opt_global.h 577KTR_VERBOSE opt_ktr.h 578MUTEX_DEBUG opt_global.h 579WITNESS opt_global.h 580WITNESS_DDB opt_witness.h 581WITNESS_SKIPSPIN opt_witness.h 582 583# options for ACPI support 584ACPI_DEBUG opt_acpi.h 585ACPI_NO_SEMAPHORES opt_acpi.h 586ACPI_MAX_THREADS opt_acpi.h 587 588# options for DEVFS, see sys/fs/devfs/devfs.h 589NDEVFSINO opt_devfs.h 590NDEVFSOVERFLOW opt_devfs.h 591 592# various 'device presence' options. 593DEV_ISA opt_isa.h 594DEV_MCA opt_mca.h 595DEV_BPF opt_bpf.h 596 597# ed driver 598ED_NO_MIIBUS opt_ed.h 599 600# wi driver 601WI_SYMBOL_FIRMWARE opt_wi.h 602 603# Polling device handling 604DEVICE_POLLING opt_global.h 605 606# Mutex profiling 607MUTEX_PROFILING opt_global.h 608 609# options for ubsec driver 610UBSEC_DEBUG opt_ubsec.h 611UBSEC_RNDTEST opt_ubsec.h 612 613# options for hifn driver 614HIFN_DEBUG opt_hifn.h 615HIFN_RNDTEST opt_hifn.h 616