Home
last modified time | relevance | path

Searched refs:fragstolen (Results 1 - 11 of 11) sorted by relevance

/kernel/linux/common_modules/newip/third_party/linux-5.10/net/newip/
H A Dtcp_nip_input.c243 * @fragstolen: pointer to boolean
254 bool *fragstolen) in tcp_nip_try_coalesce()
258 *fragstolen = false; in tcp_nip_try_coalesce()
264 if (!skb_try_coalesce(to, from, fragstolen, &delta)) { in tcp_nip_try_coalesce()
288 bool *fragstolen) in tcp_nip_ooo_try_coalesce()
290 bool res = tcp_nip_try_coalesce(sk, to, from, fragstolen); in tcp_nip_ooo_try_coalesce()
313 bool fragstolen; in tcp_nip_ofo_queue() local
337 eaten = tail && tcp_nip_try_coalesce(sk, tail, skb, &fragstolen); in tcp_nip_ofo_queue()
343 kfree_skb_partial(skb, fragstolen); in tcp_nip_ofo_queue()
370 bool fragstolen; in tcp_nip_data_queue_ofo() local
251 tcp_nip_try_coalesce(struct sock *sk, struct sk_buff *to, struct sk_buff *from, bool *fragstolen) tcp_nip_try_coalesce() argument
285 tcp_nip_ooo_try_coalesce(struct sock *sk, struct sk_buff *to, struct sk_buff *from, bool *fragstolen) tcp_nip_ooo_try_coalesce() argument
[all...]
/kernel/linux/linux-5.10/net/ipv4/
H A Dtcp_input.c4634 * @fragstolen: pointer to boolean
4645 bool *fragstolen) in tcp_try_coalesce()
4649 *fragstolen = false; in tcp_try_coalesce()
4663 if (!skb_try_coalesce(to, from, fragstolen, &delta)) in tcp_try_coalesce()
4685 bool *fragstolen) in tcp_ooo_try_coalesce()
4687 bool res = tcp_try_coalesce(sk, to, from, fragstolen); in tcp_ooo_try_coalesce()
4712 bool fin, fragstolen, eaten; in tcp_ofo_queue() local
4737 eaten = tail && tcp_try_coalesce(sk, tail, skb, &fragstolen); in tcp_ofo_queue()
4743 kfree_skb_partial(skb, fragstolen); in tcp_ofo_queue()
4781 bool fragstolen; in tcp_data_queue_ofo() local
4642 tcp_try_coalesce(struct sock *sk, struct sk_buff *to, struct sk_buff *from, bool *fragstolen) tcp_try_coalesce() argument
4682 tcp_ooo_try_coalesce(struct sock *sk, struct sk_buff *to, struct sk_buff *from, bool *fragstolen) tcp_ooo_try_coalesce() argument
4919 tcp_queue_rcv(struct sock *sk, struct sk_buff *skb, bool *fragstolen) tcp_queue_rcv() argument
4941 bool fragstolen; tcp_send_rcvq() local
5004 bool fragstolen; tcp_data_queue() local
5895 bool fragstolen = false; tcp_rcv_established() local
[all...]
H A Dtcp_ipv4.c1796 bool fragstolen; in tcp_add_backlog() local
1856 if (skb_try_coalesce(tail, skb, &fragstolen, &delta)) { in tcp_add_backlog()
1888 kfree_skb_partial(skb, fragstolen); in tcp_add_backlog()
/kernel/linux/linux-6.6/net/ipv4/
H A Dtcp_input.c4679 * @fragstolen: pointer to boolean
4690 bool *fragstolen) in tcp_try_coalesce()
4694 *fragstolen = false; in tcp_try_coalesce()
4708 if (!skb_try_coalesce(to, from, fragstolen, &delta)) in tcp_try_coalesce()
4730 bool *fragstolen) in tcp_ooo_try_coalesce()
4732 bool res = tcp_try_coalesce(sk, to, from, fragstolen); in tcp_ooo_try_coalesce()
4758 bool fin, fragstolen, eaten; in tcp_ofo_queue() local
4783 eaten = tail && tcp_try_coalesce(sk, tail, skb, &fragstolen); in tcp_ofo_queue()
4789 kfree_skb_partial(skb, fragstolen); in tcp_ofo_queue()
4827 bool fragstolen; in tcp_data_queue_ofo() local
4687 tcp_try_coalesce(struct sock *sk, struct sk_buff *to, struct sk_buff *from, bool *fragstolen) tcp_try_coalesce() argument
4727 tcp_ooo_try_coalesce(struct sock *sk, struct sk_buff *to, struct sk_buff *from, bool *fragstolen) tcp_ooo_try_coalesce() argument
4967 tcp_queue_rcv(struct sock *sk, struct sk_buff *skb, bool *fragstolen) tcp_queue_rcv() argument
4989 bool fragstolen; tcp_send_rcvq() local
5046 bool fragstolen; tcp_data_queue() local
5983 bool fragstolen = false; tcp_rcv_established() local
[all...]
H A Dtcp_ipv4.c1825 bool fragstolen; in tcp_add_backlog() local
1887 if (skb_try_coalesce(tail, skb, &fragstolen, &delta)) { in tcp_add_backlog()
1919 kfree_skb_partial(skb, fragstolen); in tcp_add_backlog()
/kernel/linux/linux-5.10/net/mptcp/
H A Dprotocol.c124 bool fragstolen; in mptcp_try_coalesce() local
128 !skb_try_coalesce(to, from, &fragstolen, &delta)) in mptcp_try_coalesce()
135 kfree_skb_partial(from, fragstolen); in mptcp_try_coalesce()
/kernel/linux/linux-6.6/net/mptcp/
H A Dprotocol.c151 bool fragstolen; in mptcp_try_coalesce() local
155 !skb_try_coalesce(to, from, &fragstolen, &delta)) in mptcp_try_coalesce()
169 kfree_skb_partial(from, fragstolen); in mptcp_try_coalesce()
/kernel/linux/linux-5.10/net/core/
H A Dskbuff.c5204 * @fragstolen: pointer to boolean
5208 bool *fragstolen, int *delta_truesize) in skb_try_coalesce()
5213 *fragstolen = false; in skb_try_coalesce()
5250 *fragstolen = true; in skb_try_coalesce()
5207 skb_try_coalesce(struct sk_buff *to, struct sk_buff *from, bool *fragstolen, int *delta_truesize) skb_try_coalesce() argument
/kernel/linux/linux-6.6/net/core/
H A Dskbuff.c5738 * @fragstolen: pointer to boolean
5742 bool *fragstolen, int *delta_truesize) in skb_try_coalesce()
5747 *fragstolen = false; in skb_try_coalesce()
5798 *fragstolen = true; in skb_try_coalesce()
5741 skb_try_coalesce(struct sk_buff *to, struct sk_buff *from, bool *fragstolen, int *delta_truesize) skb_try_coalesce() argument
/kernel/linux/linux-5.10/include/linux/
H A Dskbuff.h1083 bool *fragstolen, int *delta_truesize);
/kernel/linux/linux-6.6/include/linux/
H A Dskbuff.h1263 bool *fragstolen, int *delta_truesize);

Completed in 67 milliseconds