Libvirt measures vram in Kbytes, not in bytes, so calculation
of Mbytes was incorrect. PCS server can take vram argument
with units, so I added K postfix to make params a little bit clearer.
}
if (old->vram != new->vram) {
- if (new->vram % (1 << 20) != 0) {
+ if (new->vram % (1 << 10) != 0) {
virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s",
_("Video RAM size should be multiple of 1Mb."));
return -1;
}
- snprintf(str_vram, 31, "%d", new->vram >> 20);
+ snprintf(str_vram, 31, "%dK", new->vram);
str_vram[31] = '\0';
if (parallelsCmdRun(PRLCTL, "set", pdom->uuid,