virtio-mem: Fix the iterator variable in a vmem->rdl_list loop
authorChenyi Qiang <chenyi.qiang@intel.com>
Wed, 28 Dec 2022 09:03:12 +0000 (17:03 +0800)
committerDavid Hildenbrand <david@redhat.com>
Wed, 28 Dec 2022 13:59:55 +0000 (14:59 +0100)
It should be the variable rdl2 to revert the already-notified listeners.

Fixes: 2044969f0b ("virtio-mem: Implement RamDiscardManager interface")
Signed-off-by: Chenyi Qiang <chenyi.qiang@intel.com>
Message-Id: <20221228090312.17276-1-chenyi.qiang@intel.com>
Cc: qemu-stable@nongnu.org
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: David Hildenbrand <david@redhat.com>
hw/virtio/virtio-mem.c

index 5c22c4b87613f60a0fc52970947dc6c80795a7cd..2b0271442bd61f0b2363fc27cf86b37f3445b2b2 100644 (file)
@@ -341,7 +341,7 @@ static int virtio_mem_notify_plug(VirtIOMEM *vmem, uint64_t offset,
     if (ret) {
         /* Notify all already-notified listeners. */
         QLIST_FOREACH(rdl2, &vmem->rdl_list, next) {
-            MemoryRegionSection tmp = *rdl->section;
+            MemoryRegionSection tmp = *rdl2->section;
 
             if (rdl2 == rdl) {
                 break;