Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 10 Apr 2009 21:12:18 GMT
From:      Marko Zec <zec@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 160463 for review
Message-ID:  <200904102112.n3ALCIIr001778@repoman.freebsd.org>

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

Change 160463 by zec@zec_tpx32 on 2009/04/10 21:11:52

	Note that VNET_MOD_NET must be 0, because if a vnet module
	does not explicitly specify a dependency by filling in the
	vmi_dependson field of its vnet_modinfo structure, it will
	implicitly depend on module with ID of 0 -> VNET_MOD_NET.

Affected files ...

.. //depot/projects/vimage-commit2/src/sys/sys/vimage.h#36 edit

Differences ...

==== //depot/projects/vimage-commit2/src/sys/sys/vimage.h#36 (text+ko) ====

@@ -78,7 +78,7 @@
 #define	VNET_SYMMAP_END		{ NULL, 0 }
 
 /* stateful modules */
-#define	VNET_MOD_NET		 0
+#define	VNET_MOD_NET		 0	/* MUST be 0 - implicit dependency */
 #define	VNET_MOD_NETGRAPH	 1
 #define	VNET_MOD_INET		 2
 #define	VNET_MOD_INET6		 3



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