From: Ian Campbell Date: Fri, 10 Dec 2010 18:30:45 +0000 (+0000) Subject: libxl: "Device model is a stubdom" is not an error X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=1e48dfc63c0e21b6aab3d72846a4f17c45004027;p=xen.git libxl: "Device model is a stubdom" is not an error Signed-off-by: Ian Campbell Acked-by: Ian Jackson Signed-off-by: Ian Jackson --- diff --git a/tools/libxl/libxl.c b/tools/libxl/libxl.c index 33e5a2a95d..7f27dac261 100644 --- a/tools/libxl/libxl.c +++ b/tools/libxl/libxl.c @@ -910,7 +910,7 @@ static int libxl_destroy_device_model(libxl_ctx *ctx, uint32_t domid) ret = ERROR_INVAL; goto out; } - LIBXL__LOG(ctx, LIBXL__LOG_ERROR, "Device model is a stubdom, domid=%d\n", stubdomid); + LIBXL__LOG(ctx, LIBXL__LOG_DEBUG, "Device model is a stubdom, domid=%d\n", stubdomid); ret = libxl_domain_destroy(ctx, stubdomid, 0); if (ret) goto out;