Kconfig 859 B

12345678910111213141516171819202122232425262728293031323334
  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.
  22. # cgroup code needs to be updated:
  23. #
  24. #config CGROUP_BCACHE
  25. # bool "Cgroup controls for bcache"
  26. # depends on BCACHE && BLK_CGROUP
  27. # ---help---
  28. # TODO