aboutsummaryrefslogtreecommitdiff
path: root/include/linux/skbuff.h
diff options
context:
space:
mode:
authorEric Dumazet <eric.dumazet@gmail.com>2009-06-02 05:20:21 +0000
committerDavid S. Miller <davem@davemloft.net>2009-06-03 02:51:05 -0700
commite5b9215ef9a274eb9fb65f6aa4602ad82d10a6cb (patch)
tree2b3a4ac7f0a52b3ade1b6cae1de34d461706670a /include/linux/skbuff.h
parentadf30907d63893e4208dfe3f5c88ae12bc2f25d5 (diff)
net: skb cleanup
Can remove anonymous union now it has one field. Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r--include/linux/skbuff.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 9ef6eb20247..7305da92be8 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