summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/ddb/db_sym.c6
-rw-r--r--sys/net/vnet.c9
-rw-r--r--sys/net/vnet.h9
3 files changed, 9 insertions, 15 deletions
diff --git a/sys/ddb/db_sym.c b/sys/ddb/db_sym.c
index 99209a8..04af1eb 100644
--- a/sys/ddb/db_sym.c
+++ b/sys/ddb/db_sym.c
@@ -64,12 +64,6 @@ static boolean_t db_line_at_pc(c_db_sym_t, char **, int *, db_expr_t);
static int db_cpu = -1;
#ifdef VIMAGE
-extern uintptr_t *__start_set_vnet;
-extern uintptr_t *__stop_set_vnet;
-
-#define VNET_START (uintptr_t)&__start_set_vnet
-#define VNET_STOP (uintptr_t)&__stop_set_vnet
-
static void *db_vnet = NULL;
#endif
diff --git a/sys/net/vnet.c b/sys/net/vnet.c
index 1dac03a..8013f5e 100644
--- a/sys/net/vnet.c
+++ b/sys/net/vnet.c
@@ -154,15 +154,6 @@ struct vnet *vnet0;
*/
/*
- * Location of the kernel's 'set_vnet' linker set.
- */
-extern uintptr_t *__start_set_vnet;
-extern uintptr_t *__stop_set_vnet;
-
-#define VNET_START (uintptr_t)&__start_set_vnet
-#define VNET_STOP (uintptr_t)&__stop_set_vnet
-
-/*
* Number of bytes of data in the 'set_vnet' linker set, and hence the total
* size of all kernel virtualized global variables, and the malloc(9) type
* that will be used to allocate it.
diff --git a/sys/net/vnet.h b/sys/net/vnet.h
index fb2cc39..4cdfdef 100644
--- a/sys/net/vnet.h
+++ b/sys/net/vnet.h
@@ -92,6 +92,15 @@ struct vnet {
#include <sys/sx.h>
/*
+ * Location of the kernel's 'set_vnet' linker set.
+ */
+extern uintptr_t *__start_set_vnet;
+extern uintptr_t *__stop_set_vnet;
+
+#define VNET_START (uintptr_t)&__start_set_vnet
+#define VNET_STOP (uintptr_t)&__stop_set_vnet
+
+/*
* Functions to allocate and destroy virtual network stacks.
*/
struct vnet *vnet_alloc(void);
OpenPOWER on IntegriCloud