From: no-reply@patchew.org
To: rth@twiddle.net
Cc: famz@redhat.com, qemu-devel@nongnu.org,
mark.cave-ayland@ilande.co.uk, atar4qemu@gmail.com
Subject: Re: [Qemu-devel] [PATCH v2 00/15] target-sparc improvements
Date: Tue, 18 Oct 2016 20:09:40 -0700 (PDT) [thread overview]
Message-ID: <20161019030936.502017.4298@ex-std-node742.prod.rhcloud.com> (raw)
In-Reply-To: <1476844470-29763-1-git-send-email-rth@twiddle.net>
Hi,
Your series seems to have some coding style problems. See output below for
more information:
Type: series
Message-id: 1476844470-29763-1-git-send-email-rth@twiddle.net
Subject: [Qemu-devel] [PATCH v2 00/15] target-sparc improvements
=== 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
Switched to a new branch 'test'
27c5285 target-sparc: Use tcg_gen_atomic_cmpxchg_tl
2069f01 target-sparc: Use tcg_gen_atomic_xchg_tl
f53a73a target-sparc: Remove MMU_MODE*_SUFFIX
549a774 target-sparc: Allow 4-byte alignment on fp mem ops
d6ae826 target-sparc: Implement ldqf and stqf inline
de30bb1 target-sparc: Remove asi helper code handled inline
ea72a1b target-sparc: Implement BCOPY/BFILL inline
bc0d872 target-sparc: Implement cas_asi/casx_asi inline
1a9423b target-sparc: Implement ldstub_asi inline
b1f9907 target-sparc: Implement swap_asi inline
6d810e8 target-sparc: Handle more twinx asis
561899b target-sparc: Use MMU_PHYS_IDX for bypass asis
f6c907c target-sparc: Add MMU_PHYS_IDX
c3cc123 target-sparc: Introduce cpu_raise_exception_ra
3d4d48a target-sparc: Use overalignment flags for twinx and block asis
=== OUTPUT BEGIN ===
Checking PATCH 1/15: target-sparc: Use overalignment flags for twinx and block asis...
Checking PATCH 2/15: target-sparc: Introduce cpu_raise_exception_ra...
Checking PATCH 3/15: target-sparc: Add MMU_PHYS_IDX...
Checking PATCH 4/15: target-sparc: Use MMU_PHYS_IDX for bypass asis...
Checking PATCH 5/15: target-sparc: Handle more twinx asis...
Checking PATCH 6/15: target-sparc: Implement swap_asi inline...
Checking PATCH 7/15: target-sparc: Implement ldstub_asi inline...
Checking PATCH 8/15: target-sparc: Implement cas_asi/casx_asi inline...
Checking PATCH 9/15: target-sparc: Implement BCOPY/BFILL inline...
Checking PATCH 10/15: target-sparc: Remove asi helper code handled inline...
Checking PATCH 11/15: target-sparc: Implement ldqf and stqf inline...
Checking PATCH 12/15: target-sparc: Allow 4-byte alignment on fp mem ops...
ERROR: spaces required around that '/' (ctx:VxV)
#47: FILE: target-sparc/translate.c:2484:
+ tcg_gen_qemu_ld_i64(cpu_fpr[rd/2+1], addr, da.mem_idx,
^
ERROR: spaces required around that '+' (ctx:VxV)
#47: FILE: target-sparc/translate.c:2484:
+ tcg_gen_qemu_ld_i64(cpu_fpr[rd/2+1], addr, da.mem_idx,
^
total: 2 errors, 0 warnings, 175 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 13/15: target-sparc: Remove MMU_MODE*_SUFFIX...
Checking PATCH 14/15: target-sparc: Use tcg_gen_atomic_xchg_tl...
Checking PATCH 15/15: target-sparc: Use tcg_gen_atomic_cmpxchg_tl...
=== 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-10-19 3:10 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-19 2:34 [Qemu-devel] [PATCH v2 00/15] target-sparc improvements Richard Henderson
2016-10-19 2:34 ` [Qemu-devel] [PATCH v2 01/15] target-sparc: Use overalignment flags for twinx and block asis Richard Henderson
2016-10-19 2:34 ` [Qemu-devel] [PATCH v2 02/15] target-sparc: Introduce cpu_raise_exception_ra Richard Henderson
2016-10-19 2:34 ` [Qemu-devel] [PATCH v2 03/15] target-sparc: Add MMU_PHYS_IDX Richard Henderson
2016-10-19 2:34 ` [Qemu-devel] [PATCH v2 04/15] target-sparc: Use MMU_PHYS_IDX for bypass asis Richard Henderson
2016-10-19 2:34 ` [Qemu-devel] [PATCH v2 05/15] target-sparc: Handle more twinx asis Richard Henderson
2016-10-19 2:34 ` [Qemu-devel] [PATCH v2 06/15] target-sparc: Implement swap_asi inline Richard Henderson
2016-10-19 2:34 ` [Qemu-devel] [PATCH v2 07/15] target-sparc: Implement ldstub_asi inline Richard Henderson
2016-10-19 2:34 ` [Qemu-devel] [PATCH v2 08/15] target-sparc: Implement cas_asi/casx_asi inline Richard Henderson
2016-10-19 2:34 ` [Qemu-devel] [PATCH v2 09/15] target-sparc: Implement BCOPY/BFILL inline Richard Henderson
2016-10-19 2:34 ` [Qemu-devel] [PATCH v2 10/15] target-sparc: Remove asi helper code handled inline Richard Henderson
2016-10-19 2:34 ` [Qemu-devel] [PATCH v2 11/15] target-sparc: Implement ldqf and stqf inline Richard Henderson
2016-10-19 2:34 ` [Qemu-devel] [PATCH v2 12/15] target-sparc: Allow 4-byte alignment on fp mem ops Richard Henderson
2016-10-19 2:34 ` [Qemu-devel] [PATCH v2 13/15] target-sparc: Remove MMU_MODE*_SUFFIX Richard Henderson
2016-10-19 2:34 ` [Qemu-devel] [PATCH v2 14/15] target-sparc: Use tcg_gen_atomic_xchg_tl Richard Henderson
2016-10-19 2:34 ` [Qemu-devel] [PATCH v2 15/15] target-sparc: Use tcg_gen_atomic_cmpxchg_tl Richard Henderson
2016-10-19 3:09 ` no-reply [this message]
2016-10-19 4:37 ` [Qemu-devel] [PATCH v2 00/15] target-sparc improvements Mark Cave-Ayland
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=20161019030936.502017.4298@ex-std-node742.prod.rhcloud.com \
--to=no-reply@patchew.org \
--cc=atar4qemu@gmail.com \
--cc=famz@redhat.com \
--cc=mark.cave-ayland@ilande.co.uk \
--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 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.