From: Ian Jackson Date: Mon, 9 Sep 2019 17:12:04 +0000 (+0100) Subject: tools/ocaml: Add missing X86_EMU_VPCI X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~1623 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=774ebe2ad76a80031fb9402254ae7065af908e57;p=xen.git tools/ocaml: Add missing X86_EMU_VPCI This was missing from x86_arch_emulation_flags. Signed-off-by: Ian Jackson Acked-by: Andrew Cooper --- diff --git a/tools/ocaml/libs/xc/xenctrl.ml b/tools/ocaml/libs/xc/xenctrl.ml index 35958b94d5..305625cb6c 100644 --- a/tools/ocaml/libs/xc/xenctrl.ml +++ b/tools/ocaml/libs/xc/xenctrl.ml @@ -46,6 +46,7 @@ type x86_arch_emulation_flags = | X86_EMU_IOMMU | X86_EMU_PIT | X86_EMU_USE_PIRQ + | X86_EMU_VPCI type xen_x86_arch_domainconfig = { diff --git a/tools/ocaml/libs/xc/xenctrl.mli b/tools/ocaml/libs/xc/xenctrl.mli index 6c4268d453..da93160ed3 100644 --- a/tools/ocaml/libs/xc/xenctrl.mli +++ b/tools/ocaml/libs/xc/xenctrl.mli @@ -40,6 +40,7 @@ type x86_arch_emulation_flags = | X86_EMU_IOMMU | X86_EMU_PIT | X86_EMU_USE_PIRQ + | X86_EMU_VPCI type xen_x86_arch_domainconfig = { emulation_flags: x86_arch_emulation_flags list;