async_tx: export async_tx_quiesce
[deliverable/linux.git] / crypto / async_tx / async_memset.c
index f5ff3906b035d52d5c6b28949ca6470b46d60f88..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(depend_tx->ack);
-                       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);
 
This page took 0.024322 seconds and 5 git commands to generate.