Hi, This series seems to have some coding style problems. See output below for more information:
Type: series Message-id: 20171011191317.24157-1-dgilb...@redhat.com Subject: [Qemu-devel] [PATCH 0/7] migration: pause-before-device === 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/1507742676-9908-1-git-send-email-peter.mayd...@linaro.org -> patchew/1507742676-9908-1-git-send-email-peter.mayd...@linaro.org * [new tag] patchew/1507751249-3035-1-git-send-email-stef...@linux.vnet.ibm.com -> patchew/1507751249-3035-1-git-send-email-stef...@linux.vnet.ibm.com Switched to a new branch 'test' 88ddcde82f migration: pause-before-device for postcopy 341433d19b migration: allow cancel to unpause 4a76fbc2b2 migrate: HMP migate_continue 24305477e0 migration: migrate-continue fc48af642c migration: Wait for semaphore before completing migration 263e6dc5be migration: Add 'pause-before-device' and 'device' statuses 7827c25132 migration: Add 'pause-before-device' capability === OUTPUT BEGIN === Checking PATCH 1/7: migration: Add 'pause-before-device' capability... Checking PATCH 2/7: migration: Add 'pause-before-device' and 'device' statuses... Checking PATCH 3/7: migration: Wait for semaphore before completing migration... ERROR: trailing statements should be on next line #45: FILE: migration/migration.c:1995: + while (qemu_sem_timedwait(&s->pause_sem, 1) == 0); ERROR: braces {} are necessary even for single statement blocks #45: FILE: migration/migration.c:1995: + while (qemu_sem_timedwait(&s->pause_sem, 1) == 0); total: 2 errors, 0 warnings, 80 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/7: migration: migrate-continue... Checking PATCH 5/7: migrate: HMP migate_continue... Checking PATCH 6/7: migration: allow cancel to unpause... Checking PATCH 7/7: migration: pause-before-device for postcopy... === 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