Kconfig 709 B

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