From: no-reply@patchew.org
To: mrolnik@gmail.com
Cc: famz@redhat.com, qemu-devel@nongnu.org, peter.maydell@linaro.org,
rth@twiddle.net
Subject: Re: [Qemu-devel] [PATCH v17 0/9] 8bit AVR cores
Date: Thu, 18 Aug 2016 05:26:09 -0700 (PDT) [thread overview]
Message-ID: <20160818122605.482798.46736@ex-std-node742.prod.rhcloud.com> (raw)
In-Reply-To: <1471522070-77598-1-git-send-email-mrolnik@gmail.com>
Hi,
Your series seems to have some coding style problems. See output below for
more information:
Message-id: 1471522070-77598-1-git-send-email-mrolnik@gmail.com
Subject: [Qemu-devel] [PATCH v17 0/9] 8bit AVR cores
Type: series
=== 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/1471522070-77598-1-git-send-email-mrolnik@gmail.com -> patchew/1471522070-77598-1-git-send-email-mrolnik@gmail.com
Switched to a new branch 'test'
294e7a4 target-avr: adding instruction decoder
3d36738 target-avr: instruction decoder generator
35bf67b target-avr: adding instruction translation
18e3870 target-avr: adding helpers for IN, OUT, SLEEP, WBR & unsupported instructions
3ccde73 target-avr: adding AVR interrupt handling
8786607 target-avr: adding instructions encodings
f48b5f2 target-avr: adding a sample AVR board
5a2840e target-avr: adding AVR CPU features/flavors
4e72990 target-avr: AVR cores support is added.
=== OUTPUT BEGIN ===
Checking PATCH 1/9: target-avr: AVR cores support is added....
Checking PATCH 2/9: target-avr: adding AVR CPU features/flavors...
Checking PATCH 3/9: target-avr: adding a sample AVR board...
Checking PATCH 4/9: target-avr: adding instructions encodings...
Checking PATCH 5/9: target-avr: adding AVR interrupt handling...
Checking PATCH 6/9: target-avr: adding helpers for IN, OUT, SLEEP, WBR & unsupported instructions...
Checking PATCH 7/9: target-avr: adding instruction translation...
Checking PATCH 8/9: target-avr: instruction decoder generator...
ERROR: suspect code indent for conditional statements (4, 4)
#810: FILE: target-avr/cpugen/src/cpugen.cpp:440:
+ if (argc != 2) {
[...]
+ }
total: 1 errors, 0 warnings, 1225 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 9/9: target-avr: adding instruction decoder...
=== 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-08-18 12:26 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-18 12:07 [Qemu-devel] [PATCH v17 0/9] 8bit AVR cores Michael Rolnik
2016-08-18 12:07 ` [Qemu-devel] [PATCH v17 1/9] target-avr: AVR cores support is added Michael Rolnik
2016-08-18 18:13 ` Peter Maydell
2016-08-18 12:07 ` [Qemu-devel] [PATCH v17 2/9] target-avr: adding AVR CPU features/flavors Michael Rolnik
2016-08-18 18:14 ` Peter Maydell
2016-08-18 12:07 ` [Qemu-devel] [PATCH v17 3/9] target-avr: adding a sample AVR board Michael Rolnik
2016-08-18 18:14 ` Peter Maydell
2016-08-18 12:07 ` [Qemu-devel] [PATCH v17 4/9] target-avr: adding instructions encodings Michael Rolnik
2016-08-18 12:07 ` [Qemu-devel] [PATCH v17 5/9] target-avr: adding AVR interrupt handling Michael Rolnik
2016-08-18 18:32 ` Peter Maydell
2016-08-18 12:07 ` [Qemu-devel] [PATCH v17 6/9] target-avr: adding helpers for IN, OUT, SLEEP, WBR & unsupported instructions Michael Rolnik
2016-08-18 18:16 ` Peter Maydell
2016-08-18 12:07 ` [Qemu-devel] [PATCH v17 7/9] target-avr: adding instruction translation Michael Rolnik
2016-08-18 12:07 ` [Qemu-devel] [PATCH v17 8/9] target-avr: instruction decoder generator Michael Rolnik
2016-08-18 12:07 ` [Qemu-devel] [PATCH v17 9/9] target-avr: adding instruction decoder Michael Rolnik
2016-08-18 12:26 ` no-reply [this message]
2016-08-18 18:34 ` [Qemu-devel] [PATCH v17 0/9] 8bit AVR cores Peter Maydell
2016-09-05 10:52 ` Michael Rolnik
2016-09-16 6:45 ` Michael Rolnik
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=20160818122605.482798.46736@ex-std-node742.prod.rhcloud.com \
--to=no-reply@patchew.org \
--cc=famz@redhat.com \
--cc=mrolnik@gmail.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
/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).