Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/netinet6 inet6: simplify NA DaD checking



details:   https://anonhg.NetBSD.org/src/rev/3ea3d9c6b63c
branches:  trunk
changeset: 446427:3ea3d9c6b63c
user:      roy <roy%NetBSD.org@localhost>
date:      Tue Dec 04 20:46:56 2018 +0000

description:
inet6: simplify NA DaD checking

diffstat:

 sys/netinet6/nd6_nbr.c |  23 ++++++++---------------
 1 files changed, 8 insertions(+), 15 deletions(-)

diffs (45 lines):

diff -r 73c10c2de324 -r 3ea3d9c6b63c sys/netinet6/nd6_nbr.c
--- a/sys/netinet6/nd6_nbr.c    Tue Dec 04 19:54:02 2018 +0000
+++ b/sys/netinet6/nd6_nbr.c    Tue Dec 04 20:46:56 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: nd6_nbr.c,v 1.158 2018/12/04 12:23:43 roy Exp $        */
+/*     $NetBSD: nd6_nbr.c,v 1.159 2018/12/04 20:46:56 roy Exp $        */
 /*     $KAME: nd6_nbr.c,v 1.61 2001/02/10 16:06:14 jinmei Exp $        */
 
 /*
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: nd6_nbr.c,v 1.158 2018/12/04 12:23:43 roy Exp $");
+__KERNEL_RCSID(0, "$NetBSD: nd6_nbr.c,v 1.159 2018/12/04 20:46:56 roy Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_inet.h"
@@ -661,20 +661,13 @@
         *
         * Otherwise, process as defined in RFC 2461.
         */
-       if (ifa &&
-           (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_TENTATIVE))
-       {
-               nd6_dad_na_input(ifa);
-               ifa_release(ifa, &psref_ia);
-               ifa = NULL;
-               goto freeit;
-       }
-
-       /* Just for safety, maybe unnecessary. */
        if (ifa) {
-               log(LOG_ERR,
-                   "nd6_na_input: duplicate IP6 address %s\n",
-                   IN6_PRINT(ip6buf, &taddr6));
+               if (((struct in6_ifaddr *)ifa)->ia6_flags & IN6_IFF_TENTATIVE)
+                       nd6_dad_na_input(ifa);
+               else
+                       log(LOG_ERR,
+                           "nd6_na_input: duplicate IP6 address %s\n",
+                           IN6_PRINT(ip6buf, &taddr6));
                ifa_release(ifa, &psref_ia);
                ifa = NULL;
                goto freeit;



Home | Main Index | Thread Index | Old Index