Home
last modified time | relevance | path

Searched refs:skb1 (Results 1 – 13 of 13) sorted by relevance

/linux-6.3-rc2/net/sched/
A Dsch_choke.c148 static bool choke_match_flow(struct sk_buff *skb1, in choke_match_flow() argument
153 if (skb1->protocol != skb2->protocol) in choke_match_flow()
156 if (!choke_skb_cb(skb1)->keys_valid) { in choke_match_flow()
157 choke_skb_cb(skb1)->keys_valid = 1; in choke_match_flow()
158 skb_flow_dissect_flow_keys(skb1, &temp, 0); in choke_match_flow()
159 make_flow_keys_digest(&choke_skb_cb(skb1)->keys, &temp); in choke_match_flow()
168 return !memcmp(&choke_skb_cb(skb1)->keys, in choke_match_flow()
170 sizeof(choke_skb_cb(skb1)->keys)); in choke_match_flow()
/linux-6.3-rc2/net/llc/
A Dllc_sap.c365 struct sk_buff *skb1; in llc_do_mcast() local
369 skb1 = skb_clone(skb, GFP_ATOMIC); in llc_do_mcast()
370 if (!skb1) { in llc_do_mcast()
375 llc_sap_rcv(sap, skb1, stack[i]); in llc_do_mcast()
/linux-6.3-rc2/net/core/
A Dskbuff.c1796 skb1); in skb_clone()
3744 skb1->len += skb1->data_len; in skb_split_inside_header()
3758 skb1->len = skb1->data_len = skb->len - len; in skb_split_no_header()
4911 if (skb_shared(skb1)) in skb_cow_data()
4924 skb_cloned(skb1) || in skb_cow_data()
4941 if (skb1->sk) in skb_cow_data()
4947 skb2->next = skb1->next; in skb_cow_data()
4949 kfree_skb(skb1); in skb_cow_data()
4950 skb1 = skb2; in skb_cow_data()
4953 *trailer = skb1; in skb_cow_data()
[all …]
/linux-6.3-rc2/net/batman-adv/
A Dsend.c1057 struct sk_buff *skb1; in batadv_send_outstanding_bcast_packet() local
1076 skb1 = skb_clone(forw_packet->skb, GFP_ATOMIC); in batadv_send_outstanding_bcast_packet()
1077 if (!skb1) in batadv_send_outstanding_bcast_packet()
1080 batadv_send_broadcast_skb(skb1, forw_packet->if_outgoing); in batadv_send_outstanding_bcast_packet()
/linux-6.3-rc2/net/ipv4/
A Dtcp_input.c4792 struct sk_buff *skb1; in tcp_data_queue_ofo() local
4854 skb1 = rb_to_skb(parent); in tcp_data_queue_ofo()
4855 if (before(seq, TCP_SKB_CB(skb1)->seq)) { in tcp_data_queue_ofo()
4870 if (after(seq, TCP_SKB_CB(skb1)->seq)) { in tcp_data_queue_ofo()
4880 TCP_SKB_CB(skb1)->seq, in tcp_data_queue_ofo()
4881 TCP_SKB_CB(skb1)->end_seq); in tcp_data_queue_ofo()
4884 tcp_drop_reason(sk, skb1, in tcp_data_queue_ofo()
4911 TCP_SKB_CB(skb1)->end_seq); in tcp_data_queue_ofo()
4916 if (!skb1) in tcp_data_queue_ofo()
5154 struct sk_buff *skb1; in tcp_rbtree_insert() local
[all …]
A Dicmp.c379 struct sk_buff *skb1; in icmp_push_reply() local
384 skb_queue_walk(&sk->sk_write_queue, skb1) { in icmp_push_reply()
385 csum = csum_add(csum, skb1->csum); in icmp_push_reply()
/linux-6.3-rc2/net/mptcp/
A Dprotocol.c212 struct sk_buff *skb1; in mptcp_data_queue_ofo() local
260 skb1 = rb_to_skb(parent); in mptcp_data_queue_ofo()
261 if (before64(seq, MPTCP_SKB_CB(skb1)->map_seq)) { in mptcp_data_queue_ofo()
265 if (before64(seq, MPTCP_SKB_CB(skb1)->end_seq)) { in mptcp_data_queue_ofo()
272 if (after64(seq, MPTCP_SKB_CB(skb1)->map_seq)) { in mptcp_data_queue_ofo()
282 rb_replace_node(&skb1->rbnode, &skb->rbnode, in mptcp_data_queue_ofo()
284 mptcp_drop(sk, skb1); in mptcp_data_queue_ofo()
302 while ((skb1 = skb_rb_next(skb)) != NULL) { in mptcp_data_queue_ofo()
305 rb_erase(&skb1->rbnode, &msk->out_of_order_queue); in mptcp_data_queue_ofo()
306 mptcp_drop(sk, skb1); in mptcp_data_queue_ofo()
[all …]
/linux-6.3-rc2/drivers/atm/
A Diphase.c640 struct sk_buff *skb = NULL, *skb1 = NULL; in ia_tx_poll() local
665 skb1 = skb_dequeue(&iavcc->txing_skb); in ia_tx_poll()
666 while (skb1 && (skb1 != skb)) { in ia_tx_poll()
667 if (!(IA_SKB_STATE(skb1) & IA_TX_DONE)) { in ia_tx_poll()
671 if ((vcc->pop) && (skb1->len != 0)) in ia_tx_poll()
673 vcc->pop(vcc, skb1); in ia_tx_poll()
675 (long)skb1);) in ia_tx_poll()
678 dev_kfree_skb_any(skb1); in ia_tx_poll()
679 skb1 = skb_dequeue(&iavcc->txing_skb); in ia_tx_poll()
681 if (!skb1) { in ia_tx_poll()
/linux-6.3-rc2/drivers/net/wireless/ath/ath6kl/
A Dtxrx.c1315 struct sk_buff *skb1 = NULL; in ath6kl_rx() local
1572 skb1 = skb_copy(skb, GFP_ATOMIC); in ath6kl_rx()
1583 skb1 = skb; in ath6kl_rx()
1590 if (skb1) in ath6kl_rx()
1591 ath6kl_data_tx(skb1, vif->ndev); in ath6kl_rx()
/linux-6.3-rc2/include/linux/
A Dskbuff.h1289 struct sk_buff skb1; member
1310 fclones = container_of(skb, struct sk_buff_fclones, skb1); in skb_fclone_busy()
1666 static inline bool skb_pure_zcopy_same(const struct sk_buff *skb1, in skb_pure_zcopy_same() argument
1669 return skb_zcopy_pure(skb1) == skb_zcopy_pure(skb2); in skb_pure_zcopy_same()
3965 void skb_split(struct sk_buff *skb, struct sk_buff *skb1, const u32 len);
/linux-6.3-rc2/drivers/net/ethernet/qlogic/
A Dqla3xxx.c2042 struct sk_buff *skb1 = NULL, *skb2; in ql_process_macip_rx_intr() local
2056 skb1 = lrg_buf_cb1->skb; in ql_process_macip_rx_intr()
2058 if (*((u16 *) skb1->data) != 0xFFFF) in ql_process_macip_rx_intr()
2078 skb_copy_from_linear_data_offset(skb1, VLAN_ID_LEN, in ql_process_macip_rx_intr()
/linux-6.3-rc2/drivers/net/vxlan/
A Dvxlan_core.c2826 struct sk_buff *skb1; in vxlan_xmit() local
2832 skb1 = skb_clone(skb, GFP_ATOMIC); in vxlan_xmit()
2833 if (skb1) in vxlan_xmit()
2834 vxlan_xmit_one(skb1, dev, vni, rdst, did_rsc); in vxlan_xmit()
/linux-6.3-rc2/Documentation/networking/
A Dsnmp_counter.rst729 10 to 15, skb1 has seq 10 to 13, skb2 has seq 14 to 20. The seq 14 and
730 15 in skb2 would be moved to skb1. This operation is 'shift'. If a
731 SACK block acknowledges seq 10 to 20, skb1 has seq 10 to 13, skb2 has
732 seq 14 to 20. All data in skb2 will be moved to skb1, and skb2 will be

Completed in 85 milliseconds