Also update the message to be more correct. Before this commit if there were tc rules that are not of type flower the log was getting filled quickyl with errors about it and always appeared to the user when dumping flows from user space. This commit moves the error to debug and logs it only once.
Signed-off-by: Roi Dayan <[email protected]> Reviewed-by: Paul Blakey <[email protected]> --- lib/tc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tc.c b/lib/tc.c index c446d8407810..8056aeb73385 100644 --- a/lib/tc.c +++ b/lib/tc.c @@ -959,7 +959,7 @@ parse_netlink_to_tc_flower(struct ofpbuf *reply, struct tc_flower *flower) kind = nl_attr_get_string(ta[TCA_KIND]); if (strcmp(kind, "flower")) { - VLOG_ERR_RL(&error_rl, "failed to parse filter: %s", kind); + VLOG_DBG_ONCE("Unsupported filter: %s", kind); return EPROTO; } -- 2.7.0 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
