mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-01-11 05:17:59 +03:00
48e32b429d
The copyright headers in every file were chjanged in this previous commit
commit b6dcee8eb7
Author: Cole Robinson <crobinso@redhat.com>
Date: Tue Mar 20 15:00:02 2018 -0400
Use consistent and minimal license header for every file
Where before this they said "
"either version 2 of the License, or (at your option) any later version."
Now they just say
"GNU GPLv2"
This fixes it to say "GNU GPLv2 or later" again.
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
25 lines
776 B
Python
25 lines
776 B
Python
#
|
|
# Copyright 2014 Fujitsu Limited.
|
|
# Chen Hanxiao <chenhanxiao at cn.fujitsu.com>
|
|
#
|
|
# This work is licensed under the GNU GPLv2 or later.
|
|
# See the COPYING file in the top-level directory.
|
|
|
|
from ..xmlbuilder import XMLBuilder, XMLProperty
|
|
|
|
|
|
class DomainMemoryBacking(XMLBuilder):
|
|
"""
|
|
Class for generating <memoryBacking> XML
|
|
"""
|
|
|
|
XML_NAME = "memoryBacking"
|
|
_XML_PROP_ORDER = ["hugepages", "nosharepages", "locked"]
|
|
|
|
hugepages = XMLProperty("./hugepages", is_bool=True)
|
|
page_size = XMLProperty("./hugepages/page/@size")
|
|
page_unit = XMLProperty("./hugepages/page/@unit")
|
|
page_nodeset = XMLProperty("./hugepages/page/@nodeset")
|
|
nosharepages = XMLProperty("./nosharepages", is_bool=True)
|
|
locked = XMLProperty("./locked", is_bool=True)
|