From: Laurent Vivier <lvivier@redhat.com>
To: David Gibson <david@gibson.dropbear.id.au>,
Alexander Graf <agraf@suse.de>
Cc: qemu-ppc@nongnu.org, qemu-devel@nongnu.org,
Laurent Vivier <lvivier@redhat.com>
Subject: [Qemu-devel] [PATCH] ppc64: fix compressed dump with pseries kernel
Date: Wed, 3 Aug 2016 21:55:07 +0200 [thread overview]
Message-ID: <1470254107-14842-1-git-send-email-lvivier@redhat.com> (raw)
If we don't provide the page size in target-ppc:cpu_get_dump_info(),
the default one (TARGET_PAGE_SIZE, 4KB) is used to create
the compressed dump. It works fine with Macintosh, but not with
pseries as the kernel default page size is 64KB.
Without this patch, if we generate a compressed dump in the QEMU monitor:
(qemu) dump-guest-memory -z qemu.dump
This dump cannot be read by crash:
# crash vmlinux qemu.dump
...
WARNING: cannot translate vmemmap kernel virtual addresses:
commands requiring page structure contents will fail
...
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
---
target-ppc/arch_dump.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/target-ppc/arch_dump.c b/target-ppc/arch_dump.c
index df1fd8c..ad37a59 100644
--- a/target-ppc/arch_dump.c
+++ b/target-ppc/arch_dump.c
@@ -220,6 +220,11 @@ int cpu_get_dump_info(ArchDumpInfo *info,
} else {
info->d_endian = ELFDATA2LSB;
}
+ /* 64KB is the page size default for pseries kernel */
+ if (strncmp(object_get_typename(qdev_get_machine()),
+ "pseries-", 8) == 0) {
+ info->page_size = (1U << 16);
+ }
return 0;
}
--
2.5.5
next reply other threads:[~2016-08-03 19:55 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-03 19:55 Laurent Vivier [this message]
2016-08-04 2:38 ` [Qemu-devel] [PATCH] ppc64: fix compressed dump with pseries kernel David Gibson
2016-08-04 8:41 ` Laurent Vivier
2016-08-05 7:49 ` David Gibson
2016-08-05 8:03 ` Laurent Vivier
2016-08-05 8:14 ` Thomas Huth
2016-08-05 9:26 ` Andrew Jones
2016-08-05 9:46 ` Laurent Vivier
2016-08-05 12:44 ` Andrew Jones
2016-08-05 10:56 ` David Gibson
2016-08-05 9:30 ` Andrew Jones
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=1470254107-14842-1-git-send-email-lvivier@redhat.com \
--to=lvivier@redhat.com \
--cc=agraf@suse.de \
--cc=david@gibson.dropbear.id.au \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@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).