Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Jul 2009 22:17:34 +0000 (UTC)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r195927 - head/sys/net
Message-ID:  <200907282217.n6SMHYm7045034@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rwatson
Date: Tue Jul 28 22:17:34 2009
New Revision: 195927
URL: http://svn.freebsd.org/changeset/base/195927

Log:
  Revise header comments for vnet.h as we now implement VNET_SYSINIT, not
  just VNET_DEFINE in vnet.h.
  
  Approved by:	re (vimage blanket)

Modified:
  head/sys/net/vnet.h

Modified: head/sys/net/vnet.h
==============================================================================
--- head/sys/net/vnet.h	Tue Jul 28 21:52:24 2009	(r195926)
+++ head/sys/net/vnet.h	Tue Jul 28 22:17:34 2009	(r195927)
@@ -28,10 +28,14 @@
  */
 
 /*
- * This is the virtual network stack memory allocator, which provides support
- * for virtualized global variables via a special linker set, set_vnet.  When
- * "options VIMAGE" isn't defined, virtualized global variables are compiled
- * as normal globals.
+ * This header file defines two sets of interfaces supporting virtualized
+ * network stacks: a virtual network stack memory allocator, which provides
+ * support for virtualized global variables via a special linker set,
+ * set_vnet, and virtualized sysinits/sysuninits, which allow constructors
+ * and destructors to be run for each network stack subsystem as virtual
+ * instances are created and destroyed.  If VIMAGE isn't compiled into the
+ * kernel, virtualized global variables compile to normal global variables,
+ * and virtualized sysinits to regular sysinits.
  */
 
 #ifndef _NET_VNET_H_



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