Home
last modified time | relevance | path

Searched refs:nskb (Results 1 – 7 of 7) sorted by relevance

/include/linux/can/
A Dskb.h91 struct sk_buff *nskb; in can_create_echo_skb() local
93 nskb = skb_clone(skb, GFP_ATOMIC); in can_create_echo_skb()
94 if (unlikely(!nskb)) { in can_create_echo_skb()
99 can_skb_set_owner(nskb, skb->sk); in can_create_echo_skb()
101 return nskb; in can_create_echo_skb()
/include/net/netfilter/ipv4/
A Dnf_reject.h15 struct iphdr *nf_reject_iphdr_put(struct sk_buff *nskb,
18 void nf_reject_ip_tcphdr_put(struct sk_buff *nskb, const struct sk_buff *oldskb,
/include/net/netfilter/ipv6/
A Dnf_reject.h15 struct ipv6hdr *nf_reject_ip6hdr_put(struct sk_buff *nskb,
18 void nf_reject_ip6_tcphdr_put(struct sk_buff *nskb,
/include/linux/
A Dnetlink.h253 struct sk_buff *nskb; in netlink_skb_clone() local
255 nskb = skb_clone(skb, gfp_mask); in netlink_skb_clone()
256 if (!nskb) in netlink_skb_clone()
261 nskb->destructor = skb->destructor; in netlink_skb_clone()
263 return nskb; in netlink_skb_clone()
A Dnetfilter.h474 void (*attach)(struct sk_buff *nskb, const struct sk_buff *skb);
A Dskbuff.h2085 struct sk_buff *nskb = skb_clone(skb, pri); in skb_share_check() local
2087 if (likely(nskb)) in skb_share_check()
2091 skb = nskb; in skb_share_check()
2121 struct sk_buff *nskb = skb_copy(skb, pri); in skb_unshare() local
2124 if (likely(nskb)) in skb_unshare()
2128 skb = nskb; in skb_unshare()
/include/net/
A Ddst.h280 static inline void __skb_dst_copy(struct sk_buff *nskb, unsigned long refdst) in __skb_dst_copy() argument
282 nskb->slow_gro |= !!refdst; in __skb_dst_copy()
283 nskb->_skb_refdst = refdst; in __skb_dst_copy()
284 if (!(nskb->_skb_refdst & SKB_DST_NOREF)) in __skb_dst_copy()
285 dst_clone(skb_dst(nskb)); in __skb_dst_copy()
288 static inline void skb_dst_copy(struct sk_buff *nskb, const struct sk_buff *oskb) in skb_dst_copy() argument
290 __skb_dst_copy(nskb, oskb->_skb_refdst); in skb_dst_copy()

Completed in 25 milliseconds