conf: net: Rename 'model' to 'modelstr'

We will be adding a 'model' enum in upcoming patches. Rename
the existing value to make the differentiation clear

Acked-by: Michal Privoznik <mprivozn@redhat.com>
Signed-off-by: Cole Robinson <crobinso@redhat.com>
This commit is contained in:
Cole Robinson 2019-01-18 16:32:22 -05:00
parent 6bf7c67699
commit aa3c9f34bf
2 changed files with 9 additions and 9 deletions

View File

@ -2325,7 +2325,7 @@ virDomainNetDefClear(virDomainNetDefPtr def)
if (!def)
return;
VIR_FREE(def->model);
VIR_FREE(def->modelstr);
switch (def->type) {
case VIR_DOMAIN_NET_TYPE_VHOSTUSER:
@ -11619,7 +11619,7 @@ virDomainNetDefParseXML(virDomainXMLOptionPtr xmlopt,
_("Model name contains invalid characters"));
goto error;
}
VIR_STEAL_PTR(def->model, model);
VIR_STEAL_PTR(def->modelstr, model);
}
switch (def->type) {
@ -21824,10 +21824,10 @@ virDomainNetDefCheckABIStability(virDomainNetDefPtr src,
return false;
}
if (STRNEQ_NULLABLE(src->model, dst->model)) {
if (STRNEQ_NULLABLE(src->modelstr, dst->modelstr)) {
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
_("Target network card model %s does not match source %s"),
NULLSTR(dst->model), NULLSTR(src->model));
NULLSTR(dst->modelstr), NULLSTR(src->modelstr));
return false;
}
@ -29480,28 +29480,28 @@ virDomainNetGetActualTrustGuestRxFilters(virDomainNetDefPtr iface)
const char *
virDomainNetGetModelString(const virDomainNetDef *net)
{
return net->model;
return net->modelstr;
}
int
virDomainNetSetModelString(virDomainNetDefPtr net,
const char *model)
{
return VIR_STRDUP(net->model, model);
return VIR_STRDUP(net->modelstr, model);
}
int
virDomainNetStreqModelString(const virDomainNetDef *net,
const char *model)
{
return STREQ_NULLABLE(net->model, model);
return STREQ_NULLABLE(net->modelstr, model);
}
int
virDomainNetStrcaseeqModelString(const virDomainNetDef *net,
const char *model)
{
return net->model && STRCASEEQ(net->model, model);
return net->modelstr && STRCASEEQ(net->modelstr, model);
}
bool

View File

@ -898,7 +898,7 @@ struct _virDomainNetDef {
virDomainNetType type;
virMacAddr mac;
bool mac_generated; /* true if mac was *just now* auto-generated by libvirt */
char *model;
char *modelstr;
union {
struct {
virDomainNetBackendType name; /* which driver backend to use */