Date: Sun, 14 Aug 2016 05:44:53 +0000 From: bugzilla-noreply@freebsd.org To: freebsd-ports-bugs@FreeBSD.org Subject: [Bug 211717] net/bird: Does not set up routing Message-ID: <bug-211717-13-ODwTaYO7HS@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-211717-13@https.bugs.freebsd.org/bugzilla/> References: <bug-211717-13@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D211717 Alexander V. Chernikov <melifaro@FreeBSD.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |melifaro@FreeBSD.org --- Comment #4 from Alexander V. Chernikov <melifaro@FreeBSD.org> --- This looks a bit weird. I'm unable to reproduce this. Could you share more details about your system (svn version, architecture),= how bird is actually build? Also, according to the NEXTADDR macro change: if I read the code correctly, you embedded slightly different variant of ROUNDUP() macro inside: // stock #define ROUNDUP(a) \ ((a) > 0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) : sizeof(long)) // embedded #define ROUNDUP(a) \ (((a) =3D=3D 0) ? sizeof(long) : 1 + (((a) - 1) | (sizeof(long) - 1= ))) which looks very close to original. What is the reason in decreasing per-addr buffer size ? (sockaddr_storage -= > sockaddr) --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-211717-13-ODwTaYO7HS>