Module Name:    src
Committed By:   pooka
Date:           Wed Sep 16 13:30:41 UTC 2009

Modified Files:
        src/sys/rump/librump/rumpnet: rump_net.c

Log Message:
create interfaces only after ifnef is initialized


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/rump/librump/rumpnet/rump_net.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/rump/librump/rumpnet/rump_net.c
diff -u src/sys/rump/librump/rumpnet/rump_net.c:1.8 src/sys/rump/librump/rumpnet/rump_net.c:1.9
--- src/sys/rump/librump/rumpnet/rump_net.c:1.8	Thu May 28 00:02:16 2009
+++ src/sys/rump/librump/rumpnet/rump_net.c	Wed Sep 16 13:30:41 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: rump_net.c,v 1.8 2009/05/28 00:02:16 pooka Exp $	*/
+/*	$NetBSD: rump_net.c,v 1.9 2009/09/16 13:30:41 pooka Exp $	*/
 
 /*
  * Copyright (c) 2008 Antti Kantee.  All Rights Reserved.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump_net.c,v 1.8 2009/05/28 00:02:16 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_net.c,v 1.9 2009/09/16 13:30:41 pooka Exp $");
 
 #include <sys/param.h>
 
@@ -61,10 +61,11 @@
 	rump_net_inet_init();
 	rump_net_local_init();
 	rump_net_sockin_init();
-	rump_net_virtif_init();
-	/* Note: should be last due to calling of rn_init() */
+	/* Note: should be last _domain_ due to calling of rn_init() */
 	rump_net_net_init();
 
+	rump_net_virtif_init();
+
 	soinit();
 	soinit2();
 

Reply via email to