From 845e80d60617fd1026165bf85d3ac512524d8253 Mon Sep 17 00:00:00 2001 From: Nobuhiro MIKI Date: Fri, 20 Jan 2023 18:17:26 +0900 Subject: [PATCH] Add new 'COMPUTE_ADDRESS_SPACE_*' traits These traits indicate the pass-through or emulated mode of the guest physical address bits. blueprint: libvirt-maxphysaddr-support Signed-off-by: Nobuhiro MIKI Change-Id: Id3716ea9d8581b3c41604f35ed83fa41a3ce0554 --- os_traits/compute/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/os_traits/compute/__init__.py b/os_traits/compute/__init__.py index c535a8c..15f40c5 100644 --- a/os_traits/compute/__init__.py +++ b/os_traits/compute/__init__.py @@ -44,4 +44,8 @@ TRAITS = [ # Nova use this to indicate that an RP has inventories of PCI device(s) # managed by the nova-compute service 'MANAGED_PCI_DEVICE', + # The virt driver supports pass-through or emulated modes for guest + # physical address bits. + 'ADDRESS_SPACE_PASSTHROUGH', + 'ADDRESS_SPACE_EMULATED', ]