From 51c030f8398c63e59ae02f311c5519d0687e01ce Mon Sep 17 00:00:00 2001 From: Fabian Freyer Date: Wed, 9 May 2018 03:01:37 +0200 Subject: [PATCH] bhyve: document support for wiring guest memory Signed-off-by: Fabian Freyer Reviewed-by: Roman Bogorodskiy --- docs/drvbhyve.html.in | 14 ++++++++++++++ docs/news.xml | 10 ++++++++++ 2 files changed, 24 insertions(+) diff --git a/docs/drvbhyve.html.in b/docs/drvbhyve.html.in index bde8298a52..5b5513d3df 100644 --- a/docs/drvbhyve.html.in +++ b/docs/drvbhyve.html.in @@ -430,6 +430,20 @@ supports Intel e1000 network adapter emulation. It's supported in libvirt <model type='e1000'/> </interface> ... + + +

Wiring guest memory

+ +

Since 4.4.0, it's possible to specify that guest memory should +be wired and cannot be swapped out as follows:

+
+<domain type="bhyve">
+    ...
+    <memoryBacking>
+      <locked/>
+    </memoryBacking>
+    ...
+</domain>
 
diff --git a/docs/news.xml b/docs/news.xml index 80181415c6..512251946b 100644 --- a/docs/news.xml +++ b/docs/news.xml @@ -35,6 +35,16 @@
+ + + bhyve: Support locking guest memory + + + Bhyve's guest memory may be wired using the + <memoryBacking><locked/></memoryBacking> + element. + +