summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ldomd/ldomd.c
diff options
context:
space:
mode:
authorkn <kn@openbsd.org>2019-11-28 18:40:42 +0000
committerkn <kn@openbsd.org>2019-11-28 18:40:42 +0000
commitd73a4c4fb3962df1e72dd6910861075eabc6a1c3 (patch)
tree570d98c592ad83e8a094b47d028a1aa0f966fd0d /usr.sbin/ldomd/ldomd.c
parentimprove on previous to only use the required CRLs. (diff)
downloadwireguard-openbsd-d73a4c4fb3962df1e72dd6910861075eabc6a1c3.tar.xz
wireguard-openbsd-d73a4c4fb3962df1e72dd6910861075eabc6a1c3.zip
Use scan_scaled(3) for memory in ldom.conf
Replace the hand-written routing with a proper library allowing even more formats. Since ldomctl's local util.h conflicts with the now used global util.h from libutil, rename it to ldom_util.h. Manual wording from amd64's vm.conf(5). OK kettenis
Diffstat (limited to 'usr.sbin/ldomd/ldomd.c')
-rw-r--r--usr.sbin/ldomd/ldomd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ldomd/ldomd.c b/usr.sbin/ldomd/ldomd.c
index db5e6bf5fbd..50f41c1631b 100644
--- a/usr.sbin/ldomd/ldomd.c
+++ b/usr.sbin/ldomd/ldomd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ldomd.c,v 1.9 2019/09/29 17:10:00 deraadt Exp $ */
+/* $OpenBSD: ldomd.c,v 1.10 2019/11/28 18:40:42 kn Exp $ */
/*
* Copyright (c) 2012 Mark Kettenis
@@ -34,7 +34,7 @@
#include "ds.h"
#include "hvctl.h"
#include "mdesc.h"
-#include "util.h"
+#include "ldom_util.h"
#include "ldomd.h"
TAILQ_HEAD(guest_head, guest) guests;