Kconfig 717 B

123456789101112131415161718192021222324252627
  1. config BCACHE
  2. tristate "Block device as cache"
  3. select CRC64
  4. help
  5. Allows a block device to be used as cache for other devices; uses
  6. a btree for indexing and the layout is optimized for SSDs.
  7. See Documentation/admin-guide/bcache.rst for details.
  8. config BCACHE_DEBUG
  9. bool "Bcache debugging"
  10. depends on BCACHE
  11. help
  12. Don't select this option unless you're a developer
  13. Enables extra debugging tools, allows expensive runtime checks to be
  14. turned on.
  15. config BCACHE_CLOSURES_DEBUG
  16. bool "Debug closures"
  17. depends on BCACHE
  18. select DEBUG_FS
  19. help
  20. Keeps all active closures in a linked list and provides a debugfs
  21. interface to list them, which makes it possible to see asynchronous
  22. operations that get stuck.