Lines Matching refs:submit
57 async_<operation>(<op specific parameters>, struct async_submit ctl *submit)
79 operations complete. When an application needs to submit a chain of
110 async_<operation>, or when the application needs to submit a chain of
117 2/ Completion callback routines cannot submit new operations. This
142 struct async_submit_ctl submit;
146 init_async_submit(&submit, ASYNC_TX_XOR_DROP_DST, NULL, NULL, NULL,
148 tx = async_xor(xor_dest, xor_srcs, 0, xor_src_cnt, xor_len, &submit)
150 submit->depend_tx = tx;
151 tx = async_memcpy(copy_dest, copy_src, 0, 0, copy_len, &submit);
154 init_async_submit(&submit, ASYNC_TX_XOR_DROP_DST | ASYNC_TX_ACK, tx,
156 tx = async_xor(xor_dest, xor_srcs, 0, xor_src_cnt, xor_len, &submit);