Hi, Your series seems to have some coding style problems. See output below for more information:
Type: series Subject: [Qemu-devel] [patch v3 00/18] tcg field extract primitives Message-id: 1479326625-10682-1-git-send-email-...@twiddle.net === 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 log -n 1 --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/1479326625-10682-1-git-send-email-...@twiddle.net -> patchew/1479326625-10682-1-git-send-email-...@twiddle.net * [new tag] patchew/1479326850-8369-1-git-send-email-jos...@linux.vnet.ibm.com -> patchew/1479326850-8369-1-git-send-email-jos...@linux.vnet.ibm.com * [new tag] patchew/1479327452-16096-1-git-send-email-stefa...@redhat.com -> patchew/1479327452-16096-1-git-send-email-stefa...@redhat.com Switched to a new branch 'test' 5f8de8d target-s390x: Use the new deposit and extract ops 5d887cd target-ppc: Use the new deposit and extract ops 823629a target-mips: Use the new extract op b1df231 target-i386: Use new deposit and extract ops 4fcc1ad target-arm: Use new deposit and extract ops 38aa933 target-alpha: Use deposit and extract ops 935116b tcg/s390: Support deposit into zero bc2ecb0 tcg/s390: Implement field extraction opcodes 34f18c5 tcg/s390: Expose host facilities to tcg-target.h 830033c tcg/ppc: Implement field extraction opcodes 7b20c32 tcg/mips: Implement field extraction opcodes 8e69031 tcg/i386: Implement field extraction opcodes a10576c tcg/arm: Implement field extraction opcodes ce7e87e tcg/arm: Move isa detection to tcg-target.h ae30586 tcg/aarch64: Implement field extraction opcodes fbb4fe9 tcg: Add deposit_z expander 4745d42 tcg: Minor adjustments to deposit expanders e29bca5 tcg: Add field extraction primitives === OUTPUT BEGIN === Checking PATCH 1/18: tcg: Add field extraction primitives... ERROR: spaces required around that ':' (ctx:VxE) #139: FILE: tcg/optimize.c:881: + CASE_OP_32_64(extract): ^ ERROR: spaces required around that ':' (ctx:VxE) #145: FILE: tcg/optimize.c:887: + CASE_OP_32_64(sextract): ^ ERROR: spaces required around that ':' (ctx:VxE) #159: FILE: tcg/optimize.c:1064: + CASE_OP_32_64(extract): ^ ERROR: spaces required around that ':' (ctx:VxE) #167: FILE: tcg/optimize.c:1072: + CASE_OP_32_64(sextract): ^ ERROR: space prohibited after that '&&' (ctx:ExW) #271: FILE: tcg/tcg-op.c:582: + && TCG_TARGET_extract_i32_valid(ofs, len)) { ^ ERROR: space prohibited after that '&&' (ctx:ExW) #334: FILE: tcg/tcg-op.c:645: + && TCG_TARGET_extract_i32_valid(ofs, len)) { ^ ERROR: space prohibited after that '&&' (ctx:ExW) #420: FILE: tcg/tcg-op.c:1799: + && TCG_TARGET_extract_i64_valid(ofs, len)) { ^ ERROR: space prohibited after that '&&' (ctx:ExW) #526: FILE: tcg/tcg-op.c:1905: + && TCG_TARGET_extract_i64_valid(ofs, len)) { ^ total: 8 errors, 0 warnings, 599 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 2/18: tcg: Minor adjustments to deposit expanders... Checking PATCH 3/18: tcg: Add deposit_z expander... ERROR: space prohibited after that '&&' (ctx:ExW) #33: FILE: tcg/tcg-op.c:577: + && TCG_TARGET_deposit_i32_valid(ofs, len)) { ^ ERROR: space prohibited after that '&&' (ctx:ExW) #98: FILE: tcg/tcg-op.c:1836: + && TCG_TARGET_deposit_i64_valid(ofs, len)) { ^ total: 2 errors, 0 warnings, 185 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 4/18: tcg/aarch64: Implement field extraction opcodes... Checking PATCH 5/18: tcg/arm: Move isa detection to tcg-target.h... WARNING: architecture specific defines should be avoided #19: FILE: tcg/arm/tcg-target.h:30: +#ifndef __ARM_ARCH WARNING: architecture specific defines should be avoided #20: FILE: tcg/arm/tcg-target.h:31: +# if defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) \ WARNING: architecture specific defines should be avoided #39: FILE: tcg/arm/tcg-target.h:50: +#if defined(__ARM_ARCH_5T__) \ total: 0 errors, 3 warnings, 107 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 6/18: tcg/arm: Implement field extraction opcodes... Checking PATCH 7/18: tcg/i386: Implement field extraction opcodes... Checking PATCH 8/18: tcg/mips: Implement field extraction opcodes... Checking PATCH 9/18: tcg/ppc: Implement field extraction opcodes... Checking PATCH 10/18: tcg/s390: Expose host facilities to tcg-target.h... Checking PATCH 11/18: tcg/s390: Implement field extraction opcodes... ERROR: spaces required around that ':' (ctx:VxE) #52: FILE: tcg/s390/tcg-target.inc.c:2162: + OP_32_64(extract): ^ total: 1 errors, 0 warnings, 51 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 12/18: tcg/s390: Support deposit into zero... Checking PATCH 13/18: target-alpha: Use deposit and extract ops... Checking PATCH 14/18: target-arm: Use new deposit and extract ops... Checking PATCH 15/18: target-i386: Use new deposit and extract ops... Checking PATCH 16/18: target-mips: Use the new extract op... Checking PATCH 17/18: target-ppc: Use the new deposit and extract ops... Checking PATCH 18/18: target-s390x: Use the new deposit and extract ops... === OUTPUT END === Test command exited with code: 1 --- Email generated automatically by Patchew [http://patchew.org/]. Please send your feedback to patchew-de...@freelists.org