From: 高鹏 Date: Wed, 21 Nov 2012 10:15:43 +0000 (+0800) Subject: zebra: fix netlink NL_PKT_BUF_SIZE X-Git-Tag: frr-2.0-rc1~1720 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=913ff66ba30093d2fdc26af215f4bc0b3d359d75;p=matthieu%2Ffrr.git zebra: fix netlink NL_PKT_BUF_SIZE Change default value of variable NL_PKT_BUF_SIZE to 8192UL. Cf. NLMSG_GOODSIZE definition of linux in include/linux/netlink.h for detail. Previously, on platforms with a page size greater than 8192, if you had added too many interfaces, zebra would not have enough buffer space to get the entire interface list. This resulted in an incomplete interface list. From: 高鹏 [updated to apply after FPM patches] Signed-off-by: David Lamparter --- diff --git a/zebra/rt_netlink.h b/zebra/rt_netlink.h index 529fa517a9..452b3974ea 100644 --- a/zebra/rt_netlink.h +++ b/zebra/rt_netlink.h @@ -24,7 +24,7 @@ #ifdef HAVE_NETLINK -#define NL_PKT_BUF_SIZE 4096 +#define NL_PKT_BUF_SIZE 8192 extern int addattr32 (struct nlmsghdr *n, int maxlen, int type, int data);