mirror of https://gitee.com/openkylin/libvirt.git
qemu: Make sure shmem memory is shared
Even though using /dev/shm/asdf as the backend, we still need to make the mapping shared. The original patch forgot to add that parameter. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1392031 Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
This commit is contained in:
parent
c5492563da
commit
5672a265ce
|
@ -8565,6 +8565,7 @@ qemuBuildShmemBackendMemProps(virDomainShmemDefPtr shmem)
|
|||
virJSONValueObjectCreate(&ret,
|
||||
"s:mem-path", mem_path,
|
||||
"U:size", shmem->size,
|
||||
"b:share", true,
|
||||
NULL);
|
||||
|
||||
VIR_FREE(mem_path);
|
||||
|
|
|
@ -18,13 +18,13 @@ QEMU_AUDIO_DRV=none \
|
|||
-boot c \
|
||||
-usb \
|
||||
-object memory-backend-file,id=shmmem-shmem0,mem-path=/dev/shm/shmem0,\
|
||||
size=4194304 \
|
||||
size=4194304,share=yes \
|
||||
-device ivshmem-plain,id=shmem0,memdev=shmmem-shmem0,bus=pci.0,addr=0x3 \
|
||||
-object memory-backend-file,id=shmmem-shmem1,mem-path=/dev/shm/shmem1,\
|
||||
size=134217728 \
|
||||
size=134217728,share=yes \
|
||||
-device ivshmem-plain,id=shmem1,memdev=shmmem-shmem1,bus=pci.0,addr=0x5 \
|
||||
-object memory-backend-file,id=shmmem-shmem2,mem-path=/dev/shm/shmem2,\
|
||||
size=268435456 \
|
||||
size=268435456,share=yes \
|
||||
-device ivshmem-plain,id=shmem2,memdev=shmmem-shmem2,bus=pci.0,addr=0x4 \
|
||||
-device ivshmem-doorbell,id=shmem3,chardev=charshmem3,ioeventfd=on,bus=pci.0,\
|
||||
addr=0x6 \
|
||||
|
|
Loading…
Reference in New Issue