Home
last modified time | relevance | path

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

/openbmc/linux/net/core/
H A Dgro.c308 struct tc_skb_ext *skb_ext; in gro_list_prepare_tc_ext() local
311 skb_ext = skb_ext_find(skb, TC_SKB_EXT); in gro_list_prepare_tc_ext()
314 diffs |= (!!p_ext) ^ (!!skb_ext); in gro_list_prepare_tc_ext()
315 if (!diffs && unlikely(skb_ext)) in gro_list_prepare_tc_ext()
316 diffs |= p_ext->chain ^ skb_ext->chain; in gro_list_prepare_tc_ext()
H A Dskbuff.c4813 unsigned int l = SKB_EXT_CHUNKSIZEOF(struct skb_ext); in skb_ext_total_length()
6624 static void *skb_ext_get_ptr(struct skb_ext *ext, enum skb_ext_id id) in skb_ext_get_ptr()
6638 struct skb_ext *__skb_ext_alloc(gfp_t flags) in __skb_ext_alloc()
6640 struct skb_ext *new = kmem_cache_alloc(skbuff_ext_cache, flags); in __skb_ext_alloc()
6650 static struct skb_ext *skb_ext_maybe_cow(struct skb_ext *old, in skb_ext_maybe_cow()
6653 struct skb_ext *new; in skb_ext_maybe_cow()
6697 struct skb_ext *ext) in __skb_ext_set()
6726 struct skb_ext *new, *old = NULL; in skb_ext_add()
6779 struct skb_ext *ext = skb->extensions; in __skb_ext_del()
6797 void __skb_ext_put(struct skb_ext *ext) in __skb_ext_put()
/openbmc/linux/include/linux/
H A Dskbuff.h283 struct skb_ext;
1056 struct skb_ext *extensions;
4679 struct skb_ext { struct
4686 struct skb_ext *__skb_ext_alloc(gfp_t flags); argument
4688 struct skb_ext *ext);
4691 void __skb_ext_put(struct skb_ext *ext);
4705 struct skb_ext *ext = src->extensions; in __skb_ext_copy()
4718 static inline bool __skb_ext_exist(const struct skb_ext *ext, enum skb_ext_id i) in __skb_ext_exist()
4737 struct skb_ext *ext = skb->extensions; in skb_ext_find()
/openbmc/linux/net/mptcp/
H A Dprotocol.c1161 struct skb_ext *mpext = __skb_ext_alloc(gfp); in __mptcp_add_ext()