Lines Matching full:submit
69 async_<operation>(<op specific parameters>, struct async_submit_ctl *submit)
97 operations complete. When an application needs to submit a chain of
134 async_<operation>, or when the application needs to submit a chain of
143 2. Completion callback routines cannot submit new operations. This
170 struct async_submit_ctl submit;
174 init_async_submit(&submit, ASYNC_TX_XOR_DROP_DST, NULL, NULL, NULL,
176 tx = async_xor(xor_dest, xor_srcs, 0, NDISKS, xor_len, &submit);
178 submit.depend_tx = tx;
179 tx = async_memcpy(copy_dest, copy_src, 0, 0, copy_len, &submit);
182 init_async_submit(&submit, ASYNC_TX_XOR_DROP_DST | ASYNC_TX_ACK, tx,
184 tx = async_xor(xor_dest, xor_srcs, 0, NDISKS, xor_len, &submit);