[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v6 06/11] rdma: introduce ram_handle_compressed()
From: |
mrhines |
Subject: |
[Qemu-devel] [PATCH v6 06/11] rdma: introduce ram_handle_compressed() |
Date: |
Wed, 24 Apr 2013 15:00:51 -0400 |
From: "Michael R. Hines" <address@hidden>
This gives RDMA shared access to madvise() on the destination side
when an entire chunk is found to be zero.
Signed-off-by: Michael R. Hines <address@hidden>
---
arch_init.c | 24 ++++++++++++++++--------
include/migration/migration.h | 2 ++
2 files changed, 18 insertions(+), 8 deletions(-)
diff --git a/arch_init.c b/arch_init.c
index 92de1bd..e272852 100644
--- a/arch_init.c
+++ b/arch_init.c
@@ -770,6 +770,21 @@ static inline void *host_from_stream_offset(QEMUFile *f,
return NULL;
}
+/*
+ * If a page (or a whole RDMA chunk) has been
+ * determined to be zero, then zap it.
+ */
+void ram_handle_compressed(void *host, uint8_t ch, uint64_t size)
+{
+ memset(host, ch, TARGET_PAGE_SIZE);
+#ifndef _WIN32
+ if (ch == 0 && (!kvm_enabled() || kvm_has_sync_mmu()) &&
+ getpagesize() <= TARGET_PAGE_SIZE) {
+ qemu_madvise(host, size, QEMU_MADV_DONTNEED);
+ }
+#endif
+}
+
static int ram_load(QEMUFile *f, void *opaque, int version_id)
{
ram_addr_t addr;
@@ -837,14 +852,7 @@ static int ram_load(QEMUFile *f, void *opaque, int
version_id)
}
ch = qemu_get_byte(f);
- memset(host, ch, TARGET_PAGE_SIZE);
-#ifndef _WIN32
- if (ch == 0 &&
- (!kvm_enabled() || kvm_has_sync_mmu()) &&
- getpagesize() <= TARGET_PAGE_SIZE) {
- qemu_madvise(host, TARGET_PAGE_SIZE, QEMU_MADV_DONTNEED);
- }
-#endif
+ ram_handle_compressed(host, ch, TARGET_PAGE_SIZE);
} else if (flags & RAM_SAVE_FLAG_PAGE) {
void *host;
diff --git a/include/migration/migration.h b/include/migration/migration.h
index 6aa15e0..2a5aeef 100644
--- a/include/migration/migration.h
+++ b/include/migration/migration.h
@@ -106,6 +106,8 @@ uint64_t xbzrle_mig_pages_transferred(void);
uint64_t xbzrle_mig_pages_overflow(void);
uint64_t xbzrle_mig_pages_cache_miss(void);
+void ram_handle_compressed(void *host, uint8_t ch, uint64_t size);
+
/**
* @migrate_add_blocker - prevent migration from proceeding
*
--
1.7.10.4
- [Qemu-devel] [PATCH v6 00/11] rdma: migration support, mrhines, 2013/04/24
- [Qemu-devel] [PATCH v6 02/11] rdma: export yield_until_fd_readable(), mrhines, 2013/04/24
- [Qemu-devel] [PATCH v6 04/11] rdma: introduce qemu_file_mode_is_not_valid(), mrhines, 2013/04/24
- [Qemu-devel] [PATCH v6 08/11] rdma: new QEMUFileOps hooks, mrhines, 2013/04/24
- [Qemu-devel] [PATCH v6 03/11] rdma: export throughput w/ MigrationStats QMP, mrhines, 2013/04/24
- [Qemu-devel] [PATCH v6 05/11] rdma: export qemu_fflush(), mrhines, 2013/04/24
- [Qemu-devel] [PATCH v6 09/11] rdma: introduce capability x-rdma-pin-all, mrhines, 2013/04/24
- [Qemu-devel] [PATCH v6 06/11] rdma: introduce ram_handle_compressed(),
mrhines <=
- [Qemu-devel] [PATCH v6 10/11] rdma: core logic, mrhines, 2013/04/24
- [Qemu-devel] [PATCH v6 11/11] rdma: send pc.ram, mrhines, 2013/04/24
- [Qemu-devel] [PATCH v6 01/11] rdma: add documentation, mrhines, 2013/04/24
- [Qemu-devel] [PATCH v6 07/11] rdma: introduce qemu_ram_foreach_block(), mrhines, 2013/04/24
- Re: [Qemu-devel] [PATCH v6 00/11] rdma: migration support, Paolo Bonzini, 2013/04/24