From bef007617e73d1fe7557a51765d37ee0e4b00e8d Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 14 May 2018 14:33:50 +0100 Subject: [PATCH] libxl: Provide better error message when qemu restrict user not found MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Add mention of LIBXL_QEMU_USER_RANGE_BASE, in case that is what the user was intending. Cc: Anthony Perard Signed-off-by: Ian Jackson Acked-by: Wei Liu Reviewed-by: Roger Pau Monné --- tools/libxl/libxl_dm.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c index bad3ef5b67..bd187463ec 100644 --- a/tools/libxl/libxl_dm.c +++ b/tools/libxl/libxl_dm.c @@ -1702,8 +1702,9 @@ static int libxl__build_device_model_args_new(libxl__gc *gc, } LOGD(ERROR, guest_domid, - "Could not find user %s%d or %s, cannot restrict", - LIBXL_QEMU_USER_BASE, guest_domid, LIBXL_QEMU_USER_SHARED); + "Could not find user %s%d or %s or range base pseudo-user %s, cannot restrict", + LIBXL_QEMU_USER_BASE, guest_domid, LIBXL_QEMU_USER_SHARED, + LIBXL_QEMU_USER_RANGE_BASE); return ERROR_INVAL; end_search: -- 2.30.2