svn commit: r199261 - stable/8/sys/netinet6

Hajimu UMEMOTO ume at FreeBSD.org
Sat Nov 14 04:46:25 UTC 2009


Author: ume
Date: Sat Nov 14 04:46:24 2009
New Revision: 199261
URL: http://svn.freebsd.org/changeset/base/199261

Log:
  MFC r199173: CURVNET_RESTORE() was not called in certain cases.

Modified:
  stable/8/sys/netinet6/nd6.c
Directory Properties:
  stable/8/sys/netinet6/   (props changed)

Modified: stable/8/sys/netinet6/nd6.c
==============================================================================
--- stable/8/sys/netinet6/nd6.c	Fri Nov 13 22:57:20 2009	(r199260)
+++ stable/8/sys/netinet6/nd6.c	Sat Nov 14 04:46:24 2009	(r199261)
@@ -577,10 +577,10 @@ nd6_llinfo_timer(void *arg)
 		}
 		break;
 	}
-	CURVNET_RESTORE();
 done:
 	if (ln != NULL)
 		LLE_FREE(ln);
+	CURVNET_RESTORE();
 }
 
 


More information about the svn-src-stable-8 mailing list