Searched defs:s2 (Results 1 - 7 of 7) sorted by relevance

/net/dccp/ccids/lib/
H A Dpacket_history.c182 s2 = DCCP_SKB_CB(skb)->dccpd_seq; local
184 if (likely(dccp_delta_seqno(s1, s2) > 0)) { /* S1 < S2 */
192 if (dccp_loss_free(s0, s2, n2)) {
195 if (dccp_loss_free(s2, s1, n1)) {
219 s2 = tfrc_rx_hist_entry(h, 2)->tfrchrx_seqno, local
222 if (likely(dccp_delta_seqno(s2, s3) > 0)) { /* S2 < S3 */
249 if (dccp_loss_free(s1, s2, n2)) {
287 s2 = tfrc_rx_hist_entry(h, 2)->tfrchrx_seqno, local
292 if (dccp_loss_free(s1, s2, n2)) {
294 if (dccp_loss_free(s2, s
[all...]
/net/dccp/
H A Ddccp.h155 * @s2: first sequence number seen after the 'hole'
156 * @ndp: NDP count on packet with sequence number @s2
158 static inline u64 dccp_loss_count(const u64 s1, const u64 s2, const u64 ndp) argument
160 s64 delta = dccp_delta_seqno(s1, s2);
171 static inline bool dccp_loss_free(const u64 s1, const u64 s2, const u64 ndp)
173 return dccp_loss_count(s1, s2, ndp) == 0;
/net/ceph/
H A Dceph_common.c114 static int strcmp_null(const char *s1, const char *s2) argument
116 if (!s1 && !s2)
118 if (s1 && !s2)
120 if (!s1 && s2)
122 return strcmp(s1, s2);
/net/ipv6/netfilter/
H A Dnf_conntrack_reasm.c639 struct sk_buff *s, *s2; local
642 s2 = s->next;
645 s = s2;
/net/rxrpc/
H A Drxkad.c632 const struct rxkad_key *s2)
658 iov[2].iov_base = (void *) s2->ticket;
659 iov[2].iov_len = s2->ticket_len;
719 const struct rxkad_key *s2)
726 memcpy(&iv, s2->session_key, sizeof(iv));
629 rxkad_send_response(struct rxrpc_connection *conn, struct rxrpc_header *hdr, struct rxkad_response *resp, const struct rxkad_key *s2) argument
717 rxkad_encrypt_response(struct rxrpc_connection *conn, struct rxkad_response *resp, const struct rxkad_key *s2) argument
/net/sctp/
H A Dipv6.c77 union sctp_addr *s2);
348 union sctp_addr *s2)
350 return ipv6_addr_diff(&s1->v6.sin6_addr, &s2->v6.sin6_addr);
347 sctp_v6_addr_match_len(union sctp_addr *s1, union sctp_addr *s2) argument
/net/xfrm/
H A Dxfrm_policy.c689 static inline int selector_cmp(struct xfrm_selector *s1, struct xfrm_selector *s2) argument
692 u32 *p2 = (u32 *) s2;

Completed in 427 milliseconds