Hi, This series seems to have some coding style problems. See output below for more information:
Subject: [Qemu-devel] [PULL 00/51] tcg queued patches Type: series Message-id: 20171025093535.10175-1-richard.hender...@linaro.org === TEST SCRIPT BEGIN === #!/bin/bash BASE=base n=1 total=$(git log --oneline $BASE.. | wc -l) failed=0 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/20171025093535.10175-1-richard.hender...@linaro.org -> patchew/20171025093535.10175-1-richard.hender...@linaro.org Switched to a new branch 'test' 77626a041c translate-all: exit from tb_phys_invalidate if qht_remove fails 4a90f4ebe9 tcg: Initialize cpu_env generically 2152c41bd3 tcg: enable multiple TCG contexts in softmmu 58ccac2561 tcg: introduce regions to split code_gen_buffer 9127fe5b64 translate-all: use qemu_protect_rwx/none helpers 86abfd9e92 osdep: introduce qemu_mprotect_rwx/none b98ae7360f tcg: allocate optimizer temps with tcg_malloc 356db0bab8 tcg: distribute profiling counters across TCGContext's 8b52922c45 tcg: introduce **tcg_ctxs to keep track of all TCGContext's 1f81eecd3a gen-icount: fold exitreq_label into TCGContext 59e4a38c26 tcg: define tcg_init_ctx and make tcg_ctx a pointer 3103c47aaf tcg: take tb_ctx out of TCGContext 0bf9f60518 translate-all: report correct avg host TB size 3c88306ec2 exec-all: rename tb_free to tb_remove 42857d44ba translate-all: use a binary search tree to track TBs in TBContext 65eedf9e8d tcg: Remove CF_IGNORE_ICOUNT d4c9947316 tcg: Add CF_LAST_IO + CF_USE_ICOUNT to CF_HASH_MASK f823bdd39d cpu-exec: lookup/generate TB outside exclusive region during step_atomic 10287570c7 tcg: check CF_PARALLEL instead of parallel_cpus 0e5ad6e79e target/sparc: check CF_PARALLEL instead of parallel_cpus 56024229c8 target/sh4: check CF_PARALLEL instead of parallel_cpus 1de3863b5b target/s390x: check CF_PARALLEL instead of parallel_cpus 40235bc3c1 target/m68k: check CF_PARALLEL instead of parallel_cpus 07ae79e853 target/i386: check CF_PARALLEL instead of parallel_cpus af968dcdfa target/hppa: check CF_PARALLEL instead of parallel_cpus 8ae9c37655 target/arm: check CF_PARALLEL instead of parallel_cpus c6903f61b8 tcg: convert tb->cflags reads to tb_cflags(tb) 857e9bace7 tcg: Include CF_COUNT_MASK in CF_HASH_MASK 664c0a988f tcg: Add CPUState cflags_next_tb d00a1708d4 tcg: define CF_PARALLEL and use it for TB hashing along with CF_COUNT_MASK ab6636facc tcg: Use offsets not indices for TCGv_* 158a9ef727 qom: Introduce CPUClass.tcg_initialize 2c3836bc80 tcg: Remove TCGV_EQUAL* 37ba8ce8e9 tcg: Remove GET_TCGV_* and MAKE_TCGV_* ac1bcac6c9 tcg: Introduce temp_tcgv_{i32,i64,ptr} 7a2668fa18 tcg: Introduce tcgv_{i32, i64, ptr}_{arg, temp} 50712fd38b tcg: Push tcg_ctx into tcg_gen_callN 9e01153d05 tcg: Push tcg_ctx into generator functions 8496a5236b tcg: Use per-temp state data in optimize 818b8ab51f tcg: Remove unused TCG_CALL_DUMMY_TCGV 72bbb04702 tcg: Change temp_allocate_frame arg to TCGTemp 7d35604262 tcg: Avoid loops against variable bounds fa2959c5ca tcg: Use per-temp state data in liveness 988d1b1378 tcg: Introduce temp_arg, export temp_idx d275e8c996 tcg: Return NULL temp for TCG_CALL_DUMMY_ARG 9a6fd94cb4 tcg: Add temp_global bit to TCGTemp 21db94e37e tcg: Introduce arg_temp a1d9d381b7 tcg: Propagate TCGOp down to allocators 37e9e9eb62 tcg: Propagate args to op->args in tcg.c a34134aa11 tcg: Propagate args to op->args in optimizer c912ac427e tcg: Merge opcode arguments into TCGOp === OUTPUT BEGIN === Checking PATCH 1/51: tcg: Merge opcode arguments into TCGOp... ERROR: spaces prohibited around that ':' (ctx:WxW) #482: FILE: tcg/tcg.h:613: + unsigned calli : 4; /* 12 */ ^ ERROR: spaces prohibited around that ':' (ctx:WxW) #483: FILE: tcg/tcg.h:614: + unsigned callo : 2; /* 14 */ ^ ERROR: space prohibited before that ':' (ctx:WxW) #484: FILE: tcg/tcg.h:615: + unsigned : 2; /* 16 */ ^ ERROR: spaces prohibited around that ':' (ctx:WxW) #489: FILE: tcg/tcg.h:618: + unsigned prev : 16; /* 32 */ ^ ERROR: spaces prohibited around that ':' (ctx:WxW) #490: FILE: tcg/tcg.h:619: + unsigned next : 16; /* 48 */ ^ total: 5 errors, 0 warnings, 485 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/51: tcg: Propagate args to op->args in optimizer... ERROR: spaces required around that '-' (ctx:VxV) #649: FILE: tcg/optimize.c:1165: + tcg_opt_gen_mov(s, op, op->args[0], op->args[4-tmp]); ^ total: 1 errors, 0 warnings, 912 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 3/51: tcg: Propagate args to op->args in tcg.c... Checking PATCH 4/51: tcg: Propagate TCGOp down to allocators... Checking PATCH 5/51: tcg: Introduce arg_temp... Checking PATCH 6/51: tcg: Add temp_global bit to TCGTemp... Checking PATCH 7/51: tcg: Return NULL temp for TCG_CALL_DUMMY_ARG... Checking PATCH 8/51: tcg: Introduce temp_arg, export temp_idx... Checking PATCH 9/51: tcg: Use per-temp state data in liveness... WARNING: line over 80 characters #187: FILE: tcg/tcg.c:1808: + } else if (arg_temp(op->args[0])->state == TS_DEAD && have_opc_new2) { total: 0 errors, 1 warnings, 441 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 10/51: tcg: Avoid loops against variable bounds... Checking PATCH 11/51: tcg: Change temp_allocate_frame arg to TCGTemp... Checking PATCH 12/51: tcg: Remove unused TCG_CALL_DUMMY_TCGV... Checking PATCH 13/51: tcg: Use per-temp state data in optimize... Checking PATCH 14/51: tcg: Push tcg_ctx into generator functions... Checking PATCH 15/51: tcg: Push tcg_ctx into tcg_gen_callN... Checking PATCH 16/51: tcg: Introduce tcgv_{i32, i64, ptr}_{arg, temp}... Checking PATCH 17/51: tcg: Introduce temp_tcgv_{i32,i64,ptr}... Checking PATCH 18/51: tcg: Remove GET_TCGV_* and MAKE_TCGV_*... Checking PATCH 19/51: tcg: Remove TCGV_EQUAL*... Checking PATCH 20/51: qom: Introduce CPUClass.tcg_initialize... Checking PATCH 21/51: tcg: Use offsets not indices for TCGv_*... Checking PATCH 22/51: tcg: define CF_PARALLEL and use it for TB hashing along with CF_COUNT_MASK... Checking PATCH 23/51: tcg: Add CPUState cflags_next_tb... Checking PATCH 24/51: tcg: Include CF_COUNT_MASK in CF_HASH_MASK... Checking PATCH 25/51: tcg: convert tb->cflags reads to tb_cflags(tb)... ERROR: return is not a function, parentheses are not required #103: FILE: target/alpha/translate.c:458: + return ((tb_cflags(ctx->base.tb) & CF_LAST_IO) WARNING: line over 80 characters #219: FILE: target/hppa/translate.c:472: + if ((tb_cflags(ctx->base.tb) & CF_LAST_IO) || ctx->base.singlestep_enabled) { total: 1 errors, 1 warnings, 924 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 26/51: target/arm: check CF_PARALLEL instead of parallel_cpus... Checking PATCH 27/51: target/hppa: check CF_PARALLEL instead of parallel_cpus... Checking PATCH 28/51: target/i386: check CF_PARALLEL instead of parallel_cpus... WARNING: line over 80 characters #23: FILE: target/i386/translate.c:5310: + if ((s->prefix & PREFIX_LOCK) && (tb_cflags(s->base.tb) & CF_PARALLEL)) { WARNING: line over 80 characters #32: FILE: target/i386/translate.c:5321: + if ((s->prefix & PREFIX_LOCK) && (tb_cflags(s->base.tb) & CF_PARALLEL)) { total: 0 errors, 2 warnings, 16 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 29/51: target/m68k: check CF_PARALLEL instead of parallel_cpus... Checking PATCH 30/51: target/s390x: check CF_PARALLEL instead of parallel_cpus... Checking PATCH 31/51: target/sh4: check CF_PARALLEL instead of parallel_cpus... Checking PATCH 32/51: target/sparc: check CF_PARALLEL instead of parallel_cpus... Checking PATCH 33/51: tcg: check CF_PARALLEL instead of parallel_cpus... Checking PATCH 34/51: cpu-exec: lookup/generate TB outside exclusive region during step_atomic... Checking PATCH 35/51: tcg: Add CF_LAST_IO + CF_USE_ICOUNT to CF_HASH_MASK... Checking PATCH 36/51: tcg: Remove CF_IGNORE_ICOUNT... Checking PATCH 37/51: translate-all: use a binary search tree to track TBs in TBContext... Checking PATCH 38/51: exec-all: rename tb_free to tb_remove... Checking PATCH 39/51: translate-all: report correct avg host TB size... Checking PATCH 40/51: tcg: take tb_ctx out of TCGContext... Checking PATCH 41/51: tcg: define tcg_init_ctx and make tcg_ctx a pointer... Checking PATCH 42/51: gen-icount: fold exitreq_label into TCGContext... Checking PATCH 43/51: tcg: introduce **tcg_ctxs to keep track of all TCGContext's... Checking PATCH 44/51: tcg: distribute profiling counters across TCGContext's... Checking PATCH 45/51: tcg: allocate optimizer temps with tcg_malloc... Checking PATCH 46/51: osdep: introduce qemu_mprotect_rwx/none... Checking PATCH 47/51: translate-all: use qemu_protect_rwx/none helpers... Checking PATCH 48/51: tcg: introduce regions to split code_gen_buffer... Checking PATCH 49/51: tcg: enable multiple TCG contexts in softmmu... Checking PATCH 50/51: tcg: Initialize cpu_env generically... ERROR: do not initialise globals to 0 or NULL #645: FILE: tcg/tcg.c:124: +TCGv_env cpu_env = 0; total: 1 errors, 0 warnings, 567 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 51/51: translate-all: exit from tb_phys_invalidate if qht_remove fails... === 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