Kconfig (214d8ca6ee854f696f75e75511fe66b409e656db) | Kconfig (554aae35007e49f533d3d10e788295f7141725bc) |
---|---|
1# 2# Library configuration 3# 4 5config BINARY_PRINTF 6 def_bool n 7 8menu "Library routines" --- 4 unchanged lines hidden (view full) --- 13config RAID6_PQ_BENCHMARK 14 bool "Automatically choose fastest RAID6 PQ functions" 15 depends on RAID6_PQ 16 default y 17 help 18 Benchmark all available RAID6 PQ functions on init and choose the 19 fastest one. 20 | 1# 2# Library configuration 3# 4 5config BINARY_PRINTF 6 def_bool n 7 8menu "Library routines" --- 4 unchanged lines hidden (view full) --- 13config RAID6_PQ_BENCHMARK 14 bool "Automatically choose fastest RAID6 PQ functions" 15 depends on RAID6_PQ 16 default y 17 help 18 Benchmark all available RAID6 PQ functions on init and choose the 19 fastest one. 20 |
21config PACKING 22 bool "Generic bitfield packing and unpacking" 23 default n 24 help 25 This option provides the packing() helper function, which permits 26 converting bitfields between a CPU-usable representation and a 27 memory representation that can have any combination of these quirks: 28 - Is little endian (bytes are reversed within a 32-bit group) 29 - The least-significant 32-bit word comes first (within a 64-bit 30 group) 31 - The most significant bit of a byte is at its right (bit 0 of a 32 register description is numerically 2^7). 33 Drivers may use these helpers to match the bit indices as described 34 in the data sheets of the peripherals they are in control of. 35 36 When in doubt, say N. 37 |
|
21config BITREVERSE 22 tristate 23 24config HAVE_ARCH_BITREVERSE 25 bool 26 default n 27 depends on BITREVERSE 28 help --- 563 unchanged lines hidden (view full) --- 592 bool 593 594config ARCH_HAS_UACCESS_FLUSHCACHE 595 bool 596 597config ARCH_HAS_UACCESS_MCSAFE 598 bool 599 | 38config BITREVERSE 39 tristate 40 41config HAVE_ARCH_BITREVERSE 42 bool 43 default n 44 depends on BITREVERSE 45 help --- 563 unchanged lines hidden (view full) --- 609 bool 610 611config ARCH_HAS_UACCESS_FLUSHCACHE 612 bool 613 614config ARCH_HAS_UACCESS_MCSAFE 615 bool 616 |
600# Temporary. Goes away when all archs are cleaned up 601config ARCH_STACKWALK 602 bool 603 | |
604config STACKDEPOT 605 bool 606 select STACKTRACE 607 608config SBITMAP 609 bool 610 611config PARMAN --- 30 unchanged lines hidden --- | 617config STACKDEPOT 618 bool 619 select STACKTRACE 620 621config SBITMAP 622 bool 623 624config PARMAN --- 30 unchanged lines hidden --- |