From: no-reply@patchew.org
To: pbonzini@redhat.com
Cc: famz@redhat.com, qemu-devel@nongnu.org, serge.fdrv@gmail.com,
alex.bennee@linaro.org, sergey.fedorov@linaro.org
Subject: Re: [Qemu-devel] [PATCH v7 00/16] cpu-exec: Safe work in quiescent state
Date: Mon, 19 Sep 2016 06:24:04 -0700 (PDT) [thread overview]
Message-ID: <20160919132359.19908.67918@ex-std-node742.prod.rhcloud.com> (raw)
In-Reply-To: <1474289459-15242-1-git-send-email-pbonzini@redhat.com>
Hi,
Your series seems to have some coding style problems. See output below for
more information:
Type: series
Subject: [Qemu-devel] [PATCH v7 00/16] cpu-exec: Safe work in quiescent state
Message-id: 1474289459-15242-1-git-send-email-pbonzini@redhat.com
=== TEST SCRIPT BEGIN ===
#!/bin/bash
BASE=base
n=1
total=$(git log --oneline $BASE.. | wc -l)
failed=0
# Useful git options
git config --local diff.renamelimit 0
git config --local diff.renames True
commits="$(git log --format=%H --reverse $BASE..)"
for c in $commits; do
echo "Checking PATCH $n/$total: $(git show --no-patch --format=%s $c)..."
if ! git show $c --format=email | ./scripts/checkpatch.pl --mailback -; then
failed=1
echo
fi
n=$((n+1))
done
exit $failed
=== TEST SCRIPT END ===
Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384
From https://github.com/patchew-project/qemu
* [new tag] patchew/1474289459-15242-1-git-send-email-pbonzini@redhat.com -> patchew/1474289459-15242-1-git-send-email-pbonzini@redhat.com
Switched to a new branch 'test'
8904bcd cpus-common: lock-free fast path for cpu_exec_start/end
70b89fc tcg: Make tb_flush() thread safe
b43cc64 cpus-common: Introduce async_safe_run_on_cpu()
0beae79 cpus-common: simplify locking for start_exclusive/end_exclusive
7781694 cpus-common: remove redundant call to exclusive_idle()
e94de30 cpus-common: always defer async_run_on_cpu work items
cfec378 docs: include formal model for TCG exclusive sections
35a31d5 cpus-common: move exclusive work infrastructure from linux-user
4cf022a cpus-common: fix uninitialized variable use in run_on_cpu
fe02426 cpus-common: move CPU work item management to common code
a8028c5 cpus-common: move CPU list management to common code
c1cd116 linux-user: Add qemu_cpu_is_self() and qemu_cpu_kick()
89c728d linux-user: Use QemuMutex and QemuCond
4e0e46c cpus: Rename flush_queued_work()
6dfa694 cpus: Move common code out of {async_, }run_on_cpu()
7959ed8 cpus: pass CPUState to run_on_cpu helpers
=== OUTPUT BEGIN ===
Checking PATCH 1/16: cpus: pass CPUState to run_on_cpu helpers...
Checking PATCH 2/16: cpus: Move common code out of {async_, }run_on_cpu()...
Checking PATCH 3/16: cpus: Rename flush_queued_work()...
Checking PATCH 4/16: linux-user: Use QemuMutex and QemuCond...
Checking PATCH 5/16: linux-user: Add qemu_cpu_is_self() and qemu_cpu_kick()...
Checking PATCH 6/16: cpus-common: move CPU list management to common code...
Checking PATCH 7/16: cpus-common: move CPU work item management to common code...
Checking PATCH 8/16: cpus-common: fix uninitialized variable use in run_on_cpu...
Checking PATCH 9/16: cpus-common: move exclusive work infrastructure from linux-user...
Checking PATCH 10/16: docs: include formal model for TCG exclusive sections...
Checking PATCH 11/16: cpus-common: always defer async_run_on_cpu work items...
Checking PATCH 12/16: cpus-common: remove redundant call to exclusive_idle()...
Checking PATCH 13/16: cpus-common: simplify locking for start_exclusive/end_exclusive...
Checking PATCH 14/16: cpus-common: Introduce async_safe_run_on_cpu()...
ERROR: code indent should never use tabs
#68: FILE: cpus-common.c:265:
+^I /* Running work items outside the BQL avoids the following deadlock:$
ERROR: code indent should never use tabs
#69: FILE: cpus-common.c:266:
+^I * 1) start_exclusive() is called with the BQL taken while another$
total: 2 errors, 0 warnings, 83 lines checked
Your patch has style problems, please review. If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
Checking PATCH 15/16: tcg: Make tb_flush() thread safe...
Checking PATCH 16/16: cpus-common: lock-free fast path for cpu_exec_start/end...
=== OUTPUT END ===
Test command exited with code: 1
---
Email generated automatically by Patchew [http://patchew.org/].
Please send your feedback to patchew-devel@freelists.org
next prev parent reply other threads:[~2016-09-19 13:24 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-19 12:50 [Qemu-devel] [PATCH v7 00/16] cpu-exec: Safe work in quiescent state Paolo Bonzini
2016-09-19 12:50 ` [Qemu-devel] [PATCH 01/16] cpus: pass CPUState to run_on_cpu helpers Paolo Bonzini
2016-09-19 12:50 ` [Qemu-devel] [PATCH 02/16] cpus: Move common code out of {async_, }run_on_cpu() Paolo Bonzini
2016-09-19 12:50 ` [Qemu-devel] [PATCH 03/16] cpus: Rename flush_queued_work() Paolo Bonzini
2016-09-19 12:50 ` [Qemu-devel] [PATCH 04/16] linux-user: Use QemuMutex and QemuCond Paolo Bonzini
2016-09-21 16:26 ` Emilio G. Cota
2016-09-21 16:32 ` Paolo Bonzini
2016-09-19 12:50 ` [Qemu-devel] [PATCH 05/16] linux-user: Add qemu_cpu_is_self() and qemu_cpu_kick() Paolo Bonzini
2016-09-19 12:50 ` [Qemu-devel] [PATCH 06/16] cpus-common: move CPU list management to common code Paolo Bonzini
2016-09-19 12:50 ` [Qemu-devel] [PATCH 07/16] cpus-common: move CPU work item " Paolo Bonzini
2016-09-21 17:03 ` Emilio G. Cota
2016-09-21 17:15 ` Paolo Bonzini
2016-09-19 12:50 ` [Qemu-devel] [PATCH 08/16] cpus-common: fix uninitialized variable use in run_on_cpu Paolo Bonzini
2016-09-19 12:50 ` [Qemu-devel] [PATCH 09/16] cpus-common: move exclusive work infrastructure from linux-user Paolo Bonzini
2016-09-19 12:50 ` [Qemu-devel] [PATCH 10/16] docs: include formal model for TCG exclusive sections Paolo Bonzini
2016-09-19 12:50 ` [Qemu-devel] [PATCH 11/16] cpus-common: always defer async_run_on_cpu work items Paolo Bonzini
2016-09-19 12:50 ` [Qemu-devel] [PATCH 12/16] cpus-common: remove redundant call to exclusive_idle() Paolo Bonzini
2016-09-19 12:50 ` [Qemu-devel] [PATCH 13/16] cpus-common: simplify locking for start_exclusive/end_exclusive Paolo Bonzini
2016-09-21 16:15 ` Emilio G. Cota
2016-09-21 16:20 ` Paolo Bonzini
2016-09-19 12:50 ` [Qemu-devel] [PATCH 14/16] cpus-common: Introduce async_safe_run_on_cpu() Paolo Bonzini
2016-09-21 16:08 ` Emilio G. Cota
2016-09-21 16:20 ` Paolo Bonzini
2016-09-19 12:50 ` [Qemu-devel] [PATCH 15/16] tcg: Make tb_flush() thread safe Paolo Bonzini
2016-09-21 16:05 ` Emilio G. Cota
2016-09-21 16:19 ` Paolo Bonzini
2016-09-21 17:37 ` Emilio G. Cota
2016-09-21 18:22 ` Paolo Bonzini
2016-09-19 12:50 ` [Qemu-devel] [PATCH 16/16] cpus-common: lock-free fast path for cpu_exec_start/end Paolo Bonzini
2016-09-21 17:24 ` Emilio G. Cota
2016-09-21 18:19 ` Paolo Bonzini
2016-09-21 22:14 ` Emilio G. Cota
2016-09-21 22:27 ` Emilio G. Cota
2016-09-22 8:46 ` Paolo Bonzini
2016-09-19 13:24 ` no-reply [this message]
2016-09-19 16:04 ` [Qemu-devel] [PATCH v7 00/16] cpu-exec: Safe work in quiescent state no-reply
2016-09-21 17:29 ` Emilio G. Cota
2016-09-21 18:20 ` Paolo Bonzini
-- strict thread matches above, loose matches on Subject: below --
2016-09-12 11:12 Paolo Bonzini
2016-09-14 17:16 ` Richard Henderson
2016-09-14 18:40 ` Paolo Bonzini
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=20160919132359.19908.67918@ex-std-node742.prod.rhcloud.com \
--to=no-reply@patchew.org \
--cc=alex.bennee@linaro.org \
--cc=famz@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=serge.fdrv@gmail.com \
--cc=sergey.fedorov@linaro.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 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).