]> git.baikalelectronics.ru Git - kernel.git/commit
net: openvswitch: Set OvS recirc_id from tc chain index
authorPaul Blakey <paulb@mellanox.com>
Wed, 4 Sep 2019 13:56:37 +0000 (16:56 +0300)
committerDavid S. Miller <davem@davemloft.net>
Fri, 6 Sep 2019 12:59:18 +0000 (14:59 +0200)
commitf821382a5512d430295bb53d1065de92af0c9b6e
tree5bb8386f508373060f22f1975039cd87cea2beb2
parentbd7067d55681db7dc32ffffd858003502d2f56cf
net: openvswitch: Set OvS recirc_id from tc chain index

Offloaded OvS datapath rules are translated one to one to tc rules,
for example the following simplified OvS rule:

recirc_id(0),in_port(dev1),eth_type(0x0800),ct_state(-trk) actions:ct(),recirc(2)

Will be translated to the following tc rule:

$ tc filter add dev dev1 ingress \
    prio 1 chain 0 proto ip \
flower tcp ct_state -trk \
action ct pipe \
action goto chain 2

Received packets will first travel though tc, and if they aren't stolen
by it, like in the above rule, they will continue to OvS datapath.
Since we already did some actions (action ct in this case) which might
modify the packets, and updated action stats, we would like to continue
the proccessing with the correct recirc_id in OvS (here recirc_id(2))
where we left off.

To support this, introduce a new skb extension for tc, which
will be used for translating tc chain to ovs recirc_id to
handle these miss cases. Last tc chain index will be set
by tc goto chain action and read by OvS datapath.

Signed-off-by: Paul Blakey <paulb@mellanox.com>
Signed-off-by: Vlad Buslov <vladbu@mellanox.com>
Acked-by: Jiri Pirko <jiri@mellanox.com>
Acked-by: Pravin B Shelar <pshelar@ovn.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/skbuff.h
include/uapi/linux/openvswitch.h
net/core/skbuff.c
net/openvswitch/datapath.c
net/openvswitch/datapath.h
net/openvswitch/flow.c
net/sched/Kconfig
net/sched/cls_api.c