Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 47686
b: refs/heads/master
c: 1e19e02
h: refs/heads/master
v: v3
  • Loading branch information
Eric Dumazet authored and David S. Miller committed Feb 11, 2007
1 parent ff5cd1e commit 23b8f3c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0c195c3fc4e95a06b0c0017506f074c94af99c35
refs/heads/master: 1e19e02ca0c5e33ea73a25127dbe6c3b8fcaac4b
20 changes: 10 additions & 10 deletions trunk/include/net/dst.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,7 @@ struct sk_buff;

struct dst_entry
{
union {
struct dst_entry *next;
struct rtable *rt_next;
struct rt6_info *rt6_next;
struct dn_route *dn_next;
};
atomic_t __refcnt; /* client references */
int __use;
struct rcu_head rcu_head;
struct dst_entry *child;
struct net_device *dev;
short error;
Expand All @@ -55,7 +48,6 @@ struct dst_entry
#define DST_NOPOLICY 4
#define DST_NOHASH 8
#define DST_BALANCED 0x10
unsigned long lastuse;
unsigned long expires;

unsigned short header_len; /* more space at head required */
Expand All @@ -80,8 +72,16 @@ struct dst_entry
#endif

struct dst_ops *ops;
struct rcu_head rcu_head;

unsigned long lastuse;
atomic_t __refcnt; /* client references */
int __use;
union {
struct dst_entry *next;
struct rtable *rt_next;
struct rt6_info *rt6_next;
struct dn_route *dn_next;
};
char info[0];
};

Expand Down

0 comments on commit 23b8f3c

Please sign in to comment.