From: Juan Quintela <quintela@redhat.com>
To: qemu-devel@nongnu.org
Cc: David Gibson <david@gibson.dropbear.id.au>
Subject: [Qemu-devel] [PATCH 2/2] migration: Fix madvise breakage if host and guest have different page sizes
Date: Tue, 11 Dec 2012 13:34:49 +0100 [thread overview]
Message-ID: <1355229289-27574-3-git-send-email-quintela@redhat.com> (raw)
In-Reply-To: <1355229289-27574-1-git-send-email-quintela@redhat.com>
From: David Gibson <david@gibson.dropbear.id.au>
madvise(DONTNEED) will throw away the contents of the whole page at the
given address, even if the given length is less than the page size. One
can argue about whether that's the correct behaviour, but that's what it's
done for a long time in Linux at least.
That means that the madvise() in ram_load(), on a setup where
TARGET_PAGE_SIZE is smaller than the host page size, can throw away data
in guest pages adjacent to the one it's actually processing right now,
leading to guest memory corruption on an incoming migration.
This patch therefore, disables the madvise() if the host page size is
larger than TARGET_PAGE_SIZE. This means we don't get the benefits of that
madvise() in this case, but a more complete fix is more difficult to
accomplish. This at least fixes the guest memory corruption.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Reported-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Signed-off-by: Juan Quintela <quintela@redhat.com>
---
arch_init.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/arch_init.c b/arch_init.c
index b75a4c5..83dcc53 100644
--- a/arch_init.c
+++ b/arch_init.c
@@ -840,7 +840,8 @@ static int ram_load(QEMUFile *f, void *opaque, int version_id)
memset(host, ch, TARGET_PAGE_SIZE);
#ifndef _WIN32
if (ch == 0 &&
- (!kvm_enabled() || kvm_has_sync_mmu())) {
+ (!kvm_enabled() || kvm_has_sync_mmu()) &&
+ getpagesize() <= TARGET_PAGE_SIZE) {
qemu_madvise(host, TARGET_PAGE_SIZE, QEMU_MADV_DONTNEED);
}
#endif
--
1.7.11.7
next prev parent reply other threads:[~2012-12-11 12:35 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-11 12:34 [Qemu-devel] [PULL 0/2] migration queue Juan Quintela
2012-12-11 12:34 ` [Qemu-devel] [PATCH 1/2] Fix off-by-1 error in RAM migration code Juan Quintela
2012-12-11 12:34 ` Juan Quintela [this message]
2013-01-03 0:19 ` [Qemu-devel] [PULL 0/2] migration queue Anthony Liguori
2013-01-03 0:22 ` Anthony Liguori
-- strict thread matches above, loose matches on Subject: below --
2012-12-04 0:38 [Qemu-devel] [0/2] Migration bugfixes that were forgotten for 1.3 David Gibson
2012-12-04 0:38 ` [Qemu-devel] [PATCH 2/2] migration: Fix madvise breakage if host and guest have different page sizes David Gibson
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=1355229289-27574-3-git-send-email-quintela@redhat.com \
--to=quintela@redhat.com \
--cc=david@gibson.dropbear.id.au \
--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).