LinuxKPI: skbuff: fix tracing

Fix arguments to a trace line and remove another trace line until we
actually will have the skb to trace along with a future implementation.

Sponsored by:	The FreeBSD Foundation
MFC after:	10 days
This commit is contained in:
Bjoern A. Zeeb 2023-08-19 04:50:03 +00:00
parent d8bb58586d
commit 149c457de1

View file

@ -573,7 +573,7 @@ __skb_queue_tail(struct sk_buff_head *q, struct sk_buff *new)
static inline void
skb_queue_tail(struct sk_buff_head *q, struct sk_buff *new)
{
SKB_TRACE2(q, skb);
SKB_TRACE2(q, new);
return (__skb_queue_tail(q, new));
}
@ -1048,7 +1048,6 @@ static inline struct sk_buff *
napi_build_skb(void *data, size_t len)
{
SKB_TRACE(skb);
SKB_TODO();
return (NULL);
}