dst_data[i], src_data[i]);
/* now check completion works */
+ id = ~id;
if (rte_dma_completed(dev_id, vchan, 1, &id, NULL) != 1)
ERR_RETURN("Error with rte_dma_completed\n");
id, id_count);
/* check for completed and id when no job done */
+ id = ~id;
if (rte_dma_completed(dev_id, vchan, 1, &id, NULL) != 0)
ERR_RETURN("Error with rte_dma_completed when no job done\n");
if (id != id_count)
id, id_count);
/* check for completed_status and id when no job done */
+ id = ~id;
if (rte_dma_completed_status(dev_id, vchan, 1, &id, &status) != 0)
ERR_RETURN("Error with rte_dma_completed_status when no job done\n");
if (id != id_count)