Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. config JBD
  2. tristate
  3. help
  4. This is a generic journalling layer for block devices. It is
  5. currently used by the ext3 file system, but it could also be
  6. used to add journal support to other file systems or block
  7. devices such as RAID or LVM.
  8. If you are using the ext3 file system, you need to say Y here.
  9. If you are not using ext3 then you will probably want to say N.
  10. To compile this device as a module, choose M here: the module will be
  11. called jbd. If you are compiling ext3 into the kernel, you
  12. cannot compile this code as a module.
  13. config JBD_DEBUG
  14. bool "JBD (ext3) debugging support"
  15. depends on JBD && DEBUG_FS
  16. help
  17. If you are using the ext3 journaled file system (or potentially any
  18. other file system/device using JBD), this option allows you to
  19. enable debugging output while the system is running, in order to
  20. help track down any problems you are having. By default the
  21. debugging output will be turned off.
  22. If you select Y here, then you will be able to turn on debugging
  23. with "echo N > /sys/kernel/debug/jbd/jbd-debug", where N is a
  24. number between 1 and 5, the higher the number, the more debugging
  25. output is generated. To turn debugging off again, do
  26. "echo 0 > /sys/kernel/debug/jbd/jbd-debug".