qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/8] Fix some style problems in migration
@ 2020-10-20  3:10 Bihong Yu
  2020-10-20  3:10 ` [PATCH v3 1/8] migration: Do not use C99 // comments Bihong Yu
                   ` (9 more replies)
  0 siblings, 10 replies; 18+ messages in thread
From: Bihong Yu @ 2020-10-20  3:10 UTC (permalink / raw)
  To: qemu-devel, qemu-trivial
  Cc: yubihong, zhengchuan, quintela, dgilbert, armbru, alex.chen, wanghao232

Recently I am reading migration related code, find some style problems in
migration directory while using checkpatch.pl to check migration code. Fix the
error style problems.

v2:
- fix Signed-off-by error
- fix printf format error: "%0x" -> "0x%x"

v3:
- change "VMStateDescription * []" to "VMStateDescription *[]"

Bihong Yu (8):
  migration: Do not use C99 // comments
  migration: Don't use '#' flag of printf format
  migration: Add spaces around operator
  migration: Open brace '{' following struct go on the same line
  migration: Add braces {} for if statement
  migration: Do not initialise statics and globals to 0 or NULL
  migration: Open brace '{' following function declarations go on the
    next line
  migration: Delete redundant spaces

 migration/block.c        |  4 ++--
 migration/migration.c    |  4 ++--
 migration/migration.h    |  3 +--
 migration/postcopy-ram.c |  2 +-
 migration/ram.c          | 14 ++++++++------
 migration/rdma.c         |  7 ++++---
 migration/savevm.c       |  4 ++--
 migration/vmstate.c      | 10 +++++-----
 8 files changed, 25 insertions(+), 23 deletions(-)

-- 
1.8.3.1



^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH v3 1/8] migration: Do not use C99 // comments
  2020-10-20  3:10 [PATCH v3 0/8] Fix some style problems in migration Bihong Yu
@ 2020-10-20  3:10 ` Bihong Yu
  2020-10-20 13:34   ` Juan Quintela
  2020-10-20  3:10 ` [PATCH v3 2/8] migration: Don't use '#' flag of printf format Bihong Yu
                   ` (8 subsequent siblings)
  9 siblings, 1 reply; 18+ messages in thread
From: Bihong Yu @ 2020-10-20  3:10 UTC (permalink / raw)
  To: qemu-devel, qemu-trivial
  Cc: yubihong, zhengchuan, quintela, dgilbert, armbru, alex.chen, wanghao232

Signed-off-by: Bihong Yu <yubihong@huawei.com>
Reviewed-by: Chuan Zheng <zhengchuan@huawei.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
---
 migration/block.c | 2 +-
 migration/rdma.c  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/migration/block.c b/migration/block.c
index 737b649..4b8576b 100644
--- a/migration/block.c
+++ b/migration/block.c
@@ -40,7 +40,7 @@
 #define MAX_IO_BUFFERS 512
 #define MAX_PARALLEL_IO 16
 
-//#define DEBUG_BLK_MIGRATION
+/* #define DEBUG_BLK_MIGRATION */
 
 #ifdef DEBUG_BLK_MIGRATION
 #define DPRINTF(fmt, ...) \
diff --git a/migration/rdma.c b/migration/rdma.c
index 0340841..0eb42b7 100644
--- a/migration/rdma.c
+++ b/migration/rdma.c
@@ -1288,7 +1288,7 @@ const char *print_wrid(int wrid)
  * workload information or LRU information is available, do not attempt to use
  * this feature except for basic testing.
  */
-//#define RDMA_UNREGISTRATION_EXAMPLE
+/* #define RDMA_UNREGISTRATION_EXAMPLE */
 
 /*
  * Perform a non-optimized memory unregistration after every transfer
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH v3 2/8] migration: Don't use '#' flag of printf format
  2020-10-20  3:10 [PATCH v3 0/8] Fix some style problems in migration Bihong Yu
  2020-10-20  3:10 ` [PATCH v3 1/8] migration: Do not use C99 // comments Bihong Yu
@ 2020-10-20  3:10 ` Bihong Yu
  2020-10-20 13:25   ` Juan Quintela
  2020-10-20  3:10 ` [PATCH v3 3/8] migration: Add spaces around operator Bihong Yu
                   ` (7 subsequent siblings)
  9 siblings, 1 reply; 18+ messages in thread
From: Bihong Yu @ 2020-10-20  3:10 UTC (permalink / raw)
  To: qemu-devel, qemu-trivial
  Cc: yubihong, zhengchuan, quintela, dgilbert, armbru, alex.chen, wanghao232

Signed-off-by: Bihong Yu <yubihong@huawei.com>
Reviewed-by: Chuan Zheng <zhengchuan@huawei.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
---
 migration/block.c | 2 +-
 migration/ram.c   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/migration/block.c b/migration/block.c
index 4b8576b..273392b 100644
--- a/migration/block.c
+++ b/migration/block.c
@@ -998,7 +998,7 @@ static int block_load(QEMUFile *f, void *opaque, int version_id)
                    (addr == 100) ? '\n' : '\r');
             fflush(stdout);
         } else if (!(flags & BLK_MIG_FLAG_EOS)) {
-            fprintf(stderr, "Unknown block migration flags: %#x\n", flags);
+            fprintf(stderr, "Unknown block migration flags: 0x%x\n", flags);
             return -EINVAL;
         }
         ret = qemu_file_get_error(f);
diff --git a/migration/ram.c b/migration/ram.c
index 433489d..6ed4f9e 100644
--- a/migration/ram.c
+++ b/migration/ram.c
@@ -3298,7 +3298,7 @@ static int ram_load_postcopy(QEMUFile *f)
             multifd_recv_sync_main();
             break;
         default:
-            error_report("Unknown combination of migration flags: %#x"
+            error_report("Unknown combination of migration flags: 0x%x"
                          " (postcopy mode)", flags);
             ret = -EINVAL;
             break;
@@ -3576,7 +3576,7 @@ static int ram_load_precopy(QEMUFile *f)
             if (flags & RAM_SAVE_FLAG_HOOK) {
                 ram_control_load_hook(f, RAM_CONTROL_HOOK, NULL);
             } else {
-                error_report("Unknown combination of migration flags: %#x",
+                error_report("Unknown combination of migration flags: 0x%x",
                              flags);
                 ret = -EINVAL;
             }
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH v3 3/8] migration: Add spaces around operator
  2020-10-20  3:10 [PATCH v3 0/8] Fix some style problems in migration Bihong Yu
  2020-10-20  3:10 ` [PATCH v3 1/8] migration: Do not use C99 // comments Bihong Yu
  2020-10-20  3:10 ` [PATCH v3 2/8] migration: Don't use '#' flag of printf format Bihong Yu
@ 2020-10-20  3:10 ` Bihong Yu
  2020-10-20 13:36   ` Juan Quintela
  2020-10-20  3:10 ` [PATCH v3 4/8] migration: Open brace '{' following struct go on the same line Bihong Yu
                   ` (6 subsequent siblings)
  9 siblings, 1 reply; 18+ messages in thread
From: Bihong Yu @ 2020-10-20  3:10 UTC (permalink / raw)
  To: qemu-devel, qemu-trivial
  Cc: yubihong, zhengchuan, quintela, dgilbert, armbru, alex.chen, wanghao232

Signed-off-by: Bihong Yu <yubihong@huawei.com>
Reviewed-by: Chuan Zheng <zhengchuan@huawei.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
---
 migration/migration.c    |  4 ++--
 migration/postcopy-ram.c |  2 +-
 migration/ram.c          |  2 +-
 migration/savevm.c       |  2 +-
 migration/vmstate.c      | 10 +++++-----
 5 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/migration/migration.c b/migration/migration.c
index 0575ecb..e050f57 100644
--- a/migration/migration.c
+++ b/migration/migration.c
@@ -2478,8 +2478,8 @@ static void migrate_handle_rp_req_pages(MigrationState *ms, const char* rbname,
      * Since we currently insist on matching page sizes, just sanity check
      * we're being asked for whole host pages.
      */
-    if (start & (our_host_ps-1) ||
-       (len & (our_host_ps-1))) {
+    if (start & (our_host_ps - 1) ||
+       (len & (our_host_ps - 1))) {
         error_report("%s: Misaligned page request, start: " RAM_ADDR_FMT
                      " len: %zd", __func__, start, len);
         mark_source_rp_bad(ms);
diff --git a/migration/postcopy-ram.c b/migration/postcopy-ram.c
index 0a2f88a8..eea92bb 100644
--- a/migration/postcopy-ram.c
+++ b/migration/postcopy-ram.c
@@ -403,7 +403,7 @@ bool postcopy_ram_supported_by_host(MigrationIncomingState *mis)
                      strerror(errno));
         goto out;
     }
-    g_assert(((size_t)testarea & (pagesize-1)) == 0);
+    g_assert(((size_t)testarea & (pagesize - 1)) == 0);
 
     reg_struct.range.start = (uintptr_t)testarea;
     reg_struct.range.len = pagesize;
diff --git a/migration/ram.c b/migration/ram.c
index 6ed4f9e..0aea78f 100644
--- a/migration/ram.c
+++ b/migration/ram.c
@@ -1563,7 +1563,7 @@ int ram_save_queue_pages(const char *rbname, ram_addr_t start, ram_addr_t len)
         rs->last_req_rb = ramblock;
     }
     trace_ram_save_queue_pages(ramblock->idstr, start, len);
-    if (start+len > ramblock->used_length) {
+    if (start + len > ramblock->used_length) {
         error_report("%s request overrun start=" RAM_ADDR_FMT " len="
                      RAM_ADDR_FMT " blocklen=" RAM_ADDR_FMT,
                      __func__, start, len, ramblock->used_length);
diff --git a/migration/savevm.c b/migration/savevm.c
index d2e141f..b21f1c1 100644
--- a/migration/savevm.c
+++ b/migration/savevm.c
@@ -521,7 +521,7 @@ static const VMStateDescription vmstate_configuration = {
         VMSTATE_VBUFFER_ALLOC_UINT32(name, SaveState, 0, NULL, len),
         VMSTATE_END_OF_LIST()
     },
-    .subsections = (const VMStateDescription*[]) {
+    .subsections = (const VMStateDescription *[]) {
         &vmstate_target_page_bits,
         &vmstate_capabilites,
         &vmstate_uuid,
diff --git a/migration/vmstate.c b/migration/vmstate.c
index bafa890..e9d2aef 100644
--- a/migration/vmstate.c
+++ b/migration/vmstate.c
@@ -32,13 +32,13 @@ static int vmstate_n_elems(void *opaque, const VMStateField *field)
     if (field->flags & VMS_ARRAY) {
         n_elems = field->num;
     } else if (field->flags & VMS_VARRAY_INT32) {
-        n_elems = *(int32_t *)(opaque+field->num_offset);
+        n_elems = *(int32_t *)(opaque + field->num_offset);
     } else if (field->flags & VMS_VARRAY_UINT32) {
-        n_elems = *(uint32_t *)(opaque+field->num_offset);
+        n_elems = *(uint32_t *)(opaque + field->num_offset);
     } else if (field->flags & VMS_VARRAY_UINT16) {
-        n_elems = *(uint16_t *)(opaque+field->num_offset);
+        n_elems = *(uint16_t *)(opaque + field->num_offset);
     } else if (field->flags & VMS_VARRAY_UINT8) {
-        n_elems = *(uint8_t *)(opaque+field->num_offset);
+        n_elems = *(uint8_t *)(opaque + field->num_offset);
     }
 
     if (field->flags & VMS_MULTIPLY_ELEMENTS) {
@@ -54,7 +54,7 @@ static int vmstate_size(void *opaque, const VMStateField *field)
     int size = field->size;
 
     if (field->flags & VMS_VBUFFER) {
-        size = *(int32_t *)(opaque+field->size_offset);
+        size = *(int32_t *)(opaque + field->size_offset);
         if (field->flags & VMS_MULTIPLY) {
             size *= field->size;
         }
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH v3 4/8] migration: Open brace '{' following struct go on the same line
  2020-10-20  3:10 [PATCH v3 0/8] Fix some style problems in migration Bihong Yu
                   ` (2 preceding siblings ...)
  2020-10-20  3:10 ` [PATCH v3 3/8] migration: Add spaces around operator Bihong Yu
@ 2020-10-20  3:10 ` Bihong Yu
  2020-10-20 13:37   ` Juan Quintela
  2020-10-20  3:10 ` [PATCH v3 5/8] migration: Add braces {} for if statement Bihong Yu
                   ` (5 subsequent siblings)
  9 siblings, 1 reply; 18+ messages in thread
From: Bihong Yu @ 2020-10-20  3:10 UTC (permalink / raw)
  To: qemu-devel, qemu-trivial
  Cc: yubihong, zhengchuan, quintela, dgilbert, armbru, alex.chen, wanghao232

Signed-off-by: Bihong Yu <yubihong@huawei.com>
Reviewed-by: Chuan Zheng <zhengchuan@huawei.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
---
 migration/migration.h | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/migration/migration.h b/migration/migration.h
index deb411a..99784b4 100644
--- a/migration/migration.h
+++ b/migration/migration.h
@@ -124,8 +124,7 @@ struct MigrationClass {
     DeviceClass parent_class;
 };
 
-struct MigrationState
-{
+struct MigrationState {
     /*< private >*/
     DeviceState parent_obj;
 
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH v3 5/8] migration: Add braces {} for if statement
  2020-10-20  3:10 [PATCH v3 0/8] Fix some style problems in migration Bihong Yu
                   ` (3 preceding siblings ...)
  2020-10-20  3:10 ` [PATCH v3 4/8] migration: Open brace '{' following struct go on the same line Bihong Yu
@ 2020-10-20  3:10 ` Bihong Yu
  2020-10-20 13:35   ` Juan Quintela
  2020-10-20  3:10 ` [PATCH v3 6/8] migration: Do not initialise statics and globals to 0 or NULL Bihong Yu
                   ` (4 subsequent siblings)
  9 siblings, 1 reply; 18+ messages in thread
From: Bihong Yu @ 2020-10-20  3:10 UTC (permalink / raw)
  To: qemu-devel, qemu-trivial
  Cc: yubihong, zhengchuan, quintela, dgilbert, armbru, alex.chen, wanghao232

Signed-off-by: Bihong Yu <yubihong@huawei.com>
Reviewed-by: Chuan Zheng <zhengchuan@huawei.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
---
 migration/ram.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/migration/ram.c b/migration/ram.c
index 0aea78f..09178cc 100644
--- a/migration/ram.c
+++ b/migration/ram.c
@@ -101,14 +101,16 @@ static struct {
 
 static void XBZRLE_cache_lock(void)
 {
-    if (migrate_use_xbzrle())
+    if (migrate_use_xbzrle()) {
         qemu_mutex_lock(&XBZRLE.lock);
+    }
 }
 
 static void XBZRLE_cache_unlock(void)
 {
-    if (migrate_use_xbzrle())
+    if (migrate_use_xbzrle()) {
         qemu_mutex_unlock(&XBZRLE.lock);
+    }
 }
 
 /**
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH v3 6/8] migration: Do not initialise statics and globals to 0 or NULL
  2020-10-20  3:10 [PATCH v3 0/8] Fix some style problems in migration Bihong Yu
                   ` (4 preceding siblings ...)
  2020-10-20  3:10 ` [PATCH v3 5/8] migration: Add braces {} for if statement Bihong Yu
@ 2020-10-20  3:10 ` Bihong Yu
  2020-10-20 13:35   ` Juan Quintela
  2020-10-20  3:10 ` [PATCH v3 7/8] migration: Open brace '{' following function declarations go on the next line Bihong Yu
                   ` (3 subsequent siblings)
  9 siblings, 1 reply; 18+ messages in thread
From: Bihong Yu @ 2020-10-20  3:10 UTC (permalink / raw)
  To: qemu-devel, qemu-trivial
  Cc: yubihong, zhengchuan, quintela, dgilbert, armbru, alex.chen, wanghao232

Signed-off-by: Bihong Yu <yubihong@huawei.com>
Reviewed-by: Chuan Zheng <zhengchuan@huawei.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
---
 migration/ram.c    | 2 +-
 migration/savevm.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/migration/ram.c b/migration/ram.c
index 09178cc..2da2b62 100644
--- a/migration/ram.c
+++ b/migration/ram.c
@@ -2743,7 +2743,7 @@ static int load_xbzrle(QEMUFile *f, ram_addr_t addr, void *host)
  */
 static inline RAMBlock *ram_block_from_stream(QEMUFile *f, int flags)
 {
-    static RAMBlock *block = NULL;
+    static RAMBlock *block;
     char id[256];
     uint8_t len;
 
diff --git a/migration/savevm.c b/migration/savevm.c
index b21f1c1..57368bd 100644
--- a/migration/savevm.c
+++ b/migration/savevm.c
@@ -64,7 +64,7 @@
 #include "qemu/bitmap.h"
 #include "net/announce.h"
 
-const unsigned int postcopy_ram_discard_version = 0;
+const unsigned int postcopy_ram_discard_version;
 
 /* Subcommands for QEMU_VM_COMMAND */
 enum qemu_vm_cmd {
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH v3 7/8] migration: Open brace '{' following function declarations go on the next line
  2020-10-20  3:10 [PATCH v3 0/8] Fix some style problems in migration Bihong Yu
                   ` (5 preceding siblings ...)
  2020-10-20  3:10 ` [PATCH v3 6/8] migration: Do not initialise statics and globals to 0 or NULL Bihong Yu
@ 2020-10-20  3:10 ` Bihong Yu
  2020-10-20  3:10 ` [PATCH v3 8/8] migration: Delete redundant spaces Bihong Yu
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 18+ messages in thread
From: Bihong Yu @ 2020-10-20  3:10 UTC (permalink / raw)
  To: qemu-devel, qemu-trivial
  Cc: yubihong, zhengchuan, quintela, dgilbert, armbru, alex.chen, wanghao232

Signed-off-by: Bihong Yu <yubihong@huawei.com>
Reviewed-by: Chuan Zheng <zhengchuan@huawei.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
---
 migration/rdma.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/migration/rdma.c b/migration/rdma.c
index 0eb42b7..ca4d315 100644
--- a/migration/rdma.c
+++ b/migration/rdma.c
@@ -273,7 +273,8 @@ static uint64_t htonll(uint64_t v)
     return u.llv;
 }
 
-static uint64_t ntohll(uint64_t v) {
+static uint64_t ntohll(uint64_t v)
+{
     union { uint32_t lv[2]; uint64_t llv; } u;
     u.llv = v;
     return ((uint64_t)ntohl(u.lv[0]) << 32) | (uint64_t) ntohl(u.lv[1]);
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH v3 8/8] migration: Delete redundant spaces
  2020-10-20  3:10 [PATCH v3 0/8] Fix some style problems in migration Bihong Yu
                   ` (6 preceding siblings ...)
  2020-10-20  3:10 ` [PATCH v3 7/8] migration: Open brace '{' following function declarations go on the next line Bihong Yu
@ 2020-10-20  3:10 ` Bihong Yu
  2020-10-20 13:39   ` Juan Quintela
  2020-10-20  3:27 ` [PATCH v3 0/8] Fix some style problems in migration no-reply
  2020-10-26 12:24 ` Dr. David Alan Gilbert
  9 siblings, 1 reply; 18+ messages in thread
From: Bihong Yu @ 2020-10-20  3:10 UTC (permalink / raw)
  To: qemu-devel, qemu-trivial
  Cc: yubihong, zhengchuan, quintela, dgilbert, armbru, alex.chen, wanghao232

Signed-off-by: Bihong Yu <yubihong@huawei.com>
Reviewed-by: Chuan Zheng <zhengchuan@huawei.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
---
 migration/rdma.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/migration/rdma.c b/migration/rdma.c
index ca4d315..00eac34 100644
--- a/migration/rdma.c
+++ b/migration/rdma.c
@@ -855,7 +855,7 @@ static int qemu_rdma_broken_ipv6_kernel(struct ibv_context *verbs, Error **errp)
      */
     if (!verbs) {
         int num_devices, x;
-        struct ibv_device ** dev_list = ibv_get_device_list(&num_devices);
+        struct ibv_device **dev_list = ibv_get_device_list(&num_devices);
         bool roce_found = false;
         bool ib_found = false;
 
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* Re: [PATCH v3 0/8] Fix some style problems in migration
  2020-10-20  3:10 [PATCH v3 0/8] Fix some style problems in migration Bihong Yu
                   ` (7 preceding siblings ...)
  2020-10-20  3:10 ` [PATCH v3 8/8] migration: Delete redundant spaces Bihong Yu
@ 2020-10-20  3:27 ` no-reply
  2020-10-26 12:24 ` Dr. David Alan Gilbert
  9 siblings, 0 replies; 18+ messages in thread
From: no-reply @ 2020-10-20  3:27 UTC (permalink / raw)
  To: yubihong
  Cc: yubihong, alex.chen, quintela, qemu-trivial, armbru, dgilbert,
	qemu-devel, zhengchuan, wanghao232

Patchew URL: https://patchew.org/QEMU/1603163448-27122-1-git-send-email-yubihong@huawei.com/



Hi,

This series seems to have some coding style problems. See output below for
more information:

Type: series
Message-id: 1603163448-27122-1-git-send-email-yubihong@huawei.com
Subject: [PATCH v3 0/8] Fix some style problems in migration

=== TEST SCRIPT BEGIN ===
#!/bin/bash
git rev-parse base > /dev/null || exit 0
git config --local diff.renamelimit 0
git config --local diff.renames True
git config --local diff.algorithm histogram
./scripts/checkpatch.pl --mailback base..
=== TEST SCRIPT END ===

Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384
From https://github.com/patchew-project/qemu
 * [new tag]         patchew/1603163448-27122-1-git-send-email-yubihong@huawei.com -> patchew/1603163448-27122-1-git-send-email-yubihong@huawei.com
 - [tag update]      patchew/cover.1602634524.git.alistair.francis@wdc.com -> patchew/cover.1602634524.git.alistair.francis@wdc.com
Switched to a new branch 'test'
b33edea migration: Delete redundant spaces
277563d migration: Open brace '{' following function declarations go on the next line
7dd0ad0 migration: Do not initialise statics and globals to 0 or NULL
5540fd1 migration: Add braces {} for if statement
89c1a12 migration: Open brace '{' following struct go on the same line
23e7f3f migration: Add spaces around operator
cc9ec99 migration: Don't use '#' flag of printf format
122dc68 migration: Do not use C99 // comments

=== OUTPUT BEGIN ===
1/8 Checking commit 122dc68da3df (migration: Do not use C99 // comments)
2/8 Checking commit cc9ec99c5ac0 (migration: Don't use '#' flag of printf format)
3/8 Checking commit 23e7f3fb51c2 (migration: Add spaces around operator)
ERROR: spaces required around that '*' (ctx:WxV)
#62: FILE: migration/savevm.c:524:
+    .subsections = (const VMStateDescription *[]) {
                                              ^

total: 1 errors, 0 warnings, 59 lines checked

Patch 3/8 has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.

4/8 Checking commit 89c1a1215ef0 (migration: Open brace '{' following struct go on the same line)
5/8 Checking commit 5540fd121f19 (migration: Add braces {} for if statement)
6/8 Checking commit 7dd0ad0c5b86 (migration: Do not initialise statics and globals to 0 or NULL)
7/8 Checking commit 277563d27c33 (migration: Open brace '{' following function declarations go on the next line)
8/8 Checking commit b33edea584b4 (migration: Delete redundant spaces)
=== OUTPUT END ===

Test command exited with code: 1


The full log is available at
http://patchew.org/logs/1603163448-27122-1-git-send-email-yubihong@huawei.com/testing.checkpatch/?type=message.
---
Email generated automatically by Patchew [https://patchew.org/].
Please send your feedback to patchew-devel@redhat.com

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH v3 2/8] migration: Don't use '#' flag of printf format
  2020-10-20  3:10 ` [PATCH v3 2/8] migration: Don't use '#' flag of printf format Bihong Yu
@ 2020-10-20 13:25   ` Juan Quintela
  0 siblings, 0 replies; 18+ messages in thread
From: Juan Quintela @ 2020-10-20 13:25 UTC (permalink / raw)
  To: Bihong Yu
  Cc: zhengchuan, qemu-trivial, armbru, qemu-devel, dgilbert,
	alex.chen, wanghao232

Bihong Yu <yubihong@huawei.com> wrote:
> Signed-off-by: Bihong Yu <yubihong@huawei.com>
> Reviewed-by: Chuan Zheng <zhengchuan@huawei.com>
> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> ---
>  migration/block.c | 2 +-
>  migration/ram.c   | 4 ++--
>  2 files changed, 3 insertions(+), 3 deletions(-)

Reviewed-by: Juan Quintela <quintela@redhat.com>



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH v3 1/8] migration: Do not use C99 // comments
  2020-10-20  3:10 ` [PATCH v3 1/8] migration: Do not use C99 // comments Bihong Yu
@ 2020-10-20 13:34   ` Juan Quintela
  0 siblings, 0 replies; 18+ messages in thread
From: Juan Quintela @ 2020-10-20 13:34 UTC (permalink / raw)
  To: Bihong Yu
  Cc: zhengchuan, qemu-trivial, armbru, qemu-devel, dgilbert,
	alex.chen, wanghao232

Bihong Yu <yubihong@huawei.com> wrote:
> Signed-off-by: Bihong Yu <yubihong@huawei.com>
> Reviewed-by: Chuan Zheng <zhengchuan@huawei.com>
> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> ---
>  migration/block.c | 2 +-
>  migration/rdma.c  | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)

Reviewed-by: Juan Quintela <quintela@redhat.com>



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH v3 6/8] migration: Do not initialise statics and globals to 0 or NULL
  2020-10-20  3:10 ` [PATCH v3 6/8] migration: Do not initialise statics and globals to 0 or NULL Bihong Yu
@ 2020-10-20 13:35   ` Juan Quintela
  0 siblings, 0 replies; 18+ messages in thread
From: Juan Quintela @ 2020-10-20 13:35 UTC (permalink / raw)
  To: Bihong Yu
  Cc: zhengchuan, qemu-trivial, armbru, qemu-devel, dgilbert,
	alex.chen, wanghao232

Bihong Yu <yubihong@huawei.com> wrote:
> Signed-off-by: Bihong Yu <yubihong@huawei.com>
> Reviewed-by: Chuan Zheng <zhengchuan@huawei.com>
> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>

Reviewed-by: Juan Quintela <quintela@redhat.com>



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH v3 5/8] migration: Add braces {} for if statement
  2020-10-20  3:10 ` [PATCH v3 5/8] migration: Add braces {} for if statement Bihong Yu
@ 2020-10-20 13:35   ` Juan Quintela
  0 siblings, 0 replies; 18+ messages in thread
From: Juan Quintela @ 2020-10-20 13:35 UTC (permalink / raw)
  To: Bihong Yu
  Cc: zhengchuan, qemu-trivial, armbru, qemu-devel, dgilbert,
	alex.chen, wanghao232

Bihong Yu <yubihong@huawei.com> wrote:
> Signed-off-by: Bihong Yu <yubihong@huawei.com>
> Reviewed-by: Chuan Zheng <zhengchuan@huawei.com>
> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>

Reviewed-by: Juan Quintela <quintela@redhat.com>



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH v3 3/8] migration: Add spaces around operator
  2020-10-20  3:10 ` [PATCH v3 3/8] migration: Add spaces around operator Bihong Yu
@ 2020-10-20 13:36   ` Juan Quintela
  0 siblings, 0 replies; 18+ messages in thread
From: Juan Quintela @ 2020-10-20 13:36 UTC (permalink / raw)
  To: Bihong Yu
  Cc: zhengchuan, qemu-trivial, armbru, qemu-devel, dgilbert,
	alex.chen, wanghao232

Bihong Yu <yubihong@huawei.com> wrote:
> Signed-off-by: Bihong Yu <yubihong@huawei.com>
> Reviewed-by: Chuan Zheng <zhengchuan@huawei.com>
> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> ---
>  migration/migration.c    |  4 ++--
>  migration/postcopy-ram.c |  2 +-
>  migration/ram.c          |  2 +-
>  migration/savevm.c       |  2 +-
>  migration/vmstate.c      | 10 +++++-----
>  5 files changed, 10 insertions(+), 10 deletions(-)

Reviewed-by: Juan Quintela <quintela@redhat.com>



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH v3 4/8] migration: Open brace '{' following struct go on the same line
  2020-10-20  3:10 ` [PATCH v3 4/8] migration: Open brace '{' following struct go on the same line Bihong Yu
@ 2020-10-20 13:37   ` Juan Quintela
  0 siblings, 0 replies; 18+ messages in thread
From: Juan Quintela @ 2020-10-20 13:37 UTC (permalink / raw)
  To: Bihong Yu
  Cc: zhengchuan, qemu-trivial, armbru, qemu-devel, dgilbert,
	alex.chen, wanghao232

Bihong Yu <yubihong@huawei.com> wrote:
> Signed-off-by: Bihong Yu <yubihong@huawei.com>
> Reviewed-by: Chuan Zheng <zhengchuan@huawei.com>
> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>

Reviewed-by: Juan Quintela <quintela@redhat.com>



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH v3 8/8] migration: Delete redundant spaces
  2020-10-20  3:10 ` [PATCH v3 8/8] migration: Delete redundant spaces Bihong Yu
@ 2020-10-20 13:39   ` Juan Quintela
  0 siblings, 0 replies; 18+ messages in thread
From: Juan Quintela @ 2020-10-20 13:39 UTC (permalink / raw)
  To: Bihong Yu
  Cc: zhengchuan, qemu-trivial, armbru, qemu-devel, dgilbert,
	alex.chen, wanghao232

Bihong Yu <yubihong@huawei.com> wrote:
> Signed-off-by: Bihong Yu <yubihong@huawei.com>
> Reviewed-by: Chuan Zheng <zhengchuan@huawei.com>
> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>

Reviewed-by: Juan Quintela <quintela@redhat.com>



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH v3 0/8] Fix some style problems in migration
  2020-10-20  3:10 [PATCH v3 0/8] Fix some style problems in migration Bihong Yu
                   ` (8 preceding siblings ...)
  2020-10-20  3:27 ` [PATCH v3 0/8] Fix some style problems in migration no-reply
@ 2020-10-26 12:24 ` Dr. David Alan Gilbert
  9 siblings, 0 replies; 18+ messages in thread
From: Dr. David Alan Gilbert @ 2020-10-26 12:24 UTC (permalink / raw)
  To: Bihong Yu
  Cc: zhengchuan, quintela, qemu-trivial, qemu-devel, armbru,
	alex.chen, wanghao232

* Bihong Yu (yubihong@huawei.com) wrote:
> Recently I am reading migration related code, find some style problems in
> migration directory while using checkpatch.pl to check migration code. Fix the
> error style problems.
> 

Queued

> v2:
> - fix Signed-off-by error
> - fix printf format error: "%0x" -> "0x%x"
> 
> v3:
> - change "VMStateDescription * []" to "VMStateDescription *[]"
> 
> Bihong Yu (8):
>   migration: Do not use C99 // comments
>   migration: Don't use '#' flag of printf format
>   migration: Add spaces around operator
>   migration: Open brace '{' following struct go on the same line
>   migration: Add braces {} for if statement
>   migration: Do not initialise statics and globals to 0 or NULL
>   migration: Open brace '{' following function declarations go on the
>     next line
>   migration: Delete redundant spaces
> 
>  migration/block.c        |  4 ++--
>  migration/migration.c    |  4 ++--
>  migration/migration.h    |  3 +--
>  migration/postcopy-ram.c |  2 +-
>  migration/ram.c          | 14 ++++++++------
>  migration/rdma.c         |  7 ++++---
>  migration/savevm.c       |  4 ++--
>  migration/vmstate.c      | 10 +++++-----
>  8 files changed, 25 insertions(+), 23 deletions(-)
> 
> -- 
> 1.8.3.1
> 
> 
-- 
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK



^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2020-10-26 12:33 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-20  3:10 [PATCH v3 0/8] Fix some style problems in migration Bihong Yu
2020-10-20  3:10 ` [PATCH v3 1/8] migration: Do not use C99 // comments Bihong Yu
2020-10-20 13:34   ` Juan Quintela
2020-10-20  3:10 ` [PATCH v3 2/8] migration: Don't use '#' flag of printf format Bihong Yu
2020-10-20 13:25   ` Juan Quintela
2020-10-20  3:10 ` [PATCH v3 3/8] migration: Add spaces around operator Bihong Yu
2020-10-20 13:36   ` Juan Quintela
2020-10-20  3:10 ` [PATCH v3 4/8] migration: Open brace '{' following struct go on the same line Bihong Yu
2020-10-20 13:37   ` Juan Quintela
2020-10-20  3:10 ` [PATCH v3 5/8] migration: Add braces {} for if statement Bihong Yu
2020-10-20 13:35   ` Juan Quintela
2020-10-20  3:10 ` [PATCH v3 6/8] migration: Do not initialise statics and globals to 0 or NULL Bihong Yu
2020-10-20 13:35   ` Juan Quintela
2020-10-20  3:10 ` [PATCH v3 7/8] migration: Open brace '{' following function declarations go on the next line Bihong Yu
2020-10-20  3:10 ` [PATCH v3 8/8] migration: Delete redundant spaces Bihong Yu
2020-10-20 13:39   ` Juan Quintela
2020-10-20  3:27 ` [PATCH v3 0/8] Fix some style problems in migration no-reply
2020-10-26 12:24 ` Dr. David Alan Gilbert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).