From 6a9495485caa838ac07c585551082d99ef85f325 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Tue, 16 Dec 2008 16:29:36 -0800 Subject: [PATCH] Reduce rate limit for short-packet messages even further. These messages appear a lot in a virtualized environment, and they really are not meaningful there. --- lib/flow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/flow.c b/lib/flow.c index 70a9c4b2..5fddf1fe 100644 --- a/lib/flow.c +++ b/lib/flow.c @@ -107,7 +107,7 @@ flow_extract(struct ofpbuf *packet, uint16_t in_port, struct flow *flow) * can end up with runt frames, e.g. frames that only ever passed * through virtual network devices and never touched a physical * Ethernet. */ - static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 60); + static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5); VLOG_DBG_RL(&rl, "packet length %zu less than minimum size %d", b.size, ETH_TOTAL_MIN); } -- 2.30.2