summaryrefslogtreecommitdiffstats
path: root/pimd/pim_msdp_packet.c
diff options
context:
space:
mode:
authoranuradhak <anuradhak@cumulusnetworks.com>2016-12-05 17:27:06 +0100
committerDonald Sharp <sharpd@cumulusnetworks.com>2016-12-22 02:26:18 +0100
commit833331fbce9f4cf4e427c77f3460d261778b7557 (patch)
tree28030d50a9419c3d791a1ce75717ebb49af83581 /pimd/pim_msdp_packet.c
parentzebra: LastUsed needs to be updated properly. (diff)
downloadfrr-833331fbce9f4cf4e427c77f3460d261778b7557.tar.xz
frr-833331fbce9f4cf4e427c77f3460d261778b7557.zip
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 <anuradhak@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_msdp_packet.c')
-rw-r--r--pimd/pim_msdp_packet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pim_msdp_packet.c b/pimd/pim_msdp_packet.c
index 62d057975..fbf34cd91 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;