diff mbox

[43/51] ram: ram_discard_range() don't use the mis parameter

Message ID 20170323204544.12015-44-quintela@redhat.com
State New
Headers show

Commit Message

Juan Quintela March 23, 2017, 8:45 p.m. UTC
Signed-off-by: Juan Quintela <quintela@redhat.com>
---
 include/migration/migration.h | 3 +--
 migration/postcopy-ram.c      | 6 ++----
 migration/ram.c               | 9 +++------
 migration/savevm.c            | 3 +--
 4 files changed, 7 insertions(+), 14 deletions(-)

Comments

Dr. David Alan Gilbert March 29, 2017, 6:43 p.m. UTC | #1
* Juan Quintela (quintela@redhat.com) wrote:
> Signed-off-by: Juan Quintela <quintela@redhat.com>

Oh yeh, so it doesn't.

Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>

> ---
>  include/migration/migration.h | 3 +--
>  migration/postcopy-ram.c      | 6 ++----
>  migration/ram.c               | 9 +++------
>  migration/savevm.c            | 3 +--
>  4 files changed, 7 insertions(+), 14 deletions(-)
> 
> diff --git a/include/migration/migration.h b/include/migration/migration.h
> index 90849a5..39a8e7e 100644
> --- a/include/migration/migration.h
> +++ b/include/migration/migration.h
> @@ -270,8 +270,7 @@ void ram_debug_dump_bitmap(unsigned long *todump, bool expected);
>  /* For outgoing discard bitmap */
>  int ram_postcopy_send_discard_bitmap(MigrationState *ms);
>  /* For incoming postcopy discard */
> -int ram_discard_range(MigrationIncomingState *mis, const char *block_name,
> -                      uint64_t start, size_t length);
> +int ram_discard_range(const char *block_name, uint64_t start, size_t length);
>  int ram_postcopy_incoming_init(MigrationIncomingState *mis);
>  void ram_postcopy_migrated_memory_release(MigrationState *ms);
>  
> diff --git a/migration/postcopy-ram.c b/migration/postcopy-ram.c
> index 8756364..85fd8d7 100644
> --- a/migration/postcopy-ram.c
> +++ b/migration/postcopy-ram.c
> @@ -213,8 +213,6 @@ out:
>  static int init_range(const char *block_name, void *host_addr,
>                        ram_addr_t offset, ram_addr_t length, void *opaque)
>  {
> -    MigrationIncomingState *mis = opaque;
> -
>      trace_postcopy_init_range(block_name, host_addr, offset, length);
>  
>      /*
> @@ -223,7 +221,7 @@ static int init_range(const char *block_name, void *host_addr,
>       * - we're going to get the copy from the source anyway.
>       * (Precopy will just overwrite this data, so doesn't need the discard)
>       */
> -    if (ram_discard_range(mis, block_name, 0, length)) {
> +    if (ram_discard_range(block_name, 0, length)) {
>          return -1;
>      }
>  
> @@ -271,7 +269,7 @@ static int cleanup_range(const char *block_name, void *host_addr,
>   */
>  int postcopy_ram_incoming_init(MigrationIncomingState *mis, size_t ram_pages)
>  {
> -    if (qemu_ram_foreach_block(init_range, mis)) {
> +    if (qemu_ram_foreach_block(init_range, NULL)) {
>          return -1;
>      }
>  
> diff --git a/migration/ram.c b/migration/ram.c
> index 9772fd8..83c749c 100644
> --- a/migration/ram.c
> +++ b/migration/ram.c
> @@ -784,7 +784,7 @@ static void ram_release_pages(const char *rbname, uint64_t offset, int pages)
>          return;
>      }
>  
> -    ram_discard_range(NULL, rbname, offset, pages << TARGET_PAGE_BITS);
> +    ram_discard_range(rbname, offset, pages << TARGET_PAGE_BITS);
>  }
>  
>  /**
> @@ -1602,7 +1602,7 @@ void ram_postcopy_migrated_memory_release(MigrationState *ms)
>  
>          while (run_start < range) {
>              unsigned long run_end = find_next_bit(bitmap, range, run_start + 1);
> -            ram_discard_range(NULL, block->idstr, run_start << TARGET_PAGE_BITS,
> +            ram_discard_range(block->idstr, run_start << TARGET_PAGE_BITS,
>                                (run_end - run_start) << TARGET_PAGE_BITS);
>              run_start = find_next_zero_bit(bitmap, range, run_end + 1);
>          }
> @@ -1942,15 +1942,12 @@ int ram_postcopy_send_discard_bitmap(MigrationState *ms)
>   *
>   * Returns zero on success
>   *
> - * @mis: current migration incoming state
>   * @rbname: name of the RAMBLock of the request. NULL means the
>   *          same that last one.
>   * @start: RAMBlock starting page
>   * @length: RAMBlock size
>   */
> -int ram_discard_range(MigrationIncomingState *mis,
> -                      const char *rbname,
> -                      uint64_t start, size_t length)
> +int ram_discard_range(const char *rbname, uint64_t start, size_t length)
>  {
>      int ret = -1;
>  
> diff --git a/migration/savevm.c b/migration/savevm.c
> index bbf055d..7cf387f 100644
> --- a/migration/savevm.c
> +++ b/migration/savevm.c
> @@ -1479,8 +1479,7 @@ static int loadvm_postcopy_ram_handle_discard(MigrationIncomingState *mis,
>          block_length = qemu_get_be64(mis->from_src_file);
>  
>          len -= 16;
> -        int ret = ram_discard_range(mis, ramid, start_addr,
> -                                    block_length);
> +        int ret = ram_discard_range(ramid, start_addr, block_length);
>          if (ret) {
>              return ret;
>          }
> -- 
> 2.9.3
> 
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
Peter Xu March 30, 2017, 10:28 a.m. UTC | #2
On Thu, Mar 23, 2017 at 09:45:36PM +0100, Juan Quintela wrote:
> Signed-off-by: Juan Quintela <quintela@redhat.com>

Reviewed-by: Peter Xu <peterx@redhat.com>

-- peterx
diff mbox

Patch

diff --git a/include/migration/migration.h b/include/migration/migration.h
index 90849a5..39a8e7e 100644
--- a/include/migration/migration.h
+++ b/include/migration/migration.h
@@ -270,8 +270,7 @@  void ram_debug_dump_bitmap(unsigned long *todump, bool expected);
 /* For outgoing discard bitmap */
 int ram_postcopy_send_discard_bitmap(MigrationState *ms);
 /* For incoming postcopy discard */
-int ram_discard_range(MigrationIncomingState *mis, const char *block_name,
-                      uint64_t start, size_t length);
+int ram_discard_range(const char *block_name, uint64_t start, size_t length);
 int ram_postcopy_incoming_init(MigrationIncomingState *mis);
 void ram_postcopy_migrated_memory_release(MigrationState *ms);
 
diff --git a/migration/postcopy-ram.c b/migration/postcopy-ram.c
index 8756364..85fd8d7 100644
--- a/migration/postcopy-ram.c
+++ b/migration/postcopy-ram.c
@@ -213,8 +213,6 @@  out:
 static int init_range(const char *block_name, void *host_addr,
                       ram_addr_t offset, ram_addr_t length, void *opaque)
 {
-    MigrationIncomingState *mis = opaque;
-
     trace_postcopy_init_range(block_name, host_addr, offset, length);
 
     /*
@@ -223,7 +221,7 @@  static int init_range(const char *block_name, void *host_addr,
      * - we're going to get the copy from the source anyway.
      * (Precopy will just overwrite this data, so doesn't need the discard)
      */
-    if (ram_discard_range(mis, block_name, 0, length)) {
+    if (ram_discard_range(block_name, 0, length)) {
         return -1;
     }
 
@@ -271,7 +269,7 @@  static int cleanup_range(const char *block_name, void *host_addr,
  */
 int postcopy_ram_incoming_init(MigrationIncomingState *mis, size_t ram_pages)
 {
-    if (qemu_ram_foreach_block(init_range, mis)) {
+    if (qemu_ram_foreach_block(init_range, NULL)) {
         return -1;
     }
 
diff --git a/migration/ram.c b/migration/ram.c
index 9772fd8..83c749c 100644
--- a/migration/ram.c
+++ b/migration/ram.c
@@ -784,7 +784,7 @@  static void ram_release_pages(const char *rbname, uint64_t offset, int pages)
         return;
     }
 
-    ram_discard_range(NULL, rbname, offset, pages << TARGET_PAGE_BITS);
+    ram_discard_range(rbname, offset, pages << TARGET_PAGE_BITS);
 }
 
 /**
@@ -1602,7 +1602,7 @@  void ram_postcopy_migrated_memory_release(MigrationState *ms)
 
         while (run_start < range) {
             unsigned long run_end = find_next_bit(bitmap, range, run_start + 1);
-            ram_discard_range(NULL, block->idstr, run_start << TARGET_PAGE_BITS,
+            ram_discard_range(block->idstr, run_start << TARGET_PAGE_BITS,
                               (run_end - run_start) << TARGET_PAGE_BITS);
             run_start = find_next_zero_bit(bitmap, range, run_end + 1);
         }
@@ -1942,15 +1942,12 @@  int ram_postcopy_send_discard_bitmap(MigrationState *ms)
  *
  * Returns zero on success
  *
- * @mis: current migration incoming state
  * @rbname: name of the RAMBLock of the request. NULL means the
  *          same that last one.
  * @start: RAMBlock starting page
  * @length: RAMBlock size
  */
-int ram_discard_range(MigrationIncomingState *mis,
-                      const char *rbname,
-                      uint64_t start, size_t length)
+int ram_discard_range(const char *rbname, uint64_t start, size_t length)
 {
     int ret = -1;
 
diff --git a/migration/savevm.c b/migration/savevm.c
index bbf055d..7cf387f 100644
--- a/migration/savevm.c
+++ b/migration/savevm.c
@@ -1479,8 +1479,7 @@  static int loadvm_postcopy_ram_handle_discard(MigrationIncomingState *mis,
         block_length = qemu_get_be64(mis->from_src_file);
 
         len -= 16;
-        int ret = ram_discard_range(mis, ramid, start_addr,
-                                    block_length);
+        int ret = ram_discard_range(ramid, start_addr, block_length);
         if (ret) {
             return ret;
         }