]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - crypto/async_tx/async_memset.c
async_tx: export async_tx_quiesce
[linux-2.6-omap-h63xx.git] / crypto / async_tx / async_memset.c
index 27a97dc90a7e0f7f6504c54925c0541611fc604c..d48ed22ed1c369075ce58dcc913bf512d5a0d260 100644 (file)
@@ -72,15 +72,7 @@ async_memset(struct page *dest, int val, unsigned int offset,
                dest_buf = (void *) (((char *) page_address(dest)) + offset);
 
                /* wait for any prerequisite operations */
-               if (depend_tx) {
-                       /* if ack is already set then we cannot be sure
-                        * we are referring to the correct operation
-                        */
-                       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__);
-               }
+               async_tx_quiesce(&depend_tx);
 
                memset(dest_buf, val, len);