summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authorgrehan <grehan@FreeBSD.org>2012-12-13 01:58:11 +0000
committergrehan <grehan@FreeBSD.org>2012-12-13 01:58:11 +0000
commit70b50f16469543eddc3a9958b4a973bec1e41f52 (patch)
tree892f0e4ad5c0261c86970ca0dcd23def308e394a /usr.sbin
parent56990e914687fa80fb72b9d4dbbfc174ede6bc6d (diff)
downloadFreeBSD-src-70b50f16469543eddc3a9958b4a973bec1e41f52.zip
FreeBSD-src-70b50f16469543eddc3a9958b4a973bec1e41f52.tar.gz
Rename fbsdrun.* -> bhyverun.*
bhyve is intended to be a generic hypervisor, and not FreeBSD-specific. (renaming internal routines will come later) Reviewed by: neel Obtained from: NetApp
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/bhyve/Makefile2
-rw-r--r--usr.sbin/bhyve/acpi.c2
-rw-r--r--usr.sbin/bhyve/bhyverun.c (renamed from usr.sbin/bhyve/fbsdrun.c)2
-rw-r--r--usr.sbin/bhyve/bhyverun.h (renamed from usr.sbin/bhyve/fbsdrun.h)0
-rw-r--r--usr.sbin/bhyve/ioapic.c2
-rw-r--r--usr.sbin/bhyve/mptbl.c2
-rw-r--r--usr.sbin/bhyve/pci_emul.c2
-rw-r--r--usr.sbin/bhyve/pci_uart.c2
-rw-r--r--usr.sbin/bhyve/pci_virtio_block.c2
-rw-r--r--usr.sbin/bhyve/pci_virtio_net.c2
-rw-r--r--usr.sbin/bhyve/pit_8254.c2
-rw-r--r--usr.sbin/bhyve/spinup_ap.c2
12 files changed, 11 insertions, 11 deletions
diff --git a/usr.sbin/bhyve/Makefile b/usr.sbin/bhyve/Makefile
index c45b904..078ef9a 100644
--- a/usr.sbin/bhyve/Makefile
+++ b/usr.sbin/bhyve/Makefile
@@ -6,7 +6,7 @@ PROG= bhyve
DEBUG_FLAGS= -g -O0
-SRCS= acpi.c atpic.c consport.c dbgport.c elcr.c fbsdrun.c inout.c
+SRCS= acpi.c atpic.c bhyverun.c consport.c dbgport.c elcr.c inout.c
SRCS+= ioapic.c mem.c mevent.c mptbl.c
SRCS+= pci_emul.c pci_hostbridge.c pci_passthru.c pci_virtio_block.c
SRCS+= pci_virtio_net.c pci_uart.c pit_8254.c pmtmr.c post.c rtc.c uart.c
diff --git a/usr.sbin/bhyve/acpi.c b/usr.sbin/bhyve/acpi.c
index 1671550..32effdc 100644
--- a/usr.sbin/bhyve/acpi.c
+++ b/usr.sbin/bhyve/acpi.c
@@ -61,7 +61,7 @@ __FBSDID("$FreeBSD$");
#include <string.h>
#include <unistd.h>
-#include "fbsdrun.h"
+#include "bhyverun.h"
#include "acpi.h"
/*
diff --git a/usr.sbin/bhyve/fbsdrun.c b/usr.sbin/bhyve/bhyverun.c
index 06e043c..fd3d8a2 100644
--- a/usr.sbin/bhyve/fbsdrun.c
+++ b/usr.sbin/bhyve/bhyverun.c
@@ -48,7 +48,7 @@ __FBSDID("$FreeBSD$");
#include <machine/vmm.h>
#include <vmmapi.h>
-#include "fbsdrun.h"
+#include "bhyverun.h"
#include "acpi.h"
#include "inout.h"
#include "dbgport.h"
diff --git a/usr.sbin/bhyve/fbsdrun.h b/usr.sbin/bhyve/bhyverun.h
index 45033b8..45033b8 100644
--- a/usr.sbin/bhyve/fbsdrun.h
+++ b/usr.sbin/bhyve/bhyverun.h
diff --git a/usr.sbin/bhyve/ioapic.c b/usr.sbin/bhyve/ioapic.c
index 47dd833..c712692 100644
--- a/usr.sbin/bhyve/ioapic.c
+++ b/usr.sbin/bhyve/ioapic.c
@@ -42,7 +42,7 @@ __FBSDID("$FreeBSD$");
#include "inout.h"
#include "mem.h"
-#include "fbsdrun.h"
+#include "bhyverun.h"
#include <stdio.h>
diff --git a/usr.sbin/bhyve/mptbl.c b/usr.sbin/bhyve/mptbl.c
index 03aaaee..52790f3 100644
--- a/usr.sbin/bhyve/mptbl.c
+++ b/usr.sbin/bhyve/mptbl.c
@@ -36,7 +36,7 @@ __FBSDID("$FreeBSD$");
#include <stdio.h>
#include <string.h>
-#include "fbsdrun.h"
+#include "bhyverun.h"
#include "mptbl.h"
#define MPTABLE_BASE 0xF0000
diff --git a/usr.sbin/bhyve/pci_emul.c b/usr.sbin/bhyve/pci_emul.c
index 1836bc9..e086aeb 100644
--- a/usr.sbin/bhyve/pci_emul.c
+++ b/usr.sbin/bhyve/pci_emul.c
@@ -42,7 +42,7 @@ __FBSDID("$FreeBSD$");
#include <machine/vmm.h>
#include <vmmapi.h>
-#include "fbsdrun.h"
+#include "bhyverun.h"
#include "inout.h"
#include "mem.h"
#include "mptbl.h"
diff --git a/usr.sbin/bhyve/pci_uart.c b/usr.sbin/bhyve/pci_uart.c
index 51876f5..3f192e1 100644
--- a/usr.sbin/bhyve/pci_uart.c
+++ b/usr.sbin/bhyve/pci_uart.c
@@ -41,7 +41,7 @@ __FBSDID("$FreeBSD$");
#include <stdbool.h>
#include <string.h>
-#include "fbsdrun.h"
+#include "bhyverun.h"
#include "pci_emul.h"
#include "mevent.h"
diff --git a/usr.sbin/bhyve/pci_virtio_block.c b/usr.sbin/bhyve/pci_virtio_block.c
index 8c98615..3382097 100644
--- a/usr.sbin/bhyve/pci_virtio_block.c
+++ b/usr.sbin/bhyve/pci_virtio_block.c
@@ -47,7 +47,7 @@ __FBSDID("$FreeBSD$");
#include <assert.h>
#include <pthread.h>
-#include "fbsdrun.h"
+#include "bhyverun.h"
#include "pci_emul.h"
#include "virtio.h"
diff --git a/usr.sbin/bhyve/pci_virtio_net.c b/usr.sbin/bhyve/pci_virtio_net.c
index 9e7a1c7..3f6f88a 100644
--- a/usr.sbin/bhyve/pci_virtio_net.c
+++ b/usr.sbin/bhyve/pci_virtio_net.c
@@ -47,7 +47,7 @@ __FBSDID("$FreeBSD$");
#include <md5.h>
#include <pthread.h>
-#include "fbsdrun.h"
+#include "bhyverun.h"
#include "pci_emul.h"
#include "mevent.h"
#include "virtio.h"
diff --git a/usr.sbin/bhyve/pit_8254.c b/usr.sbin/bhyve/pit_8254.c
index d9b6d55..c96596a 100644
--- a/usr.sbin/bhyve/pit_8254.c
+++ b/usr.sbin/bhyve/pit_8254.c
@@ -36,7 +36,7 @@ __FBSDID("$FreeBSD$");
#include <stdio.h>
#include <assert.h>
-#include "fbsdrun.h"
+#include "bhyverun.h"
#include "inout.h"
#include "pit_8254.h"
diff --git a/usr.sbin/bhyve/spinup_ap.c b/usr.sbin/bhyve/spinup_ap.c
index 3aa3b65..b5e553f 100644
--- a/usr.sbin/bhyve/spinup_ap.c
+++ b/usr.sbin/bhyve/spinup_ap.c
@@ -39,7 +39,7 @@ __FBSDID("$FreeBSD$");
#include <stdlib.h>
#include <assert.h>
-#include "fbsdrun.h"
+#include "bhyverun.h"
#include "spinup_ap.h"
/*
OpenPOWER on IntegriCloud