From: Eric Dumazet Date: Tue, 2 Jun 2009 05:20:21 +0000 (+0000) Subject: net: skb cleanup X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=e5b9215ef9a274eb9fb65f6aa4602ad82d10a6cb;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git net: skb cleanup Can remove anonymous union now it has one field. Signed-off-by: Eric Dumazet Signed-off-by: David S. Miller --- diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 9ef6eb20247b..7305da92be8f 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h @@ -322,9 +322,7 @@ struct sk_buff { ktime_t tstamp; struct net_device *dev; - union { - unsigned long _skb_dst; - }; + unsigned long _skb_dst; #ifdef CONFIG_XFRM struct sec_path *sp; #endif