Lines Matching refs:confirm_rx
32 * @confirm_rx: boolean; whether a resume-tx packet should be send in reply
42 __le32 confirm_rx;
81 u8 confirm_rx;
141 * @tx_failed: indicates that a message with confirm_rx flag was lost
245 * the low watermark is passed the confirm_rx flag is set on the outgoing
250 * Return: 1 if confirm_rx should be set, 0 otherwise or errno failure
257 int confirm_rx = 0;
260 /* Never set confirm_rx on non-data packets */
278 /* Set confirm_rx if we where unable to find and allocate a flow */
288 confirm_rx = ret;
290 confirm_rx = -EPIPE;
293 confirm_rx = 1;
296 confirm_rx = flow->pending == QRTR_TX_FLOW_LOW;
300 return confirm_rx;
304 * qrtr_tx_flow_failed() - flag that tx of confirm_rx flagged messages failed
309 * Signal that the transmission of a message with confirm_rx flag failed. The
312 * message associated with the dropped confirm_rx message.
314 * cause the next transmission attempt to be sent with the confirm_rx.
339 int rc, confirm_rx;
341 confirm_rx = qrtr_tx_wait(node, to->sq_node, to->sq_port, type);
342 if (confirm_rx < 0) {
344 return confirm_rx;
361 hdr->confirm_rx = !!confirm_rx;
375 * confirm_rx flag if we dropped this one */
376 if (rc && confirm_rx)
461 cb->confirm_rx = !!v1->confirm_rx;
474 cb->confirm_rx = !!(v2->flags & QRTR_FLAGS_CONFIRM_RX);
1058 if (cb->confirm_rx)