async_tx: kill tx_set_src and tx_set_dest methods
authorDan Williams <dan.j.williams@intel.com>
Sun, 3 Feb 2008 02:49:57 +0000 (19:49 -0700)
committerDan Williams <dan.j.williams@intel.com>
Wed, 6 Feb 2008 17:12:17 +0000 (10:12 -0700)
commit0036731c88fdb5bf4f04a796a30b5e445fc57f54
tree66982e4a9fdb92fedadca35c0ccaa0b9a75e9d2e
parentd909b347591a23c5a2c324fbccd4c9c966f31c67
async_tx: kill tx_set_src and tx_set_dest methods

The tx_set_src and tx_set_dest methods were originally implemented to allow
an array of addresses to be passed down from async_xor to the dmaengine
driver while minimizing stack overhead.  Removing these methods allows
drivers to have all transaction parameters available at 'prep' time, saves
two function pointers in struct dma_async_tx_descriptor, and reduces the
number of indirect branches..

A consequence of moving this data to the 'prep' routine is that
multi-source routines like async_xor need temporary storage to convert an
array of linear addresses into an array of dma addresses.  In order to keep
the same stack footprint of the previous implementation the input array is
reused as storage for the dma addresses.  This requires that
sizeof(dma_addr_t) be less than or equal to sizeof(void *).  As a
consequence CONFIG_DMADEVICES now depends on !CONFIG_HIGHMEM64G.  It also
requires that drivers be able to make descriptor resources available when
the 'prep' routine is polled.

Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Acked-by: Shannon Nelson <shannon.nelson@intel.com>
crypto/async_tx/async_memcpy.c
crypto/async_tx/async_memset.c
crypto/async_tx/async_xor.c
drivers/dma/Kconfig
drivers/dma/dmaengine.c
drivers/dma/ioat_dma.c
drivers/dma/iop-adma.c
include/linux/dmaengine.h