qemu-trivial
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 1/2] migration: factor out "resume_requested" in qmp_migrate(


From: Michael Tokarev
Subject: Re: [PATCH 1/2] migration: factor out "resume_requested" in qmp_migrate()
Date: Thu, 6 Jul 2023 16:28:06 +0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.12.0

06.07.2023 13:29, Laszlo Ersek пишет:
It cuts back on those awkward, duplicated !(has_resume && resume)
expressions.

Cc: Juan Quintela <quintela@redhat.com> (maintainer:Migration)
Cc: Leonardo Bras <leobras@redhat.com> (reviewer:Migration)
Cc: Peter Xu <peterx@redhat.com> (reviewer:Migration)
Cc: qemu-trivial@nongnu.org
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2018404
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
---
  migration/migration.c | 10 ++++++----
  1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/migration/migration.c b/migration/migration.c
index 096e8191d15c..a60a5acee533 100644
--- a/migration/migration.c
+++ b/migration/migration.c
@@ -1637,6 +1637,7 @@ void qmp_migrate(const char *uri, bool has_blk, bool blk,
                   bool has_inc, bool inc, bool has_detach, bool detach,
                   bool has_resume, bool resume, Error **errp)
  {
+    bool resume_requested;
      Error *local_err = NULL;
      MigrationState *s = migrate_get_current();
      const char *p = NULL;
@@ -1646,13 +1647,14 @@ void qmp_migrate(const char *uri, bool has_blk, bool 
blk,
          return;
      }
+ resume_requested = has_resume && resume;

Dunno if it's worth it or cleaner, but it can be reduced to

      if (!has_resume)  resume = false;

and checking for only resume below this point.
In other words, there's no need for an additional local var.

All other params (has_inc & inc, has_detach_detach etc) are like this
too.

Anyway,

Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>

/mjt



reply via email to

[Prev in Thread] Current Thread [Next in Thread]