All of lore.kernel.org
 help / color / mirror / Atom feed
From: no-reply@patchew.org
To: pbonzini@redhat.com
Cc: qemu-devel@nongnu.org
Subject: Re: [PULL 00/20] Misc patches for 2020-05-17
Date: Mon, 17 May 2021 05:15:50 -0700 (PDT)	[thread overview]
Message-ID: <162125374920.9151.7821393142017820686@d887ba82c771> (raw)
In-Reply-To: <20210517112001.2564006-1-pbonzini@redhat.com>

Patchew URL: https://patchew.org/QEMU/20210517112001.2564006-1-pbonzini@redhat.com/



Hi,

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

Type: series
Message-id: 20210517112001.2564006-1-pbonzini@redhat.com
Subject: [PULL 00/20] Misc patches for 2020-05-17

=== 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/20210517112001.2564006-1-pbonzini@redhat.com -> patchew/20210517112001.2564006-1-pbonzini@redhat.com
Switched to a new branch 'test'
77eb22a KVM: Dirty ring support
520cdc9 KVM: Disable manual dirty log when dirty ring enabled
d672dde KVM: Add dirty-ring-size property
f325098 KVM: Cache kvm slot dirty bitmap size
568e8ff KVM: Simplify dirty log sync in kvm_set_phys_mem
7d5d872 KVM: Provide helper to sync dirty bitmap from slot to ramblock
7b2937f KVM: Provide helper to get kvm dirty log
8160151 KVM: Create the KVMSlot dirty bitmap on flag changes
a013508 KVM: Use a big lock to replace per-kml slots_lock
3549fdf memory: Introduce log_sync_global() to memory listener
415d0d0 KVM: do not allow setting properties at runtime
d44087e qtest: add a QOM object for qtest
b21d58b object: add more commands to preconfig mode
80d034a2 meson: bump submodule to 0.57.2
91a9f7f i386/cpu: Expose AVX_VNNI instruction to guest
4ed41f8 backends/tpm: Replace qemu_mutex_lock calls with QEMU_LOCK_GUARD
525090e hw/mem/nvdimm: Use Kconfig 'imply' instead of 'depends on'
5451f01 configure: simplify assignment to GIT_SUBMODULES
fd5bbbe configure: check for submodules if --with-git-submodules=ignore
4a71809 configure: Only clone softfloat-3 repositories if TCG is enabled

=== OUTPUT BEGIN ===
1/20 Checking commit 4a7180969269 (configure: Only clone softfloat-3 repositories if TCG is enabled)
ERROR: Doubly-encoded UTF-8
#7: 
    Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>

total: 1 errors, 0 warnings, 19 lines checked

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

2/20 Checking commit fd5bbbe5111e (configure: check for submodules if --with-git-submodules=ignore)
3/20 Checking commit 5451f0196365 (configure: simplify assignment to GIT_SUBMODULES)
4/20 Checking commit 525090e9e978 (hw/mem/nvdimm: Use Kconfig 'imply' instead of 'depends on')
ERROR: Doubly-encoded UTF-8
#16: 
    Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>

total: 1 errors, 0 warnings, 30 lines checked

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

5/20 Checking commit 4ed41f88b595 (backends/tpm: Replace qemu_mutex_lock calls with QEMU_LOCK_GUARD)
6/20 Checking commit 91a9f7fa5700 (i386/cpu: Expose AVX_VNNI instruction to guest)
7/20 Checking commit 80d034a230fb (meson: bump submodule to 0.57.2)
8/20 Checking commit b21d58bf2249 (object: add more commands to preconfig mode)
9/20 Checking commit d44087e84505 (qtest: add a QOM object for qtest)
10/20 Checking commit 415d0d0f4894 (KVM: do not allow setting properties at runtime)
ERROR: line over 90 characters
#33: FILE: accel/kvm/kvm-all.c:3115:
+        error_setg(errp, "Cannot set properties after the accelerator has been initialized");

ERROR: line over 90 characters
#45: FILE: accel/kvm/kvm-all.c:3134:
+        error_setg(errp, "Cannot set properties after the accelerator has been initialized");

total: 2 errors, 0 warnings, 37 lines checked

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

11/20 Checking commit 3549fdff41f9 (memory: Introduce log_sync_global() to memory listener)
12/20 Checking commit a01350856d61 (KVM: Use a big lock to replace per-kml slots_lock)
13/20 Checking commit 8160151d18d7 (KVM: Create the KVMSlot dirty bitmap on flag changes)
14/20 Checking commit 7b2937fa36c2 (KVM: Provide helper to get kvm dirty log)
15/20 Checking commit 7d5d87209ba9 (KVM: Provide helper to sync dirty bitmap from slot to ramblock)
16/20 Checking commit 568e8ffbabee (KVM: Simplify dirty log sync in kvm_set_phys_mem)
17/20 Checking commit f32509862618 (KVM: Cache kvm slot dirty bitmap size)
18/20 Checking commit d672dde943f7 (KVM: Add dirty-ring-size property)
ERROR: line over 90 characters
#59: FILE: accel/kvm/kvm-all.c:3206:
+        error_setg(errp, "Cannot set properties after the accelerator has been initialized");

total: 1 errors, 0 warnings, 94 lines checked

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

19/20 Checking commit 520cdc91f820 (KVM: Disable manual dirty log when dirty ring enabled)
20/20 Checking commit 77eb22ac14f1 (KVM: Dirty ring support)
WARNING: line over 80 characters
#451: FILE: accel/kvm/kvm-all.c:2466:
+                             "Suggested mininum value is 1024.", strerror(-ret));

total: 0 errors, 1 warnings, 498 lines checked

Patch 20/20 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
http://patchew.org/logs/20210517112001.2564006-1-pbonzini@redhat.com/testing.checkpatch/?type=message.
---
Email generated automatically by Patchew [https://patchew.org/].
Please send your feedback to patchew-devel@redhat.com

  parent reply	other threads:[~2021-05-17 12:35 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-17 11:19 [PULL 00/20] Misc patches for 2020-05-17 Paolo Bonzini
2021-05-17 11:19 ` [PULL 01/20] configure: Only clone softfloat-3 repositories if TCG is enabled Paolo Bonzini
2021-05-17 11:19 ` [PULL 02/20] configure: check for submodules if --with-git-submodules=ignore Paolo Bonzini
2021-05-17 11:19 ` [PULL 03/20] configure: simplify assignment to GIT_SUBMODULES Paolo Bonzini
2021-05-17 11:19 ` [PULL 04/20] hw/mem/nvdimm: Use Kconfig 'imply' instead of 'depends on' Paolo Bonzini
2021-05-17 11:19 ` [PULL 05/20] backends/tpm: Replace qemu_mutex_lock calls with QEMU_LOCK_GUARD Paolo Bonzini
2021-05-17 11:19 ` [PULL 06/20] i386/cpu: Expose AVX_VNNI instruction to guest Paolo Bonzini
2021-05-17 11:19 ` [PULL 07/20] meson: bump submodule to 0.57.2 Paolo Bonzini
2021-05-17 11:19 ` [PULL 08/20] object: add more commands to preconfig mode Paolo Bonzini
2021-05-17 11:19 ` [PULL 09/20] qtest: add a QOM object for qtest Paolo Bonzini
2021-05-17 11:19 ` [PULL 10/20] KVM: do not allow setting properties at runtime Paolo Bonzini
2021-05-17 11:19 ` [PULL 11/20] memory: Introduce log_sync_global() to memory listener Paolo Bonzini
2021-05-17 11:19 ` [PULL 12/20] KVM: Use a big lock to replace per-kml slots_lock Paolo Bonzini
2021-05-17 11:19 ` [PULL 13/20] KVM: Create the KVMSlot dirty bitmap on flag changes Paolo Bonzini
2021-05-17 11:19 ` [PULL 14/20] KVM: Provide helper to get kvm dirty log Paolo Bonzini
2021-05-17 11:19 ` [PULL 15/20] KVM: Provide helper to sync dirty bitmap from slot to ramblock Paolo Bonzini
2021-05-17 11:19 ` [PULL 16/20] KVM: Simplify dirty log sync in kvm_set_phys_mem Paolo Bonzini
2021-05-17 11:19 ` [PULL 17/20] KVM: Cache kvm slot dirty bitmap size Paolo Bonzini
2021-05-17 11:19 ` [PULL 18/20] KVM: Add dirty-ring-size property Paolo Bonzini
2021-05-17 11:20 ` [PULL 19/20] KVM: Disable manual dirty log when dirty ring enabled Paolo Bonzini
2021-05-17 11:20 ` [PULL 20/20] KVM: Dirty ring support Paolo Bonzini
2021-05-17 12:15 ` no-reply [this message]
2021-05-18 15:16 ` [PULL 00/20] Misc patches for 2020-05-17 Peter Maydell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=162125374920.9151.7821393142017820686@d887ba82c771 \
    --to=no-reply@patchew.org \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.