Hi, This series seems to have some coding style problems. See output below for more information:
Type: series Message-id: 20180125175949.7780-1-pbonz...@redhat.com Subject: [Qemu-devel] [PATCH v3 0/5] coroutine-lock: polymorphic CoQueue === 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 a3f9362af5..2077fef91d master -> master * [new tag] patchew/20180125175949.7780-1-pbonz...@redhat.com -> patchew/20180125175949.7780-1-pbonz...@redhat.com Switched to a new branch 'test' 31cc3c8bd1 curl: convert to CoQueue b9796ab014 coroutine-lock: make qemu_co_enter_next thread-safe 0a41dcd114 coroutine-lock: convert CoQueue to use QemuLockable 70398398ad lockable: add QemuLockable 695a0dcaa5 test-coroutine: add simple CoMutex test === OUTPUT BEGIN === Checking PATCH 1/5: test-coroutine: add simple CoMutex test... ERROR: do not initialise statics to 0 or NULL #29: FILE: tests/test-coroutine.c:198: +static bool locked = false; total: 1 errors, 0 warnings, 74 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/5: lockable: add QemuLockable... WARNING: line over 80 characters #58: FILE: include/qemu/compiler.h:144: +#define QEMU_GENERIC2(x, a0, ...) QEMU_GENERIC_IF(x, a0, QEMU_GENERIC1(x, __VA_ARGS__)) WARNING: line over 80 characters #59: FILE: include/qemu/compiler.h:145: +#define QEMU_GENERIC3(x, a0, ...) QEMU_GENERIC_IF(x, a0, QEMU_GENERIC2(x, __VA_ARGS__)) WARNING: line over 80 characters #60: FILE: include/qemu/compiler.h:146: +#define QEMU_GENERIC4(x, a0, ...) QEMU_GENERIC_IF(x, a0, QEMU_GENERIC3(x, __VA_ARGS__)) WARNING: line over 80 characters #61: FILE: include/qemu/compiler.h:147: +#define QEMU_GENERIC5(x, a0, ...) QEMU_GENERIC_IF(x, a0, QEMU_GENERIC4(x, __VA_ARGS__)) WARNING: line over 80 characters #62: FILE: include/qemu/compiler.h:148: +#define QEMU_GENERIC6(x, a0, ...) QEMU_GENERIC_IF(x, a0, QEMU_GENERIC5(x, __VA_ARGS__)) WARNING: line over 80 characters #63: FILE: include/qemu/compiler.h:149: +#define QEMU_GENERIC7(x, a0, ...) QEMU_GENERIC_IF(x, a0, QEMU_GENERIC6(x, __VA_ARGS__)) WARNING: line over 80 characters #64: FILE: include/qemu/compiler.h:150: +#define QEMU_GENERIC8(x, a0, ...) QEMU_GENERIC_IF(x, a0, QEMU_GENERIC7(x, __VA_ARGS__)) WARNING: line over 80 characters #65: FILE: include/qemu/compiler.h:151: +#define QEMU_GENERIC9(x, a0, ...) QEMU_GENERIC_IF(x, a0, QEMU_GENERIC8(x, __VA_ARGS__)) WARNING: line over 80 characters #66: FILE: include/qemu/compiler.h:152: +#define QEMU_GENERIC10(x, a0, ...) QEMU_GENERIC_IF(x, a0, QEMU_GENERIC9(x, __VA_ARGS__)) total: 0 errors, 9 warnings, 234 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/5: coroutine-lock: convert CoQueue to use QemuLockable... Checking PATCH 4/5: coroutine-lock: make qemu_co_enter_next thread-safe... Checking PATCH 5/5: curl: convert to CoQueue... === 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