diff options
author | Dan Williams <dan.j.williams@intel.com> | 2009-07-01 16:12:53 -0700 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2009-07-01 16:12:53 -0700 |
commit | daf4219dbcbb2efcd638fcd3c29a622e1c18cc38 (patch) | |
tree | 8683d86a8a8de2060c83aed7efe5f66b94027a2b /crypto | |
parent | 43a1a3ed6bf5a1b9ae197b4f5f20033baf19db61 (diff) | |
download | linux-stable-daf4219dbcbb2efcd638fcd3c29a622e1c18cc38.tar.gz linux-stable-daf4219dbcbb2efcd638fcd3c29a622e1c18cc38.tar.bz2 linux-stable-daf4219dbcbb2efcd638fcd3c29a622e1c18cc38.zip |
dmaengine: move HIGHMEM64G restriction to ASYNC_TX_DMA
On HIGHMEM64G systems dma_addr_t is known to be larger than (void *)
which precludes async_xor from performing dma address conversions by
reusing the input parameter address list. However, other parts of the
dmaengine infrastructure do not suffer this constraint, so the
HIGHMEM64G restriction can be down-levelled.
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/async_tx/async_xor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/async_tx/async_xor.c b/crypto/async_tx/async_xor.c index 95fe2c8d6c51..90dd3f8bd283 100644 --- a/crypto/async_tx/async_xor.c +++ b/crypto/async_tx/async_xor.c @@ -300,7 +300,7 @@ EXPORT_SYMBOL_GPL(async_xor_zero_sum); static int __init async_xor_init(void) { - #ifdef CONFIG_DMA_ENGINE + #ifdef CONFIG_ASYNC_TX_DMA /* To conserve stack space the input src_list (array of page pointers) * is reused to hold the array of dma addresses passed to the driver. * This conversion is only possible when dma_addr_t is less than the |