From 833331fbce9f4cf4e427c77f3460d261778b7557 Mon Sep 17 00:00:00 2001 From: anuradhak Date: Mon, 5 Dec 2016 08:27:06 -0800 Subject: [PATCH] pimd: increase the maximum msdp TLV burst to 100 from 12 12 is too slow of a slow-start in scale setup (say with 6000 SAs) when sources are being learnt one at a time (but in a rapid fire fashion). Signed-off-by: Anuradha Karuppiah --- pimd/pim_msdp_packet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pimd/pim_msdp_packet.c b/pimd/pim_msdp_packet.c index 62d0579757..fbf34cd91c 100644 --- a/pimd/pim_msdp_packet.c +++ b/pimd/pim_msdp_packet.c @@ -194,7 +194,7 @@ pim_msdp_write(struct thread *thread) enum pim_msdp_tlv type; int len; int work_cnt = 0; - int work_max_cnt = 12; + int work_max_cnt = 100; mp = THREAD_ARG(thread); mp->t_write = NULL; -- 2.39.5