Kconfig 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 (primarily a fuzz tester)
  13. config BCACHE_EDEBUG
  14. bool "Extended runtime checks"
  15. depends on BCACHE
  16. ---help---
  17. Don't select this option unless you're a developer
  18. Enables extra runtime checks which significantly affect performance
  19. config BCACHE_CLOSURES_DEBUG
  20. bool "Debug closures"
  21. depends on BCACHE
  22. select DEBUG_FS
  23. ---help---
  24. Keeps all active closures in a linked list and provides a debugfs
  25. interface to list them, which makes it possible to see asynchronous
  26. operations that get stuck.
  27. # cgroup code needs to be updated:
  28. #
  29. #config CGROUP_BCACHE
  30. # bool "Cgroup controls for bcache"
  31. # depends on BCACHE && BLK_CGROUP
  32. # ---help---
  33. # TODO