Module Name: src
Committed By: ozaki-r
Date: Fri Dec 18 09:04:33 UTC 2015
Modified Files:
src/sys/netinet6: nd6.c
Log Message:
Add missing LLE_WUNLOCK to nd6_free
To generate a diff of this commit:
cvs rdiff -u -r1.182 -r1.183 src/sys/netinet6/nd6.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/netinet6/nd6.c
diff -u src/sys/netinet6/nd6.c:1.182 src/sys/netinet6/nd6.c:1.183
--- src/sys/netinet6/nd6.c:1.182 Mon Dec 7 06:19:13 2015
+++ src/sys/netinet6/nd6.c Fri Dec 18 09:04:33 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: nd6.c,v 1.182 2015/12/07 06:19:13 ozaki-r Exp $ */
+/* $NetBSD: nd6.c,v 1.183 2015/12/18 09:04:33 ozaki-r 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.182 2015/12/07 06:19:13 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: nd6.c,v 1.183 2015/12/18 09:04:33 ozaki-r Exp $");
#ifdef _KERNEL_OPT
#include "opt_net_mpsafe.h"
@@ -1138,6 +1138,7 @@ nd6_free(struct rtentry *rt, struct llen
nd6_llinfo_settimer_locked(ln,
nd6_gctimer * hz);
splx(s);
+ LLE_WUNLOCK(ln);
return;
}