Home
last modified time | relevance | path

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

/openbmc/linux/net/sched/
H A 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()
H A 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()
H A Dact_ct.c523 if (!pskb_network_may_pull(skb, sizeof(*iph))) in tcf_ct_flow_table_fill_tuple_ipv4()
553 if (!pskb_network_may_pull(skb, thoff + hdrsize)) in tcf_ct_flow_table_fill_tuple_ipv4()
596 if (!pskb_network_may_pull(skb, sizeof(*ip6h))) in tcf_ct_flow_table_fill_tuple_ipv6()
622 if (!pskb_network_may_pull(skb, thoff + hdrsize)) in tcf_ct_flow_table_fill_tuple_ipv6()
/openbmc/linux/include/net/
H A Dinet_ecn.h195 if (!pskb_network_may_pull(skb, sizeof(struct iphdr))) in skb_get_dsfield()
200 if (!pskb_network_may_pull(skb, sizeof(struct ipv6hdr))) in skb_get_dsfield()
H A Daddrconf.h262 !pskb_network_may_pull(skb, offset + sizeof(struct icmp6hdr))) in ipv6_is_mld()
H A Dip_tunnels.h360 return pskb_network_may_pull(skb, nhlen); in pskb_inet_may_pull()
/openbmc/linux/drivers/net/wireguard/
H A Dreceive.c369 if (unlikely(!(pskb_network_may_pull(skb, sizeof(struct iphdr)) && in wg_packet_consume_data_done()
372 pskb_network_may_pull(skb, sizeof(struct ipv6hdr))))))) in wg_packet_consume_data_done()
/openbmc/linux/drivers/net/bonding/
H A Dbond_alb.c659 if (!pskb_network_may_pull(skb, sizeof(*arp))) in rlb_arp_xmit()
1290 if (!pskb_network_may_pull(skb, sizeof(*ip6hdr))) in alb_determine_nd()
1297 if (!pskb_network_may_pull(skb, sizeof(*ip6hdr) + sizeof(*hdr))) in alb_determine_nd()
1439 !pskb_network_may_pull(skb, sizeof(*iph))) { in bond_xmit_alb_slave_get()
/openbmc/linux/net/ipv4/
H A Dip_gre.c650 if (!pskb_network_may_pull(skb, pull_len)) in ipgre_xmit()
H A 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()
/openbmc/linux/include/linux/
H A Dskbuff.h3015 static inline int pskb_network_may_pull(struct sk_buff *skb, unsigned int len) in pskb_network_may_pull() function