diff options
author | Guoshuai Li <ligs@dtdream.com> | 2018-01-24 20:39:09 +0800 |
---|---|---|
committer | Ben Pfaff <blp@ovn.org> | 2018-01-24 12:28:21 -0800 |
commit | 66d89287269ca7e2f7593af0920e910d7f9bcc38 (patch) | |
tree | 5825159c75f54c92c96ec221f76f9c4da1dba333 /ovn/utilities | |
parent | ad35c0c58ed8108b6bf1e2caf96d0d0142f47d69 (diff) | |
download | openvswitch-66d89287269ca7e2f7593af0920e910d7f9bcc38.tar.gz |
ovn: OVN Support QoS meter
This feature is used to limit the bandwidth of flows, such as floating IP.
ovn-northd changes:
1. add bandwidth column in NB's QOS table.
2. add QOS_METER stages in Logical switch ingress/egress.
3. add set_meter() action in SB's LFlow table.
ovn-controller changes:
add meter_table for meter action process openflow meter table.
Now, This feature is only supported in DPDK.
Signed-off-by: Guoshuai Li <ligs@dtdream.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'ovn/utilities')
-rw-r--r-- | ovn/utilities/ovn-trace.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ovn/utilities/ovn-trace.c b/ovn/utilities/ovn-trace.c index 7ff4a2682..06d4ddf8e 100644 --- a/ovn/utilities/ovn-trace.c +++ b/ovn/utilities/ovn-trace.c @@ -1888,6 +1888,10 @@ trace_actions(const struct ovnact *ovnacts, size_t ovnacts_len, case OVNACT_LOG: execute_log(ovnact_get_LOG(a), uflow, super); break; + + case OVNACT_SET_METER: + /* Nothing to do. */ + break; } } |