From: Vladimir Oltean Date: Sat, 11 May 2019 20:14:47 +0000 (+0300) Subject: net: dsa: Remove the now unused DSA_SKB_CB_COPY() macro X-Git-Tag: v5.15~6378^2~12^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1c9b1420ac137a0060dc67d3840bdaae9bcf4bae;p=platform%2Fkernel%2Flinux-starfive.git net: dsa: Remove the now unused DSA_SKB_CB_COPY() macro It's best to not expose this, due to the performance hit it may cause when calling it. Fixes: b68b0dd0fb2d ("net: dsa: Keep private info in the skb->cb") Signed-off-by: Vladimir Oltean Reviewed-by: Andrew Lunn Signed-off-by: David S. Miller --- diff --git a/include/net/dsa.h b/include/net/dsa.h index 1f6b860..6852948 100644 --- a/include/net/dsa.h +++ b/include/net/dsa.h @@ -99,9 +99,6 @@ struct __dsa_skb_cb { #define DSA_SKB_CB(skb) ((struct dsa_skb_cb *)((skb)->cb)) -#define DSA_SKB_CB_COPY(nskb, skb) \ - { *__DSA_SKB_CB(nskb) = *__DSA_SKB_CB(skb); } - #define DSA_SKB_CB_PRIV(skb) \ ((void *)(skb)->cb + offsetof(struct __dsa_skb_cb, priv))