Blame SOURCES/kvm-util-mmap-alloc-Add-a-is_pmem-parameter-to-qemu_ram_.patch

016a62
From 5e258b59991284cf2e6bfcac04ff2de01dc83005 Mon Sep 17 00:00:00 2001
016a62
From: "plai@redhat.com" <plai@redhat.com>
016a62
Date: Tue, 20 Aug 2019 16:12:48 +0100
016a62
Subject: [PATCH 01/11] util/mmap-alloc: Add a 'is_pmem' parameter to
016a62
 qemu_ram_mmap
016a62
MIME-Version: 1.0
016a62
Content-Type: text/plain; charset=UTF-8
016a62
Content-Transfer-Encoding: 8bit
016a62
016a62
RH-Author: plai@redhat.com
016a62
Message-id: <1566317571-5697-2-git-send-email-plai@redhat.com>
016a62
Patchwork-id: 90084
016a62
O-Subject: [RHEL8.2 qemu-kvm PATCH 1/4] util/mmap-alloc: Add a 'is_pmem' parameter to qemu_ram_mmap
016a62
Bugzilla: 1539282
016a62
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
016a62
RH-Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
016a62
RH-Acked-by: Pankaj Gupta <pagupta@redhat.com>
016a62
RH-Acked-by: Eduardo Habkost <ehabkost@redhat.com>
016a62
016a62
From: Zhang Yi <yi.z.zhang@linux.intel.com>
016a62
016a62
besides the existing 'shared' flags, we are going to add
016a62
'is_pmem' to qemu_ram_mmap(), which indicated the memory backend
016a62
file is a persist memory.
016a62
016a62
Signed-off-by: Haozhong Zhang <haozhong.zhang@intel.com>
016a62
Signed-off-by: Zhang Yi <yi.z.zhang@linux.intel.com>
016a62
Reviewed-by: Pankaj Gupta <pagupta@redhat.com>
016a62
Message-Id: <786c46862cfeb253ee0ea2f44d62ffe76edb7fa4.1549555521.git.yi.z.zhang@linux.intel.com>
016a62
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
016a62
Reviewed-by: Pankaj Gupta <pagupta@redhat.com>
016a62
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
016a62
(cherry picked from commit 2ac0f1621c9be59eebc844fa10361a84fd726185)
016a62
Signed-off-by: Paul Lai <plai@redhat.com>
016a62
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
016a62
---
016a62
 exec.c                    |  2 +-
016a62
 include/qemu/mmap-alloc.h | 21 ++++++++++++++++++++-
016a62
 util/mmap-alloc.c         |  6 +++++-
016a62
 util/oslib-posix.c        |  2 +-
016a62
 4 files changed, 27 insertions(+), 4 deletions(-)
016a62
016a62
diff --git a/exec.c b/exec.c
016a62
index 9028700..a79eaa3 100644
016a62
--- a/exec.c
016a62
+++ b/exec.c
016a62
@@ -1669,7 +1669,7 @@ static void *file_ram_alloc(RAMBlock *block,
016a62
     }
016a62
 
016a62
     area = qemu_ram_mmap(fd, memory, block->mr->align,
016a62
-                         block->flags & RAM_SHARED);
016a62
+                         block->flags & RAM_SHARED, block->flags & RAM_PMEM);
016a62
     if (area == MAP_FAILED) {
016a62
         error_setg_errno(errp, errno,
016a62
                          "unable to map backing store for guest RAM");
016a62
diff --git a/include/qemu/mmap-alloc.h b/include/qemu/mmap-alloc.h
016a62
index 50385e3..190688a 100644
016a62
--- a/include/qemu/mmap-alloc.h
016a62
+++ b/include/qemu/mmap-alloc.h
016a62
@@ -7,7 +7,26 @@ size_t qemu_fd_getpagesize(int fd);
016a62
 
016a62
 size_t qemu_mempath_getpagesize(const char *mem_path);
016a62
 
016a62
-void *qemu_ram_mmap(int fd, size_t size, size_t align, bool shared);
016a62
+/**
016a62
+ * qemu_ram_mmap: mmap the specified file or device.
016a62
+ *
016a62
+ * Parameters:
016a62
+ *  @fd: the file or the device to mmap
016a62
+ *  @size: the number of bytes to be mmaped
016a62
+ *  @align: if not zero, specify the alignment of the starting mapping address;
016a62
+ *          otherwise, the alignment in use will be determined by QEMU.
016a62
+ *  @shared: map has RAM_SHARED flag.
016a62
+ *  @is_pmem: map has RAM_PMEM flag.
016a62
+ *
016a62
+ * Return:
016a62
+ *  On success, return a pointer to the mapped area.
016a62
+ *  On failure, return MAP_FAILED.
016a62
+ */
016a62
+void *qemu_ram_mmap(int fd,
016a62
+                    size_t size,
016a62
+                    size_t align,
016a62
+                    bool shared,
016a62
+                    bool is_pmem);
016a62
 
016a62
 void qemu_ram_munmap(void *ptr, size_t size);
016a62
 
016a62
diff --git a/util/mmap-alloc.c b/util/mmap-alloc.c
016a62
index 2fd8cbc..55d1890 100644
016a62
--- a/util/mmap-alloc.c
016a62
+++ b/util/mmap-alloc.c
016a62
@@ -73,7 +73,11 @@ size_t qemu_mempath_getpagesize(const char *mem_path)
016a62
     return getpagesize();
016a62
 }
016a62
 
016a62
-void *qemu_ram_mmap(int fd, size_t size, size_t align, bool shared)
016a62
+void *qemu_ram_mmap(int fd,
016a62
+                    size_t size,
016a62
+                    size_t align,
016a62
+                    bool shared,
016a62
+                    bool is_pmem)
016a62
 {
016a62
     /*
016a62
      * Note: this always allocates at least one extra page of virtual address
016a62
diff --git a/util/oslib-posix.c b/util/oslib-posix.c
016a62
index 13b6f8d..c36b2bb 100644
016a62
--- a/util/oslib-posix.c
016a62
+++ b/util/oslib-posix.c
016a62
@@ -130,7 +130,7 @@ void *qemu_memalign(size_t alignment, size_t size)
016a62
 void *qemu_anon_ram_alloc(size_t size, uint64_t *alignment, bool shared)
016a62
 {
016a62
     size_t align = QEMU_VMALLOC_ALIGN;
016a62
-    void *ptr = qemu_ram_mmap(-1, size, align, shared);
016a62
+    void *ptr = qemu_ram_mmap(-1, size, align, shared, false);
016a62
 
016a62
     if (ptr == MAP_FAILED) {
016a62
         return NULL;
016a62
-- 
016a62
1.8.3.1
016a62