Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7149f813 authored by David Miller's avatar David Miller Committed by David S. Miller
Browse files

net: Remove dst->next



There are no more users.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Reviewed-by: default avatarEric Dumazet <edumazet@google.com>
parent 5492093d
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -88,10 +88,6 @@ struct dst_entry {
#ifndef CONFIG_64BIT
	atomic_t		__refcnt;	/* 32-bit offset 64 */
#endif

	union {
		struct dst_entry	*next;
	};
};

struct dst_metrics {
+0 −1
Original line number Diff line number Diff line
@@ -86,7 +86,6 @@ void dst_init(struct dst_entry *dst, struct dst_ops *ops,
	dst->__use = 0;
	dst->lastuse = jiffies;
	dst->flags = flags;
	dst->next = NULL;
	if (!(flags & DST_NOCOUNT))
		dst_entries_add(ops, 1);
}