[Bug 211717] net/bird: Does not set up routing
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Sun Aug 14 05:44:55 UTC 2016
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211717
Alexander V. Chernikov <melifaro at FreeBSD.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |melifaro at FreeBSD.org
--- Comment #4 from Alexander V. Chernikov <melifaro at 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) == 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)
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the freebsd-ports-bugs
mailing list