Home
last modified time | relevance | path

Searched refs:skb_ext (Results 1 – 6 of 6) sorted by relevance

/linux/drivers/net/netdevsim/
H A Dnetdevsim.h440 void nsim_psp_handle_ext(struct sk_buff *skb, struct skb_ext *psp_ext);
443 struct netdevsim *peer_ns, struct skb_ext **psp_ext);
449 struct netdevsim *peer_ns, struct skb_ext **psp_ext) in nsim_do_psp()
455 nsim_psp_handle_ext(struct sk_buff *skb, struct skb_ext *psp_ext) {} in nsim_psp_handle_ext()
H A Dnetdev.c107 struct skb_ext *psp_ext) in nsim_forward_skb()
123 struct skb_ext *psp_ext = NULL; in nsim_start_xmit()
/linux/net/core/
H A Dgro.c332 struct tc_skb_ext *skb_ext; in gro_list_prepare_tc_ext() local
335 skb_ext = skb_ext_find(skb, TC_SKB_EXT); in gro_list_prepare_tc_ext()
338 diffs |= (!!p_ext) ^ (!!skb_ext); in gro_list_prepare_tc_ext()
339 if (!diffs && unlikely(skb_ext)) in gro_list_prepare_tc_ext()
340 diffs |= p_ext->chain ^ skb_ext->chain; in gro_list_prepare_tc_ext()
H A Dskbuff.c5115 unsigned int l = SKB_EXT_CHUNKSIZEOF(struct skb_ext); in skb_ext_total_length()
7010 static void *skb_ext_get_ptr(struct skb_ext *ext, enum skb_ext_id id) in skb_ext_get_ptr()
7024 struct skb_ext *__skb_ext_alloc(gfp_t flags) in __skb_ext_alloc()
7026 struct skb_ext *new = kmem_cache_alloc(skbuff_ext_cache, flags); in __skb_ext_alloc()
7036 static struct skb_ext *skb_ext_maybe_cow(struct skb_ext *old, in skb_ext_maybe_cow()
7039 struct skb_ext *new; in skb_ext_maybe_cow()
7083 struct skb_ext *ext) in __skb_ext_set()
7113 struct skb_ext *new, *old = NULL; in skb_ext_add()
7166 struct skb_ext *ext = skb->extensions; in __skb_ext_del()
7184 void __skb_ext_put(struct skb_ext *ext) in __skb_ext_put()
/linux/include/linux/
H A Dskbuff.h284 struct skb_ext;
1101 struct skb_ext *extensions;
5017 struct skb_ext { struct
5024 struct skb_ext *__skb_ext_alloc(gfp_t flags); argument
5026 struct skb_ext *ext);
5029 void __skb_ext_put(struct skb_ext *ext);
5043 struct skb_ext *ext = src->extensions; in __skb_ext_copy()
5056 static inline bool __skb_ext_exist(const struct skb_ext *ext, enum skb_ext_id i) in __skb_ext_exist()
5075 struct skb_ext *ext = skb->extensions; in skb_ext_find()
/linux/net/mptcp/
H A Dprotocol.c1189 struct skb_ext *mpext = __skb_ext_alloc(gfp); in __mptcp_add_ext()