Lines Matching defs:slot
245 /* move this slot to the completed_slots */
289 /* done processing desc, clean slot */
440 struct mv_xor_desc_slot *slot = NULL;
446 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
447 if (!slot) {
454 slot->hw_desc = virt_desc + idx * MV_XOR_SLOT_SIZE;
456 dma_async_tx_descriptor_init(&slot->async_tx, chan);
457 slot->async_tx.tx_submit = mv_xor_tx_submit;
458 INIT_LIST_HEAD(&slot->node);
459 INIT_LIST_HEAD(&slot->sg_tx_list);
461 slot->async_tx.phys = dma_desc + idx * MV_XOR_SLOT_SIZE;
462 slot->idx = idx++;
466 list_add_tail(&slot->node, &mv_chan->free_slots);