Kconfig 1.3 KB

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