-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathnetbsd-sysctl-list.txt
1294 lines (1294 loc) · 15.9 KB
/
netbsd-sysctl-list.txt
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
abort
abs
acct
acpica_version
acpi_gtf_filter
act
active
active_duration
active_mode
act_mask
actual_brightness
adapter
add_random
addr_assign_type
address
addresses
address_mask
addr_len
adr
affected_cpus
afg
ageing_time
ahci_em_messages
ahci_host_cap2
ahci_host_caps
ahci_host_version
ahci_port_cmd
alarm
align_buffer_size
alignment_offset
alloc_sleep_millisecs
allow_dio
allow_duplicates
allow_restart
allow_tpm
allow_unsafe_assigned_interrupts
.altinstr_aux
.altinstr_replacement
.altinstructions
always_kmsg_dump
aml_debug_output
amp_in_caps
amp_out_caps
any
aperf
APIC
app_tag_own
async
atapi_an
atapi_dmadir
atapi_enabled
atapi_passthru16
ata_probe_timeout
attention
audit
audit_header
authorized
authorized_default
autoconf
auto_online_blocks
autosuspend
autosuspend_delay_ms
available_clocksource
available_policies
avoid_reset_quirk
backend
back_seek_max
back_seek_penalty
badblocks
bAlternateSetting
bank0
bank1
bank2
bank3
bank4
bank5
bank6
bank7
bank8
batched_discard
bcdDevice
bConfigurationValue
bDeviceClass
bDeviceProtocol
bDeviceSubClass
bdl_pos_adj
beacon_loss_count
beep_mode
bEndpointAddress
beta
bic_scale
big_metadata
bind
bind_mode
bInterfaceClass
bInterfaceNumber
bInterfaceProtocol
bInterfaceSubClass
bInterval
bios_date
bios_vendor
bios_version
bit_test
bLength
blimit
blinkenlights
blkio.io_merged
blkio.io_merged_recursive
blkio.io_queued
blkio.io_queued_recursive
blkio.io_service_bytes
blkio.io_service_bytes_recursive
blkio.io_serviced
blkio.io_serviced_recursive
blkio.io_service_time
blkio.io_service_time_recursive
blkio.io_wait_time
blkio.io_wait_time_recursive
blkio.leaf_weight
blkio.leaf_weight_device
blkio.reset_stats
blkio.sectors
blkio.sectors_recursive
blkio.throttle.io_service_bytes
blkio.throttle.io_serviced
blkio.throttle.read_bps_device
blkio.throttle.read_iops_device
blkio.throttle.write_bps_device
blkio.throttle.write_iops_device
blkio.time
blkio.time_recursive
blkio.weight
blkio.weight_device
block_size_bytes
bl_power
bmAttributes
bMaxPacketSize0
bMaxPower
bNumConfigurations
bNumEndpoints
bNumInterfaces
board_asset_tag
board_name
board_serial
board_vendor
board_version
boot_vga
branch-instructions
branch-misses
brforward
bridge_id
brightness
brightness_switch_enabled
brl_nbchords
brl_timeout
broadcast
broken_parity_status
.bss
__bug_table
bus-cycles
busnum
bustype
c2-residency
c3-residency
c6-residency
c7-residency
cache-misses
cache-references
cache_time
cache_type
can_queue
capability
capacity
capacity_level
caps
cards_limit
carrier
carrier_changes
carrier_timeout
cfg80211_disable_40mhz_24ghz
cgroup.clone_children
cgroup.procs
cgroup.sane_behavior
charge_full
charge_full_design
charge_now
chassis_asset_tag
chassis_serial
chassis_type
chassis_vendor
chassis_version
check_copy_up
check_interval
check_pci_errors
chip_name
class
clear
clockticks
close_delay
closing_wait
cmask
cmci_disabled
cmd_per_lun
cmd_retries
coherency_line_size
collisions
color
compact
companion
compress_dst
compress_lzo
compressor
compress_src
config
configuration
congestion_threshold
connected_duration
connections
connect_type
consistent_dma_mask_bits
consoleblank
console_suspend
constraint_0_max_power_uw
constraint_0_name
constraint_0_power_limit_uw
constraint_0_time_window_us
constraint_1_max_power_uw
constraint_1_name
constraint_1_power_limit_uw
constraint_1_time_window_us
control
core_id
core_siblings
core_siblings_list
coresize
core_throttle_count
cpuacct.stat
cpuacct.usage
cpuacct.usage_percpu
cpuaffinity
cpu.cfs_period_us
cpu.cfs_quota_us
cpu-cycles
cpuinfo_cur_freq
cpuinfo_max_freq
cpuinfo_min_freq
cpuinfo_transition_latency
cpulist
cpulistaffinity
cpumap
cpumask
cpuset.cpu_exclusive
cpuset.cpus
cpuset.effective_cpus
cpuset.effective_mems
cpuset.mem_exclusive
cpuset.mem_hardwall
cpuset.memory_migrate
cpuset.memory_pressure
cpuset.memory_pressure_enabled
cpuset.memory_spread_page
cpuset.memory_spread_slab
cpuset.mems
cpuset.sched_load_balance
cpuset.sched_relax_domain_level
cpu.shares
cpu.stat
crash_notes
crash_notes_size
crt
cryptmode
cur_bus_speed
cur_default
current_clocksource
current_device
current_driver
current_governor_ro
current_now
cursor_blink
cur_state
custom_divisor
cycle_count
cycles-ct
cycles-t
d3cold_allowed
data
.data
.data..cacheline_aligned
.data..read_mostly
.data.unlikely
date
debug
debug_acpi
debug_dump_wdg
debug_event
debug_force_rr_cpu
debug_mask
default_blu
default_dev_flags
default_grn
default_pvid
default_red
default_state
default_subvol
default_utf8
defrag
def_reserved_size
delayed_allocation_blocks
delete
delete_device
desc
description
descriptors
dev
device
device_blocked
device_busy
device_id_scheme
device_is_integrity_capable
devices.allow
devices.deny
devices.list
dev_id
devnum
devpath
dev_port
devslp_idle_timeout
dh_state
direction
disable
disable_backlight_sysfs_if
disabled
disable_ertm
disable_esco
disable_features
disable_ipv6
disable_numa
disable_scofix
discard_alignment
discard_granularity
discard_max_bytes
discard_max_hw_bytes
discard_zeroes_data
disk
distance
dma
dma_mask_bits
dma_mode
DMAR
DMI
dont_log_ce
dormant
dp_aux_i2c_speed_khz
dp_aux_i2c_transfer_size
driver_override
driver_pin_configs
drivers_autoprobe
drivers_probe
drvctl
DSDT
duallink
dump_coef
dump_tree
duplex
duration
ec_busy_polling
ec_delay
ec_event_clearing
ec_polling_guard
ec_storm_threshold
edac_mc_log_ce
edac_mc_log_ue
edac_mc_panic_on_ue
edac_mc_poll_msec
edac_pci_panic_on_pe
edge
edid_firmware
edid_fixup
eh_deadline
eh_timeout
el-abort
el-capacity
el-commit
el-conflict
el-start
em_buffer
em_message
em_message_supported
em_message_type
emulate_invalid_guest_state
enable
enable_apicv
enabled
enable_msi
enable_shadow_vmcs
encryption
end
end_lba
energy-cores
energy-cores.scale
energy-cores.unit
energy-gpu
energy-gpu.scale
energy-gpu.unit
energy-pkg
energy-pkg.scale
energy-pkg.unit
energy-ram
energy-ram.scale
energy-ram.unit
energy_uj
ept
eptad
ering
err_count
error
errors_count
err_ratelimit_burst
err_ratelimit_interval_ms
ev
event
events
events_async
events_dfl_poll_msecs
events_poll_msecs
evt_capacity_change_reported
evt_inquiry_change_reported
evt_lun_change_reported
evt_media_change
evt_mode_parameter_change_reported
evt_soft_threshold_reached
.exit.text
expect_hashsize
export
__ex_table
extended_iref
extent_max_zeroout_kb
extra
ext_range
FACP
FACS
fast_convergence
fasteoi
fbdev_emulation
ff
ff_gbl_lock
ff_pmtimer
ff_pwr_btn
ff_rt_clk
ff_slp_btn
FIDT
fifo_expire_async
fifo_expire_sync
firmware_id
first_error_time
.fixup
flags
flexpriority
flush
force
force_async_tsc
force_release
force_remove
force_scofix
format
forward_delay
FPDT
free_hugepages
free_space_tree
fscaps
_ftrace_events
fua
FUA
full_scans
fw_status
gc_timer
global_cursor_default
.gnu.linkonce.this_module
gpe00
gpe01
gpe02
gpe03
gpe04
gpe05
gpe06
gpe07
gpe08
gpe09
gpe0A
gpe0B
gpe0C
gpe0D
gpe0E
gpe0F
gpe10
gpe11
gpe12
gpe13
gpe14
gpe15
gpe16
gpe17
gpe18
gpe19
gpe1A
gpe1B
gpe1C
gpe1D
gpe1E
gpe1F
gpe20
gpe21
gpe22
gpe23
gpe24
gpe25
gpe26
gpe27
gpe28
gpe29
gpe2A
gpe2B
gpe2C
gpe2D
gpe2E
gpe2F
gpe30
gpe31
gpe32
gpe33
gpe34
gpe35
gpe36
gpe37
gpe38
gpe39
gpe3A
gpe3B
gpe3C
gpe3D
gpe3E
gpe3F
gpe_all
gpio_caps
gro_flush_timeout
group_addr
group_fwd_mask
group_idle
gscr
halt_poll_ns
halt_poll_ns_grow
halt_poll_ns_shrink
handle
hard
hard_offline_page
has_cpu
hash_elasticity
hash_max
hashsize
has_normal_memory
hctosys
hdmimhz
hello_time
hello_timer
hid
hints
hold_time
host_busy
host_reset
HPET
hw_sata_spd_limit
hw_sector_size
hystart
hystart_ack_delta
hystart_detect
hystart_low_window
id
idle_irq
idProduct
idVendor
ieee80211_default_rc_algo
ieee80211_regdom
ifalias
ifindex
iflink
ignore_ce
ignore_hpa
ignoreled
ignorelid
ignore_loglevel
ignore_msrs
ignore_oc
ignore_ppc
ignore_rlimit_data
ignore_special_drivers
ignore_sss
ignore_tpc
image_size
immediate_undock
index
inflight
initcall_debug
.init.data
initial_descriptor_timeout
initial_ssthresh
init_pin_configs
.init.rodata
initsize
initstate
.init.text
init_verbs
inode_goal
inode_readahead_blks
inq_timeout
inquiry
instance
instructions
integral_cutoff
interface_authorized_default
interrupts
interval
in_tx
in_tx_cp
inv
iocounterbits
iodone_cnt
ioerr_cnt
iomem_base
iomem_reg_shift
io_poll
iorequest_cnt
iostats
io_type
irq
irqfixup
irq_mode
isolated
italic
itpm
jackpoll_ms
jiffies_till_first_fqs
jiffies_till_next_fqs
jiffies_till_sched_qs
__jump_table
__kcrctab
__kcrctab_gpl
k_d
kernel_max
kexec_crash_loaded
kexec_crash_size
kexec_loaded
key
k_i
k_po
k_pu
__ksymtab
__ksymtab_gpl
__ksymtab_strings
kthread_prio
kvmclock_periodic_sync
lapic_timer_advance_ns
last_error_time
latch
latency
latency_factor
lazy_itable_init
ldlat
led
length
level
lifetime_write_kbytes
limit
limit_max
limit_min
line
link_mode
link_power_management_policy
link_quirk
local_cpulist
local_cpus
lockless_register_fb
lock_policy
log2_irq_thresh
logical_block_size
logsyscall
low_latency
ltm_capable
macaddress
major
manage_start_stop
manufacturer
marvell_enable
max_active
max_age
max_background
max_brightness
max_bus_speed
maxchild
max_cstate
max_energy_range_uj
max_hw_sectors_kb
maximum_substreams
max_integrity_segments
max_luns
max_medium_access_timeouts
max_nullfunc_tries
max_perf_pct
max_pool_percent
max_probe_tries
max_ptes_none
max_ratio
max_sectors_kb
max_segments
max_segment_size
max_state
max_user_bgreq
max_user_congthresh
max_user_freq
max_writeback_mb_bump
max_write_same_blocks
mb_group_prealloc
mb_max_to_scan
mb_min_to_scan
mb_order2_req
mb_stats
mb_stream_req
MCFG
__mcount_loc
meminfo
mem-loads
mem-stores
merge_across_nodes
meta_bg_resize
metadata_csum_seed
mfg
minimum_io_size
min_perf_pct
min_ratio
min_timer_period_us
mixed_backref
mixed_groups
modalias
mode
model
modelname
model_name
modeset
monarch_timeout
mousepoll
mperf
msc
MSDM
MSFF
msg_ratelimit_burst
msg_ratelimit_interval_ms
msi_bus
msi_en
mtu
multicast
multicast_last_member_count
multicast_last_member_interval
multicast_membership_interval
multicast_querier
multicast_querier_interval
multicast_query_interval
multicast_query_response_interval
multicast_query_use_ifaddr
multicast_router
multicast_snooping
multicast_startup_query_count
multicast_startup_query_interval
name
name_assign_type
nested
net_cls.classid
netdev_group
net_prio.ifpriomap
net_prio.prioidx
new_device
new_id
nf_call_arptables
nf_call_ip6tables
nf_call_iptables
nf_conntrack_helper
nice
noaccel
noacpi
nofbaccel
no_holes
noirqdebug
nomerges
.note.gnu.build-id
notes
notify_delay_ms
notify_on_release
no_turbo
nousb
nr_hugepages
nr_hugepages_mempolicy
nr_overcommit_hugepages
nr_pmp_links
nr_requests
nr_uarts
numa
numa_node
numastat
number
number_of_sets
num_prealloc_crypto_ctxs
num_prealloc_crypto_pages
num_pstates
nvram
off
offcore_rsp
offline
offset
old_scheme_first
online
only_lcd
operstate
optimal_io_size
options
package_throttle_count
pages_collapsed
pages_shared
pages_sharing
pages_to_scan
pages_unshared
pages_volatile
panic
panic_on_warn
.parainstructions
__param
paranoid_load
park
partition
passive
patch
path
path_max
pause_on_oops
pc
pciehp_debug
pciehp_force
pciehp_poll_mode
pciehp_poll_time
pcm_caps
pcm_class
pcm_formats
per_cpu
perf_event_mux_interval_ms
persist
persistent
phys
phys_device
physical_block_size
physical_line_partition
physical_package_id
phys_index
phys_port_id
phys_port_name
phys_switch_id
pid
pids.current
pids.max
pin_caps
pin_cfg
pio_mode
ple_gap
ple_window
ple_window_grow
ple_window_max
ple_window_shrink
pm_async
pm_freeze_timeout
pml
pm_print_times
pm_profile
pm_qos_no_power_off
pm_qos_remote_wakeup
pm_test
pm_test_delay
pm_wakeup_irq
policy
poll
pool_ids
pools
port
port_no
position
position_fix
possible
power
power_caps
power_efficient
power_off_acct
power_on_acct
power_save
power_save_controller
power_state
preallocate_dma
preclaim_oss
present
priority
probe_mask
probe_only
probe_rsa
probe_wait_ms
processor_flags
proc_name
product
product_name
product_serial
product_uuid
product_version
profiling
properties
prot_capabilities
protection_interval_bytes
protection_mode
protection_type
prot_guard_type
proto
protocol
proto_down
provisioning_mode
psv
qhimark
qlowmark
quantum
queue_depth
queue_ramp_up_period
queue_type
quirks
raid56
range
rate
raw
rawmode
rcu_cpu_stall_suppress
rcu_cpu_stall_timeout
rcu_expedited
rcu_fanout_exact
rcu_fanout_leaf
rcu_normal
rdpmc
read_ahead_kb
read_verify
reconfig
refcnt
ref-cycles
.ref.data
rel
related_cpus
release_agent
reload
removable
remove
remove_id
report_descriptor
report_key_events
rescan
reserved_clusters
reserved_size
reset
resetafter
reset_mode
reset_seq
residency
resolution
resource
resource0
resource1
resource1_wc
resource2
resource3
resource3_wc
resource4
resource5
resource_alignment
resources
resume
resv_hugepages
resync_time