mirror of https://gitee.com/openkylin/libvirt.git
bhyve: document support for wiring guest memory
Signed-off-by: Fabian Freyer <fabian.freyer@physik.tu-berlin.de> Reviewed-by: Roman Bogorodskiy <bogorodskiy@gmail.com>
This commit is contained in:
parent
cb434b442a
commit
51c030f839
|
@ -430,6 +430,20 @@ supports Intel e1000 network adapter emulation. It's supported in libvirt
|
|||
<model type='<b>e1000</b>'/>
|
||||
</interface>
|
||||
...
|
||||
</pre>
|
||||
|
||||
<h3><a id="wired">Wiring guest memory</a></h3>
|
||||
|
||||
<p><span class="since">Since 4.4.0</span>, it's possible to specify that guest memory should
|
||||
be wired and cannot be swapped out as follows:</p>
|
||||
<pre>
|
||||
<domain type="bhyve">
|
||||
...
|
||||
<memoryBacking>
|
||||
<locked/>
|
||||
</memoryBacking>
|
||||
...
|
||||
</domain>
|
||||
</pre>
|
||||
|
||||
</body>
|
||||
|
|
|
@ -35,6 +35,16 @@
|
|||
<libvirt>
|
||||
<release version="v4.4.0" date="unreleased">
|
||||
<section title="New features">
|
||||
<change>
|
||||
<summary>
|
||||
bhyve: Support locking guest memory
|
||||
</summary>
|
||||
<description>
|
||||
Bhyve's guest memory may be wired using the
|
||||
<code><memoryBacking><locked/></memoryBacking></code>
|
||||
element.
|
||||
</description>
|
||||
</change>
|
||||
</section>
|
||||
<section title="Improvements">
|
||||
</section>
|
||||
|
|
Loading…
Reference in New Issue