bhyve: fix typos checking CPU dies

This fixes a build bug introduced by

  commit fbf27730a3
  Author: Daniel P. Berrangé <berrange@redhat.com>
  Date:   Mon Dec 16 11:16:51 2019 +0000

    conf: add support for specifying CPU "dies" parameter

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
Daniel P. Berrangé 2020-01-17 12:31:16 +00:00
parent 2775aada16
commit 1c18375cda

View File

@ -453,10 +453,10 @@ virBhyveProcessBuildBhyveCmd(virConnectPtr conn,
/* CPUs */ /* CPUs */
virCommandAddArg(cmd, "-c"); virCommandAddArg(cmd, "-c");
if (def->cpu && def->cpu->sockets) { if (def->cpu && def->cpu->sockets) {
if (def->dies != 1) { if (def->cpu->dies != 1) {
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s", virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
_("Only 1 die per socket is supported")); _("Only 1 die per socket is supported"));
goto cleanup; goto error;
} }
if (nvcpus != def->cpu->sockets * def->cpu->cores * def->cpu->threads) { if (nvcpus != def->cpu->sockets * def->cpu->cores * def->cpu->threads) {
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s", virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",