summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Williams <dan.j.williams@intel.com>2008-06-05 23:26:11 -0700
committerDan Williams <dan.j.williams@intel.com>2008-07-08 11:57:55 -0700
commit21b0ce9aa76d6846bca11771592cb17d2ddce5ec (patch)
treefb6040a606189f190a229a962075797c67fb867f
parent9705ddb674a498367214fa278c05ac6472a23449 (diff)
downloadlinux-crypto-21b0ce9aa76d6846bca11771592cb17d2ddce5ec.tar.gz
linux-crypto-21b0ce9aa76d6846bca11771592cb17d2ddce5ec.zip
async_tx: fix async_memset compile error
commit c7ea8ef0 'dmaengine: ack to flags: make use of the unused bits in the 'ack' field' missed an ->ack conversion in crypto/async_tx/async_memset.c Signed-off-by: Dan Williams <dan.j.williams@intel.com>
-rw-r--r--crypto/async_tx/async_memset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/async_tx/async_memset.c b/crypto/async_tx/async_memset.c
index f5ff3906..27a97dc9 100644
--- a/crypto/async_tx/async_memset.c
+++ b/crypto/async_tx/async_memset.c
@@ -76,7 +76,7 @@ async_memset(struct page *dest, int val, unsigned int offset,
/* if ack is already set then we cannot be sure
* we are referring to the correct operation
*/
- BUG_ON(depend_tx->ack);
+ BUG_ON(async_tx_test_ack(depend_tx));
if (dma_wait_for_async_tx(depend_tx) == DMA_ERROR)
panic("%s: DMA_ERROR waiting for depend_tx\n",
__func__);