Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Apr 2009 13:28:50 GMT
From:      Marko Zec <zec@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 161248 for review
Message-ID:  <200904281328.n3SDSo1H081442@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=161248

Change 161248 by zec@zec_amdx2 on 2009/04/28 13:28:28

	VIMAGE kernel now boots multiuser...

Affected files ...

.. //depot/projects/vimage-commit2/src/sys/kern/uipc_socket.c#16 edit
.. //depot/projects/vimage-commit2/src/sys/netinet/tcp_hostcache.c#19 edit

Differences ...

==== //depot/projects/vimage-commit2/src/sys/kern/uipc_socket.c#16 (text+ko) ====

@@ -286,8 +286,8 @@
 	so->so_gencnt = ++so_gencnt;
 	++numopensockets;
 #ifdef VIMAGE
-	++vnet->sockcnt;
-	so->so_vnet = curvnet;
+	++vnet->sockcnt;	/* locked with so_global_mtx */
+	so->so_vnet = vnet;
 #endif
 	mtx_unlock(&so_global_mtx);
 	return (so);

==== //depot/projects/vimage-commit2/src/sys/netinet/tcp_hostcache.c#19 (text+ko) ====

@@ -227,7 +227,7 @@
 	 */
 	callout_init(&V_tcp_hc_callout, CALLOUT_MPSAFE);
 	callout_reset(&V_tcp_hc_callout, V_tcp_hostcache.prune * hz,
-	    tcp_hc_purge, 0);
+	    tcp_hc_purge, curvnet);
 }
 
 /*
@@ -636,7 +636,7 @@
 {
 	INIT_VNET_INET(curvnet);
 	struct hc_metrics *hc_entry, *hc_next;
-	int all = (intptr_t)arg;
+	int all = 0;	/* XXX was: (intptr_t)arg - makes no sense? */
 	int i;
 
 	if (V_tcp_hostcache.purgeall) {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200904281328.n3SDSo1H081442>