summaryrefslogtreecommitdiffstats
path: root/net/core/dst.c
diff options
context:
space:
mode:
authorDavid Miller2017-11-28 21:41:07 +0100
committerDavid S. Miller2017-11-30 15:54:27 +0100
commit7149f813d12d92ba9abcf49026f7cebc3d55c426 (patch)
treee641339a0502163e89688162458d43f1afc6c206 /net/core/dst.c
parentxfrm: Stop using dst->next in bundle construction. (diff)
downloadkernel-qcow2-linux-7149f813d12d92ba9abcf49026f7cebc3d55c426.tar.gz
kernel-qcow2-linux-7149f813d12d92ba9abcf49026f7cebc3d55c426.tar.xz
kernel-qcow2-linux-7149f813d12d92ba9abcf49026f7cebc3d55c426.zip
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>
Diffstat (limited to 'net/core/dst.c')
-rw-r--r--net/core/dst.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/net/core/dst.c b/net/core/dst.c
index 9bc3bb6e94ef..007aa0b08291 100644
--- a/net/core/dst.c
+++ b/net/core/dst.c
@@ -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);
}