Home
last modified time | relevance | path

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

/linux-6.1.9/net/core/
Dgro.c392 struct tc_skb_ext *skb_ext; in gro_list_prepare() local
401 skb_ext = skb_ext_find(skb, TC_SKB_EXT); in gro_list_prepare()
404 diffs |= (!!p_ext) ^ (!!skb_ext); in gro_list_prepare()
405 if (!diffs && unlikely(skb_ext)) in gro_list_prepare()
406 diffs |= p_ext->chain ^ skb_ext->chain; in gro_list_prepare()
Dskbuff.c4486 return SKB_EXT_CHUNKSIZEOF(struct skb_ext) + in skb_ext_total_length()
6434 static void *skb_ext_get_ptr(struct skb_ext *ext, enum skb_ext_id id) in skb_ext_get_ptr()
6448 struct skb_ext *__skb_ext_alloc(gfp_t flags) in __skb_ext_alloc()
6450 struct skb_ext *new = kmem_cache_alloc(skbuff_ext_cache, flags); in __skb_ext_alloc()
6460 static struct skb_ext *skb_ext_maybe_cow(struct skb_ext *old, in skb_ext_maybe_cow()
6463 struct skb_ext *new; in skb_ext_maybe_cow()
6499 struct skb_ext *ext) in __skb_ext_set()
6528 struct skb_ext *new, *old = NULL; in skb_ext_add()
6581 struct skb_ext *ext = skb->extensions; in __skb_ext_del()
6599 void __skb_ext_put(struct skb_ext *ext) in __skb_ext_put()
/linux-6.1.9/include/linux/
Dskbuff.h282 struct skb_ext;
1050 struct skb_ext *extensions;
4590 struct skb_ext { struct
4597 struct skb_ext *__skb_ext_alloc(gfp_t flags); argument
4599 struct skb_ext *ext);
4602 void __skb_ext_put(struct skb_ext *ext);
4616 struct skb_ext *ext = src->extensions; in __skb_ext_copy()
4629 static inline bool __skb_ext_exist(const struct skb_ext *ext, enum skb_ext_id i) in __skb_ext_exist()
4648 struct skb_ext *ext = skb->extensions; in skb_ext_find()
/linux-6.1.9/net/mptcp/
Dprotocol.c1148 struct skb_ext *mpext = __skb_ext_alloc(gfp); in __mptcp_add_ext()