From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60731) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X37VJ-0007kp-Bh for qemu-devel@nongnu.org; Fri, 04 Jul 2014 13:42:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X37VD-0008Jb-6t for qemu-devel@nongnu.org; Fri, 04 Jul 2014 13:42:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:9863) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X37VC-0008JW-UD for qemu-devel@nongnu.org; Fri, 04 Jul 2014 13:42:27 -0400 From: "Dr. David Alan Gilbert (git)" Date: Fri, 4 Jul 2014 18:41:25 +0100 Message-Id: <1404495717-4239-15-git-send-email-dgilbert@redhat.com> In-Reply-To: <1404495717-4239-1-git-send-email-dgilbert@redhat.com> References: <1404495717-4239-1-git-send-email-dgilbert@redhat.com> Subject: [Qemu-devel] [PATCH 14/46] ram_debug_dump_bitmap: Dump a migration bitmap as text List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aarcange@redhat.com, yamahata@private.email.ne.jp, lilei@linux.vnet.ibm.com, quintela@redhat.com From: "Dr. David Alan Gilbert" Misses out lines that are all 0 so can be quite compact depending on the circumstance. Signed-off-by: Dr. David Alan Gilbert --- arch_init.c | 39 +++++++++++++++++++++++++++++++++++++++ include/migration/migration.h | 1 + 2 files changed, 40 insertions(+) diff --git a/arch_init.c b/arch_init.c index eb6455a..a3c468e 100644 --- a/arch_init.c +++ b/arch_init.c @@ -767,6 +767,45 @@ static void reset_ram_globals(void) #define MAX_WAIT 50 /* ms, half buffered_file limit */ +/* + * 'expected' is the value you expect the bitmap mostly to be full + * of and it won't bother printing lines that are all this value + * if 'todump' is null the migration bitmap is dumped. + */ +void ram_debug_dump_bitmap(unsigned long *todump, bool expected) +{ + int64_t ram_pages = last_ram_offset() >> TARGET_PAGE_BITS; + + int64_t cur; + int64_t linelen = 128l; + char linebuf[129]; + + if (!todump) { + todump = migration_bitmap; + } + + for (cur = 0; cur < ram_pages; cur += linelen) { + int64_t curb; + bool found = false; + /* + * Last line; catch the case where the line length + * is longer than remaining ram + */ + if (cur+linelen > ram_pages) { + linelen = ram_pages - cur; + } + for (curb = 0; curb < linelen; curb++) { + bool thisbit = test_bit(cur+curb, todump); + linebuf[curb] = thisbit ? '1' : '.'; + found |= (thisbit ^ expected); + } + if (found) { + linebuf[curb] = '\0'; + fprintf(stderr, "0x%08lx : %s\n", cur, linebuf); + } + } +} + static int ram_save_setup(QEMUFile *f, void *opaque) { RAMBlock *block; diff --git a/include/migration/migration.h b/include/migration/migration.h index f722f06..a1ed7a3 100644 --- a/include/migration/migration.h +++ b/include/migration/migration.h @@ -155,6 +155,7 @@ uint64_t xbzrle_mig_pages_cache_miss(void); double xbzrle_mig_cache_miss_rate(void); void ram_handle_compressed(void *host, uint8_t ch, uint64_t size); +void ram_debug_dump_bitmap(unsigned long *todump, bool expected); /** * @migrate_add_blocker - prevent migration from proceeding -- 1.9.3