Kconfig 782 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. config ASYNC_CORE
  2. tristate
  3. config ASYNC_MEMCPY
  4. tristate
  5. select ASYNC_CORE
  6. config ASYNC_XOR
  7. tristate
  8. select ASYNC_CORE
  9. select XOR_BLOCKS
  10. config ASYNC_MEMSET
  11. tristate
  12. select ASYNC_CORE
  13. config ASYNC_PQ
  14. tristate
  15. select ASYNC_CORE
  16. config ASYNC_RAID6_RECOV
  17. tristate
  18. select ASYNC_CORE
  19. select ASYNC_PQ
  20. select ASYNC_XOR
  21. config ASYNC_RAID6_TEST
  22. tristate "Self test for hardware accelerated raid6 recovery"
  23. depends on ASYNC_RAID6_RECOV
  24. select ASYNC_MEMCPY
  25. ---help---
  26. This is a one-shot self test that permutes through the
  27. recovery of all the possible two disk failure scenarios for a
  28. N-disk array. Recovery is performed with the asynchronous
  29. raid6 recovery routines, and will optionally use an offload
  30. engine if one is available.
  31. If unsure, say N.