diff options
author | Donald Sharp <sharpd@nvidia.com> | 2020-09-23 19:06:08 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2020-09-23 19:13:03 +0200 |
commit | c19808acad0fa0f60ee2ada922258d98d17944bc (patch) | |
tree | 94ae8d41bbff31e8fc290167c7cb944331425734 | |
parent | zebra: Ensure that message received from mlag will fit (diff) | |
download | frr-c19808acad0fa0f60ee2ada922258d98d17944bc.tar.xz frr-c19808acad0fa0f60ee2ada922258d98d17944bc.zip |
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 <sharpd@nvidia.com>
-rw-r--r-- | zebra/zebra_mlag.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_mlag.h b/zebra/zebra_mlag.h index d10a1f915..85028d277 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, |