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_
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to