Lines Matching refs:confirm_rx
34 * @confirm_rx: boolean; whether a resume-tx packet should be send in reply
44 __le32 confirm_rx;
83 u8 confirm_rx;
143 * @tx_failed: indicates that a message with confirm_rx flag was lost
252 * the low watermark is passed the confirm_rx flag is set on the outgoing
257 * Return: 1 if confirm_rx should be set, 0 otherwise or errno failure
264 int confirm_rx = 0;
267 /* Never set confirm_rx on non-data packets */
285 /* Set confirm_rx if we where unable to find and allocate a flow */
295 confirm_rx = ret;
297 confirm_rx = -EPIPE;
300 confirm_rx = 1;
303 confirm_rx = flow->pending == QRTR_TX_FLOW_LOW;
307 return confirm_rx;
311 * qrtr_tx_flow_failed() - flag that tx of confirm_rx flagged messages failed
316 * Signal that the transmission of a message with confirm_rx flag failed. The
319 * message associated with the dropped confirm_rx message.
321 * cause the next transmission attempt to be sent with the confirm_rx.
346 int rc, confirm_rx;
348 confirm_rx = qrtr_tx_wait(node, to->sq_node, to->sq_port, type);
349 if (confirm_rx < 0) {
351 return confirm_rx;
368 hdr->confirm_rx = !!confirm_rx;
382 * confirm_rx flag if we dropped this one */
383 if (rc && confirm_rx)
469 cb->confirm_rx = !!v1->confirm_rx;
482 cb->confirm_rx = !!(v2->flags & QRTR_FLAGS_CONFIRM_RX);
1078 if (cb->confirm_rx)