diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2009-06-02 05:20:21 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-06-03 02:51:05 -0700 |
commit | e5b9215ef9a274eb9fb65f6aa4602ad82d10a6cb (patch) | |
tree | 2b3a4ac7f0a52b3ade1b6cae1de34d461706670a /include | |
parent | adf30907d63893e4208dfe3f5c88ae12bc2f25d5 (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')
-rw-r--r-- | include/linux/skbuff.h | 4 |
1 files changed, 1 insertions, 3 deletions
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 |