Displaying 1 result from an estimated 1 matches for "udp6_usrreq".
Did you mean:
udp_usrreq
2008 Sep 16
1
recent MFC of soreceive_dgram breaks kernels without INET6 option
...kernel config with:
include GENERIC
nooption INET6
Here's the error during kernel compilation of a kernel config without
"options INET6" in the kernel config:
/usr/src/sys/netinet/udp_usrreq.c: In function 'udp_inpcb_init':
/usr/src/sys/netinet/udp_usrreq.c:170: error: 'udp6_usrreqs'
undeclared (first use in this function)
/usr/src/sys/netinet/udp_usrreq.c:170: error: (Each undeclared
identifier is reported only once
/usr/src/sys/netinet/udp_usrreq.c:170: error: for each function it appears in.)
It looks like the MFC for the new soreceive_dgram stuff is the culprit.
Can...