]> git.proxmox.com Git - mirror_ovs.git/commit
dpctl: Properly reflect a rule's offloaded to HW state
authorGavi Teitz <gavi@mellanox.com>
Thu, 7 Jun 2018 06:36:59 +0000 (09:36 +0300)
committerSimon Horman <simon.horman@netronome.com>
Mon, 18 Jun 2018 07:57:37 +0000 (09:57 +0200)
commitd63ca5329ff97ed47660a8085f5ed2015c409802
tree2538057312cd69e7aadc2c83924b5cbeceee93f5
parent21aade70f3e0af30696569a30fc6a16115219a08
dpctl: Properly reflect a rule's offloaded to HW state

Previously, any rule that is offloaded via a netdev, not necessarily
to the HW, would be reported as "offloaded". This patch fixes this
misalignment, and introduces the 'dp' state, as follows:

rule is in HW via TC offload  -> offloaded=yes dp:tc
rule is in not HW over TC DP  -> offloaded=no  dp:tc
rule is in not HW over OVS DP -> offloaded=no  dp:ovs

To achieve this, the flows's 'offloaded' flag was encapsulated in a new
attrs struct, which contains the offloaded state of the flow and the
DP layer the flow is handled in, and instead of setting the flow's
'offloaded' state based solely on the type of dump it was acquired
via, for netdev flows it now sends the new attrs struct to be
collected along with the rest of the flow via the netdev, allowing
it to be set per flow.

For TC offloads, the offloaded state is set based on the 'in_hw' and
'not_in_hw' flags received from the TC as part of the flower. If no
such flag was received, due to lack of kernel support, it defaults
to true.

Signed-off-by: Gavi Teitz <gavi@mellanox.com>
Acked-by: Roi Dayan <roid@mellanox.com>
[simon: resolved conflict in lib/dpctl.man]
Signed-off-by: Simon Horman <simon.horman@netronome.com>
12 files changed:
lib/dpctl.c
lib/dpctl.man
lib/dpif-netlink.c
lib/dpif.h
lib/flow.h
lib/netdev-provider.h
lib/netdev-tc-offloads.c
lib/netdev-tc-offloads.h
lib/netdev.c
lib/netdev.h
lib/tc.c
lib/tc.h