net: Remove dst->next
There are no more users. Signed-off-by: David S. Miller <davem@davemloft.net> Reviewed-by: Eric Dumazet <edumazet@google.com>
This commit is contained in:
parent
5492093dc4
commit
7149f813d1
2 changed files with 0 additions and 5 deletions
|
@ -88,10 +88,6 @@ struct dst_entry {
|
||||||
#ifndef CONFIG_64BIT
|
#ifndef CONFIG_64BIT
|
||||||
atomic_t __refcnt; /* 32-bit offset 64 */
|
atomic_t __refcnt; /* 32-bit offset 64 */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
union {
|
|
||||||
struct dst_entry *next;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct dst_metrics {
|
struct dst_metrics {
|
||||||
|
|
|
@ -86,7 +86,6 @@ void dst_init(struct dst_entry *dst, struct dst_ops *ops,
|
||||||
dst->__use = 0;
|
dst->__use = 0;
|
||||||
dst->lastuse = jiffies;
|
dst->lastuse = jiffies;
|
||||||
dst->flags = flags;
|
dst->flags = flags;
|
||||||
dst->next = NULL;
|
|
||||||
if (!(flags & DST_NOCOUNT))
|
if (!(flags & DST_NOCOUNT))
|
||||||
dst_entries_add(ops, 1);
|
dst_entries_add(ops, 1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue