Kconfig 866 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.
  32. config ASYNC_TX_DISABLE_PQ_VAL_DMA
  33. bool
  34. config ASYNC_TX_DISABLE_XOR_VAL_DMA
  35. bool