From: Liang Li <liang.z.li@intel.com>
To: qemu-devel@nongnu.org
Cc: Liang Li <liang.z.li@intel.com>,
"Michael S. Tsirkin" <mst@redhat.com>,
Ladi Prosek <lprosek@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>
Subject: [Qemu-devel] [PATCH] balloon: Fix failure of updating guest memory status
Date: Thu, 30 Jun 2016 15:31:43 +0800 [thread overview]
Message-ID: <1467271903-23812-1-git-send-email-liang.z.li@intel.com> (raw)
After live migration, 'guest-stats' can't get the expected memory
status in the guest. This issue is caused by commit 4eae2a657d.
The value of 's->stats_vq_elem' will be NULL after live migration,
and the check in the function 'balloon_stats_poll_cb()' will
prevent the 'virtio_notify()' from executing. So guest will not
update the memory status.
Signed-off-by: Liang Li <liang.z.li@intel.com>
Cc: Michael S. Tsirkin <mst@redhat.com>
Cc: Ladi Prosek <lprosek@redhat.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
---
hw/virtio/virtio-balloon.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/hw/virtio/virtio-balloon.c b/hw/virtio/virtio-balloon.c
index 557d3f9..cc6947f 100644
--- a/hw/virtio/virtio-balloon.c
+++ b/hw/virtio/virtio-balloon.c
@@ -98,13 +98,19 @@ static void balloon_stats_poll_cb(void *opaque)
{
VirtIOBalloon *s = opaque;
VirtIODevice *vdev = VIRTIO_DEVICE(s);
+ VirtQueueElement elem = {0};
- if (s->stats_vq_elem == NULL || !balloon_stats_supported(s)) {
+ if (!balloon_stats_supported(s)) {
/* re-schedule */
balloon_stats_change_timer(s, s->stats_poll_interval);
return;
}
+ if (s->stats_vq_elem == NULL) {
+ virtqueue_push(s->svq, &elem, 0);
+ virtio_notify(vdev, s->svq);
+ return;
+ }
virtqueue_push(s->svq, s->stats_vq_elem, s->stats_vq_offset);
virtio_notify(vdev, s->svq);
g_free(s->stats_vq_elem);
--
1.9.1
next reply other threads:[~2016-06-30 7:39 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-30 7:31 Liang Li [this message]
2016-06-30 8:11 ` [Qemu-devel] [PATCH] balloon: Fix failure of updating guest memory status Ladi Prosek
2016-06-30 8:39 ` Li, Liang Z
2016-06-30 9:09 ` Ladi Prosek
2016-06-30 16:43 ` Li, Liang Z
2016-06-30 14:35 ` Paolo Bonzini
2016-06-30 16:58 ` Li, Liang Z
2016-07-01 8:43 ` Li, Liang Z
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1467271903-23812-1-git-send-email-liang.z.li@intel.com \
--to=liang.z.li@intel.com \
--cc=lprosek@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).