svn commit: r264976 - head/sys/netinet6

Alexander V. Chernikov melifaro at FreeBSD.org
Sat Apr 26 16:46:34 UTC 2014


Author: melifaro
Date: Sat Apr 26 16:46:33 2014
New Revision: 264976
URL: http://svnweb.freebsd.org/changeset/base/264976

Log:
  Use "hash" value in rtalloc_mpath_fib() instead of RTF_ANNOUNCE flag.
  Hashing method is the same as in in6_src.c. (Probably we need better one).
  
  MFC after:	2 weeks

Modified:
  head/sys/netinet6/nd6_nbr.c

Modified: head/sys/netinet6/nd6_nbr.c
==============================================================================
--- head/sys/netinet6/nd6_nbr.c	Sat Apr 26 16:34:22 2014	(r264975)
+++ head/sys/netinet6/nd6_nbr.c	Sat Apr 26 16:46:33 2014	(r264976)
@@ -242,7 +242,7 @@ nd6_ns_input(struct mbuf *m, int off, in
 
 		/* Always use the default FIB. */
 #ifdef RADIX_MPATH
-		rtalloc_mpath_fib((struct route *)&ro, RTF_ANNOUNCE,
+		rtalloc_mpath_fib((struct route *)&ro, ntohl(taddr6.s6_addr32[3]),
 		    RT_DEFAULT_FIB);
 #else
 		in6_rtalloc(&ro, RT_DEFAULT_FIB);


More information about the svn-src-all mailing list