On Mon, Dec 14, 2020 at 05:36:15PM +0100, Manuel Bouyer wrote: > --- > tools/libs/light/libxl_netbsd.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tools/libs/light/libxl_netbsd.c b/tools/libs/light/libxl_netbsd.c > index e66a393d7f..31334f932c 100644 > --- a/tools/libs/light/libxl_netbsd.c > +++ b/tools/libs/light/libxl_netbsd.c > @@ -110,7 +110,7 @@ out: > > libxl_device_model_version libxl__default_device_model(libxl__gc *gc) > { > - return LIBXL_DEVICE_MODEL_VERSION_QEMU_XEN_TRADITIONAL; > + return LIBXL_DEVICE_MODEL_VERSION_QEMU_XEN; > }
All libxl supported OSes will now be using upstream QEMU as default, maybe it's best to just move libxl__default_device_model into libxl_dm.c instead of having 3 equal copies in OS specific files. Thanks, Roger.