Lines Matching defs:ack
716 struct rxrpc_ackpacket ack;
720 u8 *acks = skb->data + sizeof(struct rxrpc_wire_header) + sizeof(ack);
803 * with respect to the ack state conveyed by preceding ACKs.
828 * ack.firstPacket is the sequence number of the first soft-ACK'd/NAK'd packet
838 struct rxrpc_ackpacket ack;
848 if (skb_copy_bits(skb, offset, &ack, sizeof(ack)) < 0)
850 offset += sizeof(ack);
853 acked_serial = ntohl(ack.serial);
854 first_soft_ack = ntohl(ack.firstPacket);
855 prev_pkt = ntohl(ack.previousPacket);
857 nr_acks = ack.nAcks;
860 summary.ack_reason = (ack.reason < RXRPC_ACK__INVALID ?
861 ack.reason : RXRPC_ACK__INVALID);
866 rxrpc_inc_stat(call->rxnet, stat_rx_acks[ack.reason]);
869 switch (ack.reason) {
889 if (unlikely(ack.reason == RXRPC_ACK_EXCEEDS_WINDOW) &&
902 if (unlikely(ack.reason == RXRPC_ACK_OUT_OF_SEQUENCE) &&
943 switch (ack.reason) {
1000 if (ack.reason == RXRPC_ACK_PING)