Home
last modified time | relevance | path

Searched refs:after64 (Results 1 – 2 of 2) sorted by relevance

/linux/net/mptcp/
H A Dprotocol.c256 if (after64(end_seq, max_seq)) { in mptcp_data_queue_ofo()
302 if (!after64(end_seq, MPTCP_SKB_CB(skb1)->end_seq)) { in mptcp_data_queue_ofo()
308 if (after64(seq, MPTCP_SKB_CB(skb1)->map_seq)) { in mptcp_data_queue_ofo()
395 } else if (after64(MPTCP_SKB_CB(skb)->map_seq, msk->ack_seq)) { in __mptcp_move_skb()
785 if (after64(MPTCP_SKB_CB(skb)->map_seq, msk->ack_seq)) in __mptcp_ofo_queue()
791 if (unlikely(!after64(MPTCP_SKB_CB(skb)->end_seq, in __mptcp_ofo_queue()
1066 if (after64(dfrag->data_seq + dfrag->data_len, snd_una)) in __mptcp_clean_una()
1081 if (dfrag && after64(snd_una, dfrag->data_seq)) { in __mptcp_clean_una()
1102 if (unlikely(msk->recovery) && after64(msk->snd_una, msk->recovery_snd_nxt)) in __mptcp_clean_una()
1594 if (likely(after64(snd_nxt_new, msk->snd_nxt))) { in mptcp_update_post_push()
H A Dprotocol.h143 #define after64(seq2, seq1) before64(seq1, seq2) macro