Home
last modified time | relevance | path

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

/linux-5.19.10/net/core/
Dgro.c390 struct tc_skb_ext *skb_ext; in gro_list_prepare() local
399 skb_ext = skb_ext_find(skb, TC_SKB_EXT); in gro_list_prepare()
402 diffs |= (!!p_ext) ^ (!!skb_ext); in gro_list_prepare()
403 if (!diffs && unlikely(skb_ext)) in gro_list_prepare()
404 diffs |= p_ext->chain ^ skb_ext->chain; in gro_list_prepare()
Dskbuff.c4348 return SKB_EXT_CHUNKSIZEOF(struct skb_ext) + in skb_ext_total_length()
6296 static void *skb_ext_get_ptr(struct skb_ext *ext, enum skb_ext_id id) in skb_ext_get_ptr()
6310 struct skb_ext *__skb_ext_alloc(gfp_t flags) in __skb_ext_alloc()
6312 struct skb_ext *new = kmem_cache_alloc(skbuff_ext_cache, flags); in __skb_ext_alloc()
6322 static struct skb_ext *skb_ext_maybe_cow(struct skb_ext *old, in skb_ext_maybe_cow()
6325 struct skb_ext *new; in skb_ext_maybe_cow()
6361 struct skb_ext *ext) in __skb_ext_set()
6390 struct skb_ext *new, *old = NULL; in skb_ext_add()
6443 struct skb_ext *ext = skb->extensions; in __skb_ext_del()
6461 void __skb_ext_put(struct skb_ext *ext) in __skb_ext_put()
/linux-5.19.10/include/linux/
Dskbuff.h281 struct skb_ext;
1210 struct skb_ext *extensions;
4724 struct skb_ext { struct
4731 struct skb_ext *__skb_ext_alloc(gfp_t flags); argument
4733 struct skb_ext *ext);
4736 void __skb_ext_put(struct skb_ext *ext);
4750 struct skb_ext *ext = src->extensions; in __skb_ext_copy()
4763 static inline bool __skb_ext_exist(const struct skb_ext *ext, enum skb_ext_id i) in __skb_ext_exist()
4782 struct skb_ext *ext = skb->extensions; in skb_ext_find()
/linux-5.19.10/net/mptcp/
Dprotocol.c1172 struct skb_ext *mpext = __skb_ext_alloc(gfp); in __mptcp_add_ext()