From: Han Zhou Date: Fri, 26 Feb 2016 07:35:35 +0000 (-0800) Subject: ovn-northd: Remove info log in extract_lport_addresses(). X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fovs.git;a=commitdiff_plain;h=98c23f638e706fb8d26091910e04d05992a416b2 ovn-northd: Remove info log in extract_lport_addresses(). When a lport is with address "unknown", the function will complain and print misleading logs. There is no need to print the log. Signed-off-by: Han Zhou Acked-by: Numan Siddique Signed-off-by: Russell Bryant --- diff --git a/ovn/northd/ovn-northd.c b/ovn/northd/ovn-northd.c index b2b1a45cc..63f3fcd28 100644 --- a/ovn/northd/ovn-northd.c +++ b/ovn/northd/ovn-northd.c @@ -963,9 +963,6 @@ extract_lport_addresses(char *address, struct lport_addresses *laddrs, char *buf_end = buf + strlen(address); if (!ovs_scan_len(buf, &buf_index, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(laddrs->ea))) { - static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1); - VLOG_INFO_RL(&rl, "invalid syntax '%s' in address. No MAC address" - " found", address); return false; }