]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commit - net/core/dev.c
dst: Metadata destinations
authorThomas Graf <tgraf@suug.ch>
Tue, 21 Jul 2015 08:43:56 +0000 (10:43 +0200)
committerDavid S. Miller <davem@davemloft.net>
Tue, 21 Jul 2015 17:39:05 +0000 (10:39 -0700)
commitf38a9eb1f77b296ff07e000823884a0f64d67b2a
treef1404a06ffc6ce0f2bfc8a24e12a1faa7bc0db57
parent773a69d64bf65eb6c212c97e9737963a2cf668fd
dst: Metadata destinations

Introduces a new dst_metadata which enables to carry per packet metadata
between forwarding and processing elements via the skb->dst pointer.

The structure is set up to be a union. Thus, each separate type of
metadata requires its own dst instance. If demand arises to carry
multiple types of metadata concurrently, metadata dst entries can be
made stackable.

The metadata dst entry is refcnt'ed as expected for now but a non
reference counted use is possible if the reference is forced before
queueing the skb.

In order to allow allocating dsts with variable length, the existing
dst_alloc() is split into a dst_alloc() and dst_init() function. The
existing dst_init() function to initialize the subsystem is being
renamed to dst_subsys_init() to make it clear what is what.

The check before ip_route_input() is changed to ignore metadata dsts
and drop the dst inside the routing function thus allowing to interpret
metadata in a later commit.

Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/dst.h
include/net/dst_metadata.h [new file with mode: 0644]
net/core/dev.c
net/core/dst.c
net/ipv4/ip_input.c
net/ipv4/route.c