projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
51ee87f
)
async_tx: fix async_memset compile error
author
Dan Williams
<dan.j.williams@intel.com>
Fri, 6 Jun 2008 06:26:11 +0000
(23:26 -0700)
committer
Dan Williams
<dan.j.williams@intel.com>
Tue, 8 Jul 2008 18:57:55 +0000
(11:57 -0700)
commit
636bdeaa
'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>
crypto/async_tx/async_memset.c
patch
|
blob
|
history
diff --git
a/crypto/async_tx/async_memset.c
b/crypto/async_tx/async_memset.c
index f5ff3906b035d52d5c6b28949ca6470b46d60f88..27a97dc90a7e0f7f6504c54925c0541611fc604c 100644
(file)
--- 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__);