svn commit: r287861 - in head/sys: net netinet6 netpfil/pf ofed/drivers/infiniband/ulp/ipoib

2015-09-16 Thread Alexander V. Chernikov
Author: melifaro Date: Wed Sep 16 14:26:28 2015 New Revision: 287861 URL: https://svnweb.freebsd.org/changeset/base/287861 Log: Simplify the way of attaching IPv6 link-layer header. Problem description: How do we currently perform layer 2 resolution and header imposition: For IPv4

Re: svn commit: r287861 - in head/sys: net netinet6 netpfil/pf ofed/drivers/infiniband/ulp/ipoib

2015-09-16 Thread Gleb Smirnoff
Hi! The main disaster is still in its place in nd6_output_ifp(), as it was before in nd6_output():: error = (*ifp->if_output)(origifp, m, (struct sockaddr *)dst, NULL); ^^^ ^^^ :( On Wed, Sep 16, 2015 at 02:26:29PM +, Alexander V. Chernikov