From: Paul Blakey <[email protected]> Notify as not supported. Otherwise the ingress qdisc is being removed and offload rules will be removed.
Signed-off-by: Paul Blakey <[email protected]> Reviewed-by: Roi Dayan <[email protected]> Reviewed-by: Simon Horman <[email protected]> --- lib/netdev-linux.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/netdev-linux.c b/lib/netdev-linux.c index 44dfac5..ce0a153 100644 --- a/lib/netdev-linux.c +++ b/lib/netdev-linux.c @@ -2087,6 +2087,14 @@ netdev_linux_set_policing(struct netdev *netdev_, int ifindex; int error; + if (netdev_is_flow_api_enabled()) { + if (kbits_rate) { + VLOG_WARN_RL(&rl, "%s: policing with offload isn't supported", + netdev_name); + } + return EOPNOTSUPP; + } + kbits_burst = (!kbits_rate ? 0 /* Force to 0 if no rate specified. */ : !kbits_burst ? 8000 /* Default to 8000 kbits if 0. */ : kbits_burst); /* Stick with user-specified value. */ -- 2.7.4 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
