Hi, This series seems to have some coding style problems. See output below for more information:
Subject: [Qemu-devel] [PATCH v2 0/7] curl: locking cleanups/fixes, coroutine conversion, remove aio_poll Type: series Message-id: 20170510143205.32013-1-pbonz...@redhat.com === 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 Switched to a new branch 'test' a91e9d4 curl: do not do aio_poll when waiting for a free CURLState 6c92680 curl: convert readv to coroutines 84c046c curl: convert CURLAIOCB to byte values ab431ec curl: split curl_find_state/curl_init_state ba309a5 curl: avoid recursive locking of BDRVCURLState mutex a6b6d90 curl: never invoke callbacks with s->mutex held 6f11502 curl: strengthen assertion in curl_clean_state === OUTPUT BEGIN === Checking PATCH 1/7: curl: strengthen assertion in curl_clean_state... ERROR: spaces required around that '=' (ctx:VxV) #24: FILE: block/curl.c:536: + for (j=0; j<CURL_NUM_ACB; j++) { ^ ERROR: spaces required around that '<' (ctx:VxV) #24: FILE: block/curl.c:536: + for (j=0; j<CURL_NUM_ACB; j++) { ^ total: 2 errors, 0 warnings, 11 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/7: curl: never invoke callbacks with s->mutex held... Checking PATCH 3/7: curl: avoid recursive locking of BDRVCURLState mutex... Checking PATCH 4/7: curl: split curl_find_state/curl_init_state... ERROR: spaces required around that '=' (ctx:VxV) #39: FILE: block/curl.c:463: + for (i=0; i<CURL_NUM_STATES; i++) { ^ ERROR: spaces required around that '<' (ctx:VxV) #39: FILE: block/curl.c:463: + for (i=0; i<CURL_NUM_STATES; i++) { ^ total: 2 errors, 0 warnings, 92 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 5/7: curl: convert CURLAIOCB to byte values... Checking PATCH 6/7: curl: convert readv to coroutines... Checking PATCH 7/7: curl: do not do aio_poll when waiting for a free CURLState... === 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