Kconfig 1019 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #
  2. # Open-Channel SSD NVM configuration
  3. #
  4. menuconfig NVM
  5. bool "Open-Channel SSD target support"
  6. depends on BLOCK
  7. help
  8. Say Y here to get to enable Open-channel SSDs.
  9. Open-Channel SSDs implement a set of extension to SSDs, that
  10. exposes direct access to the underlying non-volatile memory.
  11. If you say N, all options in this submenu will be skipped and disabled
  12. only do this if you know what you are doing.
  13. if NVM
  14. config NVM_PBLK
  15. tristate "Physical Block Device Open-Channel SSD target"
  16. help
  17. Allows an open-channel SSD to be exposed as a block device to the
  18. host. The target assumes the device exposes raw flash and must be
  19. explicitly managed by the host.
  20. Please note the disk format is considered EXPERIMENTAL for now.
  21. if NVM_PBLK
  22. config NVM_PBLK_DEBUG
  23. bool "PBlk Debug Support"
  24. default n
  25. help
  26. Enables debug support for pblk. This includes extra checks, more
  27. vocal error messages, and extra tracking fields in the pblk sysfs
  28. entries.
  29. endif # NVM_PBLK_DEBUG
  30. endif # NVM