remote/memory: Replace share parameter with ram_flags
authorYang Zhong <yang.zhong@intel.com>
Fri, 9 Jul 2021 05:28:00 +0000 (13:28 +0800)
committerCleber Rosa <crosa@redhat.com>
Tue, 20 Jul 2021 19:34:20 +0000 (15:34 -0400)
Fixes: d5015b801340 ("softmmu/memory: Pass ram_flags to
qemu_ram_alloc_from_fd()")

Signed-off-by: Yang Zhong <yang.zhong@intel.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Pankaj Gupta <pankaj.gupta@ionos.com>
Reviewed-by: Peter Xu <peterx@redhat.com>
Message-Id: <20210709052800.63588-1-yang.zhong@intel.com>
Signed-off-by: Cleber Rosa <crosa@redhat.com>
hw/remote/memory.c

index 472ed2a272e308009a0d07a36db731c604329fd0..6e21ab1a45c9fce081d4ed44c608c1ebaf3d6648 100644 (file)
@@ -46,7 +46,7 @@ void remote_sysmem_reconfig(MPQemuMsg *msg, Error **errp)
         subregion = g_new(MemoryRegion, 1);
         memory_region_init_ram_from_fd(subregion, NULL,
                                        name, sysmem_info->sizes[region],
-                                       true, msg->fds[region],
+                                       RAM_SHARED, msg->fds[region],
                                        sysmem_info->offsets[region],
                                        errp);