mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-13 17:18:01 +03:00
Parallels: fix error with video card RAM dimension
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.
This commit is contained in:
parent
75210ef0a3
commit
268b4c84e0
@ -1628,13 +1628,13 @@ parallelsApplyVideoParams(parallelsDomObjPtr pdom,
|
||||
}
|
||||
|
||||
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,
|
||||
|
Loading…
Reference in New Issue
Block a user