We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c56dc7 commit 20af2a1Copy full SHA for 20af2a1
modules/virt-machine/xslt/hugepages.xsl
@@ -0,0 +1,18 @@
1
+<?xml version="1.0" ?>
2
+<xsl:stylesheet version="1.0"
3
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4
+ <xsl:template match="@* | node()">
5
+ <xsl:copy>
6
+ <xsl:apply-templates select="@* | node()"/>
7
+ </xsl:copy>
8
+ </xsl:template>
9
+
10
+ <xsl:template match="memory">
11
+ <xsl:copy-of select="."/>
12
+ <memoryBacking>
13
+ <hugepages/>
14
+ </memoryBacking>
15
16
17
+</xsl:stylesheet>
18
0 commit comments