On Thu, Jan 20, 2022 at 10:52:17 -0300, Daniel Henrique Barboza wrote: > Signed-off-by: Daniel Henrique Barboza <danielhb413@xxxxxxxxx> > --- > docs/schemas/domaincommon.rng | 2 ++ > src/conf/domain_conf.c | 1 + > src/conf/domain_conf.h | 1 + > src/qemu/qemu_validate.c | 2 ++ > 4 files changed, 6 insertions(+) > > diff --git a/docs/schemas/domaincommon.rng b/docs/schemas/domaincommon.rng > index 9e2797ec58..7cfc22bc72 100644 > --- a/docs/schemas/domaincommon.rng > +++ b/docs/schemas/domaincommon.rng > @@ -2596,6 +2596,8 @@ > <value>pci-bridge</value> > <!-- implementations of "dmi-to-pci-bridge" --> > <value>i82801b11-bridge</value> > + <!-- implementations of "pcie-root" --> > + <value>pnv-phb3</value> > <!-- implementations of "pcie-to-pci-bridge" --> > <value>pcie-pci-bridge</value> > <!-- implementations of "pcie-root-port" --> > diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c > index c540b740df..9e405c1f52 100644 > --- a/src/conf/domain_conf.c > +++ b/src/conf/domain_conf.c > @@ -438,6 +438,7 @@ VIR_ENUM_IMPL(virDomainControllerPCIModelName, > "spapr-pci-host-bridge", > "pcie-pci-bridge", > "pnv-phb3-root-port", > + "pnv-phb3", Missing docs as with the previous one.