Commits
45697fe5 and
f863ac80 used direct access to the variable instead
of the preferred accessor method.
vm->def->vcpus = d_info.vcpu_online;
vm->def->maxvcpus = d_info.vcpu_max_id + 1;
vm->def->mem.cur_balloon = d_info.current_memkb;
- vm->def->mem.max_balloon = d_info.max_memkb;
+ virDomainDefSetMemoryInitial(vm->def, d_info.max_memkb);
ret = 0;
if (!(dom = vzDomObjFromDomain(domain)))
return -1;
- ret = dom->def->mem.max_balloon;
+ ret = virDomainDefGetMemoryActual(dom->def);
virObjectUnlock(dom);
return ret;
}