[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 12/17] migration-local: override hook_ram_load
From: |
Lei Li |
Subject: |
[Qemu-devel] [PATCH 12/17] migration-local: override hook_ram_load |
Date: |
Mon, 2 Dec 2013 17:19:12 +0800 |
Override hook_ram_load to receive the pipe file descriptor
passed by source process and page address which will be
extracted to vmsplice the page data from pipe.
Signed-off-by: Lei Li <address@hidden>
---
migration-local.c | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 59 insertions(+), 0 deletions(-)
diff --git a/migration-local.c b/migration-local.c
index 5f98a01..ce4c070 100644
--- a/migration-local.c
+++ b/migration-local.c
@@ -231,10 +231,69 @@ static size_t qemu_local_save_ram(QEMUFile *f, void
*opaque,
return RAM_SAVE_CONTROL_NOT_SUPP;
}
+static int qemu_local_ram_load(QEMUFile *f, void *opaque,
+ ram_addr_t addr, uint64_t flags)
+{
+ QEMUFileLocal *s = opaque;
+ struct iovec iov;
+ ssize_t ret = -EINVAL;
+
+ if (!s->pipefd_received) {
+ /*
+ * send_pipefd was called at this point, and it wrote one
+ * byte to the stream.
+ */
+ qemu_get_byte(s->file);
+ s->pipefd_received = true;
+ }
+
+ if (s->pipefd_passed) {
+ void *host;
+ /*
+ * Extract the page address from the 8-byte record and
+ * read the page data from the pipe.
+ */
+ host = qemu_get_ram_ptr(addr);
+
+ iov.iov_base = host;
+ iov.iov_len = TARGET_PAGE_SIZE;
+
+ /*
+ * The flag SPLICE_F_MOVE is introduced in kernel for the page
+ * flipping feature in QEMU, which will move pages rather than
+ * copying, previously unused.
+ *
+ * If a move is not possible the kernel will transparently fall
+ * back to copying data.
+ *
+ * For older kernels the SPLICE_F_MOVE would be ignored and a copy
+ * would occur.
+ */
+
+ ret = vmsplice(s->pipefd[0], &iov, 1, SPLICE_F_MOVE);
+ if (ret == -1) {
+ if (errno != EAGAIN && errno != EINTR) {
+ fprintf(stderr, "vmsplice() load error: %s", strerror(errno));
+ return ret;
+ }
+ DPRINTF("vmsplice load error\n");
+ } else if (ret == 0) {
+ DPRINTF(stderr, "load_page: zero read\n");
+ }
+
+ DPRINTF("vmsplice (read): %zu\n", ret);
+ return ret;
+ }
+
+ return -EINVAL;
+}
+
+
static const QEMUFileOps pipe_read_ops = {
.get_fd = qemu_local_get_sockfd,
.get_buffer = qemu_local_get_buffer,
.close = qemu_local_close,
+ .hook_ram_load = qemu_local_ram_load
};
static const QEMUFileOps pipe_write_ops = {
--
1.7.7.6
- Re: [Qemu-devel] [PATCH 06/17] migration-local: add send_pipefd(), (continued)
[Qemu-devel] [PATCH 07/17] save_page: replace block_offset with a MemoryRegion, Lei Li, 2013/12/02
[Qemu-devel] [PATCH 08/17] migration-local: override save_page for page transmit, Lei Li, 2013/12/02
[Qemu-devel] [PATCH 09/17] savevm: adjust ram_control_save_page for page flipping, Lei Li, 2013/12/02
[Qemu-devel] [PATCH 10/17] add unix_msgfd_lookup() to callback get_buffer, Lei Li, 2013/12/02
[Qemu-devel] [PATCH 11/17] add argument ram_addr_t to hook_ram_load, Lei Li, 2013/12/02
[Qemu-devel] [PATCH 12/17] migration-local: override hook_ram_load,
Lei Li <=
[Qemu-devel] [PATCH 13/17] migration-unix: replace qemu_fopen_socket with qemu_fopen_socket_local, Lei Li, 2013/12/02
[Qemu-devel] [PATCH 14/17] add new RunState RUN_STATE_MEMORY_STALE, Lei Li, 2013/12/02
[Qemu-devel] [PATCH 15/17] migration-unix: page flipping support on unix outgoing, Lei Li, 2013/12/02
[Qemu-devel] [PATCH 16/17] migration: adjust migration_thread() process for page flipping, Lei Li, 2013/12/02
[Qemu-devel] [PATCH 17/17] hmp: better format for info migrate_capabilities, Lei Li, 2013/12/02
Re: [Qemu-devel] [PATCH 0/17 v5] Localhost migration with side channel for ram, Paolo Bonzini, 2013/12/03