Hi, This series seems to have some coding style problems. See output below for more information:
Type: series Message-id: 20180104160523.22995-1-marcandre.lur...@redhat.com Subject: [Qemu-devel] [PATCH v3 00/18] Various build-sys and sanitizer related fixes === 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 t [tag update] patchew/20180104160523.22995-1-marcandre.lur...@redhat.com -> patchew/20180104160523.22995-1-marcandre.lur...@redhat.com * [new tag] patchew/20180104163652.65450-1-mar...@redhat.com -> patchew/20180104163652.65450-1-mar...@redhat.com Switched to a new branch 'test' 96cafa2be4 disas/s390: fix global-buffer-overflow 4245ebd52a mips: fix potential fopen(NULL,...) 3bacf5b2ac tests: fix coroutine leak in /basic/entered d40798477c ucontext: annotate coroutine stack for ASAN 2bd3966455 tests: fix qmp-test leak 919691db5a qemu-config: fix leak in query-command-line-options 736e215840 crypto: fix stack-buffer-overflow error 55ff41af25 tests: fix migration-test leak e80f140372 readline: add a free function 645e97ba93 vl: fix direct firmware directories leak 6c79d4befa tests: fix check-qobject leak ff1f9a1136 build-sys: add some sanitizers when --enable-debug if possible 2c8797bcad tests/docker: add test-debug 448f1c05e1 tests/docker: add some sanitizers to fedora dockerfile 7a1cf8e3a8 build-sys: compile with -Og or -O1 when --enable-debug 5085640b16 build-sys: add a rule to print a variable 2436eb64e1 build-sys: silence make by default or V=0 34bc0f9b4b build-sys: fix qemu-ga -pthread linking === OUTPUT BEGIN === Checking PATCH 1/18: build-sys: fix qemu-ga -pthread linking... Checking PATCH 2/18: build-sys: silence make by default or V=0... Checking PATCH 3/18: build-sys: add a rule to print a variable... Checking PATCH 4/18: build-sys: compile with -Og or -O1 when --enable-debug... Checking PATCH 5/18: tests/docker: add some sanitizers to fedora dockerfile... Checking PATCH 6/18: tests/docker: add test-debug... Checking PATCH 7/18: build-sys: add some sanitizers when --enable-debug if possible... Checking PATCH 8/18: tests: fix check-qobject leak... Checking PATCH 9/18: vl: fix direct firmware directories leak... Checking PATCH 10/18: readline: add a free function... Checking PATCH 11/18: tests: fix migration-test leak... Checking PATCH 12/18: crypto: fix stack-buffer-overflow error... Checking PATCH 13/18: qemu-config: fix leak in query-command-line-options... Checking PATCH 14/18: tests: fix qmp-test leak... Checking PATCH 15/18: ucontext: annotate coroutine stack for ASAN... WARNING: architecture specific defines should be avoided #29: FILE: include/qemu/compiler.h:114: +#ifndef __has_feature WARNING: architecture specific defines should be avoided #42: FILE: util/coroutine-ucontext.c:34: +#if defined(__SANITIZE_ADDRESS__) || __has_feature(address_sanitizer) total: 0 errors, 2 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 16/18: tests: fix coroutine leak in /basic/entered... Checking PATCH 17/18: mips: fix potential fopen(NULL,...)... Checking PATCH 18/18: disas/s390: fix global-buffer-overflow... ERROR: braces {} are necessary even for single statement blocks #83: FILE: disas/s390.c:216: + for (i = s390_num_opcodes; i--; ) + opc_index[s390_opcodes[i].opcode[0]] = i; total: 1 errors, 0 warnings, 24 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. === 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