]> git.baikalelectronics.ru Git - kernel.git/commit
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)
commit15f5054663094cb66f62081f8ffa1fb2f714aeaf
treef1404a06ffc6ce0f2bfc8a24e12a1faa7bc0db57
parent357d0ca589e8ecd2a68e593c8308ab070ab48fd3
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