From c19808acad0fa0f60ee2ada922258d98d17944bc Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Wed, 23 Sep 2020 13:06:08 -0400 Subject: [PATCH] zebra: Increase the read/write mlag buffer sizes The read/write mlag buffer sizes of 2k were sufficient for ~100 S,G notifications at one go. Increase to 32k to give us 16 times the space. Ticket: CM-31576 Signed-off-by: Donald Sharp --- zebra/zebra_mlag.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebra/zebra_mlag.h b/zebra/zebra_mlag.h index d10a1f9157..85028d2774 100644 --- a/zebra/zebra_mlag.h +++ b/zebra/zebra_mlag.h @@ -30,7 +30,7 @@ extern "C" { #endif -#define ZEBRA_MLAG_BUF_LIMIT 2048 +#define ZEBRA_MLAG_BUF_LIMIT 32768 #define ZEBRA_MLAG_LEN_SIZE 4 DECLARE_HOOK(zebra_mlag_private_write_data, -- 2.39.5