qemu-devel
[Top][All Lists]
Advanced

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

Re: [PATCH v12 0/5] UFFD write-tracking migration/snapshots


From: no-reply
Subject: Re: [PATCH v12 0/5] UFFD write-tracking migration/snapshots
Date: Thu, 21 Jan 2021 07:15:47 -0800 (PST)

Patchew URL: 
20210121150234.192543-1-andrey.gruzdev@virtuozzo.com/">https://patchew.org/QEMU/20210121150234.192543-1-andrey.gruzdev@virtuozzo.com/



Hi,

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

Type: series
Message-id: 20210121150234.192543-1-andrey.gruzdev@virtuozzo.com
Subject: [PATCH v12 0/5] UFFD write-tracking migration/snapshots

=== 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/20210121144429.58885-1-stefanha@redhat.com -> 
patchew/20210121144429.58885-1-stefanha@redhat.com
 * [new tag]         
patchew/20210121150234.192543-1-andrey.gruzdev@virtuozzo.com -> 
patchew/20210121150234.192543-1-andrey.gruzdev@virtuozzo.com
 * [new tag]         patchew/20210121150832.3564097-1-kraxel@redhat.com -> 
patchew/20210121150832.3564097-1-kraxel@redhat.com
Switched to a new branch 'test'
b373acd migration: introduce 'userfaultfd-wrlat.py' script
65d19c7 migration: implementation of background snapshot thread
0dec39d migration: support UFFD write fault processing in ram_save_iterate()
ce2b6b8 migration: introduce UFFD-WP low-level interface helpers
d60a40d migration: introduce 'background-snapshot' migration capability

=== OUTPUT BEGIN ===
1/5 Checking commit d60a40d7561e (migration: introduce 'background-snapshot' 
migration capability)
WARNING: line over 80 characters
#123: FILE: migration/migration.c:1231:
+            error_setg(errp, "Background-snapshot is not supported by host 
kernel");

WARNING: Block comments use a leading /* on a separate line
#200: FILE: migration/ram.c:3791:
+/* ram_write_tracking_available: check if kernel supports required UFFD 
features

WARNING: Block comments use a leading /* on a separate line
#210: FILE: migration/ram.c:3801:
+/* ram_write_tracking_compatible: check if guest configuration is

total: 0 errors, 3 warnings, 207 lines checked

Patch 1/5 has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
2/5 Checking commit ce2b6b8922a3 (migration: introduce UFFD-WP low-level 
interface helpers)
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#35: 
new file mode 100644

WARNING: line over 80 characters
#272: FILE: util/userfaultfd.c:163:
+ * uffd_change_protection: protect/un-protect memory range for writes via 
UFFD-IO

WARNING: line over 80 characters
#331: FILE: util/userfaultfd.c:222:
+        error_report("uffd_copy_page() failed: dst_addr=%p src_addr=%p 
length=%" PRIu64

WARNING: line over 80 characters
#371: FILE: util/userfaultfd.c:262:
+ * uffd_wakeup: wake up threads waiting on page UFFD-managed page fault 
resolution

WARNING: line over 80 characters
#392: FILE: util/userfaultfd.c:283:
+        error_report("uffd_wakeup() failed: addr=%p length=%" PRIu64 " 
errno=%i",

total: 0 errors, 5 warnings, 406 lines checked

Patch 2/5 has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
3/5 Checking commit 0dec39ddcad4 (migration: support UFFD write fault 
processing in ram_save_iterate())
WARNING: architecture specific defines should be avoided
#61: FILE: migration/ram.c:61:
+#if defined(__linux__)

WARNING: architecture specific defines should be avoided
#80: FILE: migration/ram.c:1444:
+#if defined(__linux__)

WARNING: Block comments should align the * on each line
#122: FILE: migration/ram.c:1486:
+ * Returns 0 on success, negative value in case of an error
+*/

WARNING: line over 80 characters
#130: FILE: migration/ram.c:1494:
+        void *page_address = pss->block->host + (start_page << 
TARGET_PAGE_BITS);

WARNING: Block comments use a leading /* on a separate line
#143: FILE: migration/ram.c:1507:
+/* ram_write_tracking_available: check if kernel supports required UFFD 
features

WARNING: Block comments use a leading /* on a separate line
#157: FILE: migration/ram.c:1521:
+/* ram_write_tracking_compatible: check if guest configuration is

WARNING: line over 80 characters
#246: FILE: migration/ram.c:1610:
+    error_report("ram_write_tracking_start() failed: restoring initial memory 
state");

WARNING: line over 80 characters
#256: FILE: migration/ram.c:1620:
+        uffd_change_protection(rs->uffdio_fd, bs->host, bs->max_length, false, 
false);

WARNING: line over 80 characters
#283: FILE: migration/ram.c:1647:
+        uffd_change_protection(rs->uffdio_fd, bs->host, bs->max_length, false, 
false);

WARNING: Block comments use a leading /* on a separate line
#394: FILE: migration/ram.c:2166:
+        /* caller have hold iothread lock or is in a bh, so there is

total: 0 errors, 10 warnings, 408 lines checked

Patch 3/5 has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
4/5 Checking commit 65d19c777763 (migration: implementation of background 
snapshot thread)
WARNING: line over 80 characters
#200: FILE: migration/migration.c:3824:
+ * mechanism, which effectively results in that saved snapshot is the state of 
VM

total: 0 errors, 1 warnings, 348 lines checked

Patch 4/5 has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
5/5 Checking commit b373acd62b81 (migration: introduce 'userfaultfd-wrlat.py' 
script)
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#17: 
new file mode 100755

ERROR: trailing whitespace
#65: FILE: scripts/userfaultfd-wrlat.py:44:
+    $

WARNING: line over 80 characters
#122: FILE: scripts/userfaultfd-wrlat.py:101:
+b.attach_kretprobe(event="handle_userfault", 
fn_name="retprobe_handle_userfault")

total: 1 errors, 2 warnings, 122 lines checked

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

=== OUTPUT END ===

Test command exited with code: 1


The full log is available at
20210121150234.192543-1-andrey.gruzdev@virtuozzo.com/testing.checkpatch/?type=message">http://patchew.org/logs/20210121150234.192543-1-andrey.gruzdev@virtuozzo.com/testing.checkpatch/?type=message.
---
Email generated automatically by Patchew [https://patchew.org/].
Please send your feedback to patchew-devel@redhat.com

reply via email to

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