Home
last modified time | relevance | path

Searched refs:s1 (Results 1 – 6 of 6) sorted by relevance

/net/dccp/ccids/lib/
Dpacket_history.c155 s1 = DCCP_SKB_CB(skb)->dccpd_seq; in __do_track_loss() local
157 if (!dccp_loss_free(s0, s1, n1)) { /* gap between S0 and S1 */ in __do_track_loss()
166 s1 = tfrc_rx_hist_entry(h, 1)->tfrchrx_seqno, in __one_after_loss() local
169 if (likely(dccp_delta_seqno(s1, s2) > 0)) { /* S1 < S2 */ in __one_after_loss()
180 if (dccp_loss_free(s2, s1, n1)) { in __one_after_loss()
203 s1 = tfrc_rx_hist_entry(h, 1)->tfrchrx_seqno, in __two_after_loss() local
215 if (dccp_delta_seqno(s1, s3) > 0) { /* S1 < S3 < S2 */ in __two_after_loss()
230 if (dccp_loss_free(s3, s1, n1)) { in __two_after_loss()
234 if (dccp_loss_free(s1, s2, n2)) { in __two_after_loss()
271 u64 s1 = tfrc_rx_hist_entry(h, 1)->tfrchrx_seqno, in __three_after_loss() local
[all …]
/net/dccp/
Ddccp.h150 static inline u64 dccp_loss_count(const u64 s1, const u64 s2, const u64 ndp) in dccp_loss_count() argument
152 s64 delta = dccp_delta_seqno(s1, s2); in dccp_loss_count()
163 static inline bool dccp_loss_free(const u64 s1, const u64 s2, const u64 ndp) in dccp_loss_free() argument
165 return dccp_loss_count(s1, s2, ndp) == 0; in dccp_loss_free()
/net/ceph/
Dceph_common.c120 static int strcmp_null(const char *s1, const char *s2) in strcmp_null() argument
122 if (!s1 && !s2) in strcmp_null()
124 if (s1 && !s2) in strcmp_null()
126 if (!s1 && s2) in strcmp_null()
128 return strcmp(s1, s2); in strcmp_null()
/net/sctp/
Dipv6.c62 static inline int sctp_v6_addr_match_len(union sctp_addr *s1,
433 static inline int sctp_v6_addr_match_len(union sctp_addr *s1, in sctp_v6_addr_match_len() argument
436 return ipv6_addr_diff(&s1->v6.sin6_addr, &s2->v6.sin6_addr); in sctp_v6_addr_match_len()
/net/tipc/
Dcrypto.c1564 goto s1; in tipc_crypto_timeout()
1566 goto s1; in tipc_crypto_timeout()
1568 goto s1; in tipc_crypto_timeout()
1576 s1: in tipc_crypto_timeout()
/net/xfrm/
Dxfrm_policy.c1405 static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2) in selector_cmp() argument
1407 u32 *p1 = (u32 *) s1; in selector_cmp()