From: anuradhak Date: Mon, 5 Dec 2016 16:27:06 +0000 (-0800) Subject: pimd: increase the maximum msdp TLV burst to 100 from 12 X-Git-Tag: frr-3.0-branchpoint~64^2~10^2~36 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=833331fbce9f4cf4e427c77f3460d261778b7557;p=matthieu%2Ffrr.git 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 --- 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;