diff options
author | Vladimir Oltean <olteanv@gmail.com> | 2019-05-11 22:14:47 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-05-12 22:19:46 +0200 |
commit | 1c9b1420ac137a0060dc67d3840bdaae9bcf4bae (patch) | |
tree | 78332fbd4304dc99714b640e4f67cc4fb6e77620 /include/net/dsa.h | |
parent | net: dsa: Remove dangerous DSA_SKB_CLONE() macro (diff) | |
download | linux-1c9b1420ac137a0060dc67d3840bdaae9bcf4bae.tar.xz linux-1c9b1420ac137a0060dc67d3840bdaae9bcf4bae.zip |
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 <olteanv@gmail.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/dsa.h')
-rw-r--r-- | include/net/dsa.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/net/dsa.h b/include/net/dsa.h index 1f6b8608b0b7..685294817712 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)) |