there's been reported panics with this :(
-a On 7 January 2016 at 17:16, Gleb Smirnoff <[email protected]> wrote: > Author: glebius > Date: Fri Jan 8 01:16:03 2016 > New Revision: 293405 > URL: https://svnweb.freebsd.org/changeset/base/293405 > > Log: > For SOCK_STREAM socket use sbappendstream() instead of sbappend(). > > Modified: > head/sys/kern/uipc_usrreq.c > > Modified: head/sys/kern/uipc_usrreq.c > ============================================================================== > --- head/sys/kern/uipc_usrreq.c Fri Jan 8 01:12:27 2016 (r293404) > +++ head/sys/kern/uipc_usrreq.c Fri Jan 8 01:16:03 2016 (r293405) > @@ -981,7 +981,7 @@ uipc_send(struct socket *so, int flags, > control)) > control = NULL; > } else > - sbappend_locked(&so2->so_rcv, m); > + sbappendstream_locked(&so2->so_rcv, m, flags); > break; > > case SOCK_SEQPACKET: { > _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "[email protected]"
