Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/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.c425 if (!pskb_network_may_pull(skb, sizeof(*iph))) in tcf_ct_flow_table_fill_tuple_ipv4()
442 if (!pskb_network_may_pull(skb, iph->protocol == IPPROTO_TCP ? in tcf_ct_flow_table_fill_tuple_ipv4()
471 if (!pskb_network_may_pull(skb, sizeof(*ip6h))) in tcf_ct_flow_table_fill_tuple_ipv6()
484 if (!pskb_network_may_pull(skb, ip6h->nexthdr == IPPROTO_TCP ? in tcf_ct_flow_table_fill_tuple_ipv6()
H A 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()
/OK3568_Linux_fs/kernel/drivers/net/wireguard/
H A Dreceive.c376 if (unlikely(!(pskb_network_may_pull(skb, sizeof(struct iphdr)) && in wg_packet_consume_data_done()
379 pskb_network_may_pull(skb, sizeof(struct ipv6hdr))))))) in wg_packet_consume_data_done()
/OK3568_Linux_fs/kernel/drivers/net/bonding/
H A 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()
/OK3568_Linux_fs/kernel/include/net/
H A Daddrconf.h254 !pskb_network_may_pull(skb, offset + sizeof(struct icmp6hdr))) in ipv6_is_mld()
H A Dip_tunnels.h333 return pskb_network_may_pull(skb, nhlen); in pskb_inet_may_pull()
/OK3568_Linux_fs/kernel/net/ipv4/
H A Droute.c1249 if (!pskb_network_may_pull(skb, sizeof(struct iphdr)) || in ipv4_send_dest_unreach()
1255 if (!pskb_network_may_pull(skb, ip_hdr(skb)->ihl * 4)) in ipv4_send_dest_unreach()
/OK3568_Linux_fs/kernel/include/linux/
H A Dskbuff.h2685 static inline int pskb_network_may_pull(struct sk_buff *skb, unsigned int len) in pskb_network_may_pull() function