linux/crypto/async_tx/Kconfig
<<
>>
Prefs
   1# SPDX-License-Identifier: GPL-2.0
   2config ASYNC_CORE
   3        tristate
   4
   5config ASYNC_MEMCPY
   6        tristate
   7        select ASYNC_CORE
   8
   9config ASYNC_XOR
  10        tristate
  11        select ASYNC_CORE
  12        select XOR_BLOCKS
  13
  14config ASYNC_PQ
  15        tristate
  16        select ASYNC_CORE
  17
  18config ASYNC_RAID6_RECOV
  19        tristate
  20        select ASYNC_CORE
  21        select ASYNC_PQ
  22        select ASYNC_XOR
  23
  24config ASYNC_TX_DISABLE_PQ_VAL_DMA
  25        bool
  26
  27config ASYNC_TX_DISABLE_XOR_VAL_DMA
  28        bool
  29