On 13/05/2020 16.23, Mohammed Gamal wrote: > Some QEMU versions don't support setting phys-bits argument directly. > This causes breakage to Travis CI. Work around the bug by setting > host-phys-bits=on > > Fixes: 1a296ac170f ("x86: access: Add tests for reserved bits of guest physical address") > > Reported-by: Thomas Huth <thuth@xxxxxxxxxx> > Signed-off-by: Mohammed Gamal <mgamal@xxxxxxxxxx> > --- > x86/unittests.cfg | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/x86/unittests.cfg b/x86/unittests.cfg > index bf0d02e..d43cac2 100644 > --- a/x86/unittests.cfg > +++ b/x86/unittests.cfg > @@ -116,7 +116,7 @@ extra_params = -cpu qemu64,+x2apic,+tsc-deadline -append tscdeadline_immed > [access] > file = access.flat > arch = x86_64 > -extra_params = -cpu host,phys-bits=36 > +extra_params = -cpu host,host-phys-bits=on,phys-bits=36 > > [smap] > file = smap.flat > Tested-by: Thomas Huth <thuth@xxxxxxxxxx>