LinuxKPI: skbuff: add dummy skb_copy_header()

There's one case which needs skb_copy_header();  add a dummy function
for now until we get to the code which uses it to test an implementation.

Sponsored by:	The FreeBSD Foundation
MFC after:	3 days
This commit is contained in:
Bjoern A. Zeeb 2024-07-29 16:09:02 +00:00
parent d87ee937ed
commit 84c5998ccb

View file

@ -1001,6 +1001,13 @@ skb_get_queue_mapping(struct sk_buff *skb)
return (skb->qmap);
}
static inline void
skb_copy_header(struct sk_buff *to, const struct sk_buff *from)
{
SKB_TRACE2(to, from);
SKB_TODO();
}
static inline bool
skb_header_cloned(struct sk_buff *skb)
{