summaryrefslogtreecommitdiffstats
path: root/sys/dev/firewire/firewire.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/firewire/firewire.c')
-rw-r--r--sys/dev/firewire/firewire.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/firewire/firewire.c b/sys/dev/firewire/firewire.c
index c2484ae..aff0418 100644
--- a/sys/dev/firewire/firewire.c
+++ b/sys/dev/firewire/firewire.c
@@ -39,13 +39,13 @@
#include <sys/systm.h>
#include <sys/types.h>
+#include <sys/jail.h>
#include <sys/kernel.h>
#include <sys/module.h>
#include <sys/malloc.h>
#include <sys/conf.h>
#include <sys/sysctl.h>
#include <sys/kthread.h>
-#include <sys/vimage.h>
#include <sys/kdb.h>
@@ -723,7 +723,9 @@ fw_reset_crom(struct firewire_comm *fc)
crom_add_simple_text(src, root, &buf->vendor, "FreeBSD Project");
crom_add_entry(root, CSRKEY_HW, __FreeBSD_version);
#endif
- crom_add_simple_text(src, root, &buf->hw, G_hostname);
+ mtx_lock(&prison0.pr_mtx);
+ crom_add_simple_text(src, root, &buf->hw, prison0.pr_host);
+ mtx_unlock(&prison0.pr_mtx);
}
/*
OpenPOWER on IntegriCloud