mirror of
https://git.freebsd.org/ports.git
synced 2025-06-16 18:20:33 -04:00
When xenstore is not running on the same domain as the toolstack the xenstore device is used in order to access it (like when running some tools from an unprivileged domain). Fix the path to point to the FreeBSD path (/dev/xen/xenstore). This is a backport of upstream commit 7ff99b. Sponsored by: Citrix Systems R&D Approved by: bapt MFH: 2016Q4 --This line, and hose below, will be ignored-- M sysutils/xen-tools/Makefile AM sysutils/xen-tools/files/0001-libs-xenstore-set-correct-FreeBSD-device.patch
32 lines
948 B
Diff
32 lines
948 B
Diff
From 7ff99b232e0f91a5189f429498868bfccf8d7154 Mon Sep 17 00:00:00 2001
|
|
From: Roger Pau Monne <roger.pau@citrix.com>
|
|
Date: Mon, 12 Dec 2016 16:07:40 +0000
|
|
Subject: [PATCH] libs/xenstore: set correct FreeBSD device
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
The path to the xenstore FreeBSD device is /dev/xen/xenstore.
|
|
|
|
Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
|
|
Acked-by: Wei Liu <wei.liu2@citrix.com>
|
|
---
|
|
tools/xenstore/xs_lib.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/tools/xenstore/xs_lib.c b/tools/xenstore/xs_lib.c
|
|
index 5ef3d6d..3e43f88 100644
|
|
--- a/tools/xenstore/xs_lib.c
|
|
+++ b/tools/xenstore/xs_lib.c
|
|
@@ -85,6 +85,8 @@ const char *xs_domain_dev(void)
|
|
return "/proc/xen/xenbus";
|
|
#elif defined(__NetBSD__)
|
|
return "/kern/xen/xenbus";
|
|
+#elif defined(__FreeBSD__)
|
|
+ return "/dev/xen/xenstore";
|
|
#else
|
|
return "/dev/xen/xenbus";
|
|
#endif
|
|
--
|
|
2.10.1 (Apple Git-78)
|
|
|