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: 高鹏 <gpstrive@gmail.com>
[updated to apply after FPM patches]
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
diff --git a/zebra/rt_netlink.h b/zebra/rt_netlink.h
index 529fa51..452b397 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);