Source-Changes-HG archive

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

[src/netbsd-9]: src/sys/netinet6 Pull up following revision(s) (requested by ...



details:   https://anonhg.NetBSD.org/src/rev/0a1ac378b12d
branches:  netbsd-9
changeset: 458224:0a1ac378b12d
user:      martin <martin%NetBSD.org@localhost>
date:      Mon Aug 19 16:08:19 2019 +0000

description:
Pull up following revision(s) (requested by ozaki-r in ticket #97):

        sys/netinet6/nd6.c: revision 1.257

Add missing IFNET_LOCK for regen_tmpaddr
Reported by ryo@

diffstat:

 sys/netinet6/nd6.c |  10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diffs (32 lines):

diff -r 20d7837b4ba9 -r 0a1ac378b12d sys/netinet6/nd6.c
--- a/sys/netinet6/nd6.c        Mon Aug 19 16:01:52 2019 +0000
+++ b/sys/netinet6/nd6.c        Mon Aug 19 16:08:19 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: nd6.c,v 1.256 2019/07/26 10:18:42 christos Exp $       */
+/*     $NetBSD: nd6.c,v 1.256.2.1 2019/08/19 16:08:19 martin Exp $     */
 /*     $KAME: nd6.c,v 1.279 2002/06/08 11:16:51 itojun Exp $   */
 
 /*
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: nd6.c,v 1.256 2019/07/26 10:18:42 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: nd6.c,v 1.256.2.1 2019/08/19 16:08:19 martin Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_net_mpsafe.h"
@@ -666,8 +666,12 @@
                        if (ip6_use_tempaddr &&
                            (ia6->ia6_flags & IN6_IFF_TEMPORARY) != 0 &&
                            (oldflags & IN6_IFF_DEPRECATED) == 0) {
+                               int ret;
 
-                               if (regen_tmpaddr(ia6) == 0) {
+                               IFNET_LOCK(ia6->ia_ifa.ifa_ifp);
+                               ret = regen_tmpaddr(ia6);
+                               IFNET_UNLOCK(ia6->ia_ifa.ifa_ifp);
+                               if (ret == 0) {
                                        /*
                                         * A new temporary address is
                                         * generated.



Home | Main Index | Thread Index | Old Index