Home
last modified time | relevance | path

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

/Linux-v5.15/include/linux/
Dskbuff.h250 struct skb_ext;
939 struct skb_ext *extensions;
4256 struct skb_ext { struct
4263 struct skb_ext *__skb_ext_alloc(gfp_t flags); argument
4265 struct skb_ext *ext);
4268 void __skb_ext_put(struct skb_ext *ext);
4282 struct skb_ext *ext = src->extensions; in __skb_ext_copy()
4295 static inline bool __skb_ext_exist(const struct skb_ext *ext, enum skb_ext_id i) in __skb_ext_exist()
4314 struct skb_ext *ext = skb->extensions; in skb_ext_find()
/Linux-v5.15/net/core/
Dskbuff.c4448 return SKB_EXT_CHUNKSIZEOF(struct skb_ext) + in skb_ext_total_length()
6396 static void *skb_ext_get_ptr(struct skb_ext *ext, enum skb_ext_id id) in skb_ext_get_ptr()
6410 struct skb_ext *__skb_ext_alloc(gfp_t flags) in __skb_ext_alloc()
6412 struct skb_ext *new = kmem_cache_alloc(skbuff_ext_cache, flags); in __skb_ext_alloc()
6422 static struct skb_ext *skb_ext_maybe_cow(struct skb_ext *old, in skb_ext_maybe_cow()
6425 struct skb_ext *new; in skb_ext_maybe_cow()
6461 struct skb_ext *ext) in __skb_ext_set()
6490 struct skb_ext *new, *old = NULL; in skb_ext_add()
6535 struct skb_ext *ext = skb->extensions; in __skb_ext_del()
6553 void __skb_ext_put(struct skb_ext *ext) in __skb_ext_put()
Ddev.c5956 struct tc_skb_ext *skb_ext; in gro_list_prepare() local
5965 skb_ext = skb_ext_find(skb, TC_SKB_EXT); in gro_list_prepare()
5968 diffs |= (!!p_ext) ^ (!!skb_ext); in gro_list_prepare()
5969 if (!diffs && unlikely(skb_ext)) in gro_list_prepare()
5970 diffs |= p_ext->chain ^ skb_ext->chain; in gro_list_prepare()
/Linux-v5.15/net/mptcp/
Dprotocol.c1207 struct skb_ext *mpext = __skb_ext_alloc(gfp); in __mptcp_add_ext()