Skip to content

Commit

Permalink
virtio-mem: Fix the iterator variable in a vmem->rdl_list loop
Browse files Browse the repository at this point in the history
It should be the variable rdl2 to revert the already-notified listeners.

Fixes: 2044969 ("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>
(cherry picked from commit 29f1b32)
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
  • Loading branch information
Qiangcy authored and Michael Tokarev committed Mar 29, 2023
1 parent 5f43c77 commit a2093dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hw/virtio/virtio-mem.c
Expand Up @@ -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;
Expand Down

0 comments on commit a2093dd

Please sign in to comment.