Home
last modified time | relevance | path

Searched refs:pskb_network_may_pull (Results 1 – 10 of 10) sorted by relevance

/Linux-v5.10/net/sched/
Dem_ipset.c65 if (!pskb_network_may_pull(skb, sizeof(struct iphdr))) in em_ipset_match()
71 if (!pskb_network_may_pull(skb, sizeof(struct ipv6hdr))) in em_ipset_match()
Dem_ipt.c217 if (!pskb_network_may_pull(skb, sizeof(struct iphdr))) in em_ipt_match()
223 if (!pskb_network_may_pull(skb, sizeof(struct ipv6hdr))) in em_ipt_match()
Dact_ct.c414 if (!pskb_network_may_pull(skb, sizeof(*iph))) in tcf_ct_flow_table_fill_tuple_ipv4()
431 if (!pskb_network_may_pull(skb, iph->protocol == IPPROTO_TCP ? in tcf_ct_flow_table_fill_tuple_ipv4()
460 if (!pskb_network_may_pull(skb, sizeof(*ip6h))) in tcf_ct_flow_table_fill_tuple_ipv6()
473 if (!pskb_network_may_pull(skb, ip6h->nexthdr == IPPROTO_TCP ? in tcf_ct_flow_table_fill_tuple_ipv6()
Dcls_rsvp.h141 if (!pskb_network_may_pull(skb, sizeof(*nhptr))) in rsvp_classify()
147 if (!pskb_network_may_pull(skb, sizeof(*nhptr))) in rsvp_classify()
/Linux-v5.10/drivers/net/wireguard/
Dreceive.c375 if (unlikely(!(pskb_network_may_pull(skb, sizeof(struct iphdr)) && in wg_packet_consume_data_done()
378 pskb_network_may_pull(skb, sizeof(struct ipv6hdr))))))) in wg_packet_consume_data_done()
/Linux-v5.10/drivers/net/bonding/
Dbond_alb.c655 if (!pskb_network_may_pull(skb, sizeof(*arp))) in rlb_arp_xmit()
1404 !pskb_network_may_pull(skb, sizeof(*iph))) { in bond_xmit_alb_slave_get()
1436 if (!pskb_network_may_pull(skb, sizeof(*ip6hdr))) { in bond_xmit_alb_slave_get()
1457 if (pskb_network_may_pull(skb, sizeof(*ipxhdr))) { in bond_xmit_alb_slave_get()
/Linux-v5.10/include/net/
Daddrconf.h253 !pskb_network_may_pull(skb, offset + sizeof(struct icmp6hdr))) in ipv6_is_mld()
Dip_tunnels.h333 return pskb_network_may_pull(skb, nhlen); in pskb_inet_may_pull()
/Linux-v5.10/net/ipv4/
Droute.c1215 if (!pskb_network_may_pull(skb, sizeof(struct iphdr)) || in ipv4_send_dest_unreach()
1221 if (!pskb_network_may_pull(skb, ip_hdr(skb)->ihl * 4)) in ipv4_send_dest_unreach()
/Linux-v5.10/include/linux/
Dskbuff.h2629 static inline int pskb_network_may_pull(struct sk_buff *skb, unsigned int len) in pskb_network_may_pull() function