Kconfig 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. config CACHEFILES
  2. tristate "Filesystem caching on files"
  3. depends on FSCACHE && BLOCK
  4. help
  5. This permits use of a mounted filesystem as a cache for other
  6. filesystems - primarily networking filesystems - thus allowing fast
  7. local disk to enhance the speed of slower devices.
  8. See Documentation/filesystems/caching/cachefiles.txt for more
  9. information.
  10. config CACHEFILES_DEBUG
  11. bool "Debug CacheFiles"
  12. depends on CACHEFILES
  13. help
  14. This permits debugging to be dynamically enabled in the filesystem
  15. caching on files module. If this is set, the debugging output may be
  16. enabled by setting bits in /sys/modules/cachefiles/parameter/debug or
  17. by including a debugging specifier in /etc/cachefilesd.conf.
  18. config CACHEFILES_HISTOGRAM
  19. bool "Gather latency information on CacheFiles"
  20. depends on CACHEFILES && PROC_FS
  21. help
  22. This option causes latency information to be gathered on CacheFiles
  23. operation and exported through file:
  24. /proc/fs/cachefiles/histogram
  25. The generation of this histogram adds a certain amount of overhead to
  26. execution as there are a number of points at which data is gathered,
  27. and on a multi-CPU system these may be on cachelines that keep
  28. bouncing between CPUs. On the other hand, the histogram may be
  29. useful for debugging purposes. Saying 'N' here is recommended.
  30. See Documentation/filesystems/caching/cachefiles.txt for more
  31. information.