From: John Ferlan Date: Mon, 15 Aug 2016 13:45:28 +0000 (-0400) Subject: conf: Provide error on undefined iothreadsched entry X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=8c6b29e7b41d678ab9c5542efd607b28776e4f24;p=libvirt.git conf: Provide error on undefined iothreadsched entry When commit id '6dfb4507' refactored where the iothreadsched data was stored, the error message for when the virDomainIOThreadIDFind failed to find an iothreadid ("iothreadsched attribute 'iothreads' uses undefined iothread ids") was lost. This led to the possibility that someone would try to use it, but receive the generic message "An error occurred, but the cause is unknown". This patch adds the error message back so that someone will know that they have an invalid configuration. Signed-off-by: John Ferlan --- diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c index 82876f3a1e..90373040a8 100644 --- a/src/conf/domain_conf.c +++ b/src/conf/domain_conf.c @@ -15490,8 +15490,12 @@ virDomainDefGetIOThreadSched(virDomainDefPtr def, { virDomainIOThreadIDDefPtr iothrinfo; - if (!(iothrinfo = virDomainIOThreadIDFind(def, iothread))) + if (!(iothrinfo = virDomainIOThreadIDFind(def, iothread))) { + virReportError(VIR_ERR_CONFIG_UNSUPPORTED, + _("Cannot find 'iothread' : %u"), + iothread); return NULL; + } return &iothrinfo->sched; }