Hi, This series seems to have some coding style problems. See output below for more information:
Subject: [Qemu-devel] [RFC PATCH v2 00/26] replay additions Type: series Message-id: 20171114081630.27640.53933.stgit@pasha-VirtualBox === 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/20171110152017.24324-1-...@kaod.org -> patchew/20171110152017.24324-1-...@kaod.org * [new tag] patchew/20171114081630.27640.53933.stgit@pasha-VirtualBox -> patchew/20171114081630.27640.53933.stgit@pasha-VirtualBox Switched to a new branch 'test' d6c92e7596 scripts/qemu-gdb/timers.py: new helper to dump timer state e82ce19331 scripts/replay-dump.py: replay log dumper 8a7618f9b0 scripts/analyse-locks-simpletrace.py: script to analyse lock times 509b587b77 util/qemu-thread-*: add qemu_lock, locked and unlock trace events e8b144ec6e scripts/qemu-gdb: add simple tcg lock status helper 7d36166f84 replay: check return values of fwrite 1eacb574a2 replay: don't destroy mutex at exit 1d03f6fb4c cpu-exec: reset exit flag before calling cpu_exec_nocache 85822825d9 cpu-exec: don't overwrite exception_index 6f2aeb6099 replay: push replay_mutex_lock up the call tree ceed690708 replay: make locking visible outside replay code 692f24429d replay/replay-internal.c: track holding of replay_lock cc6b125ec9 replay/replay.c: bump REPLAY_VERSION again 9050e5b836 cpus: only take BQL for sleeping threads b7d4f57398 cpus: push BQL lock to qemu_*_wait_io_event 2a06255764 target/arm/arm-powertctl: drop BQL assertions a266dcb3e7 icount: fixed saving/restoring of icount warp timers 7b0509d84b replay: save prior value of the host clock a663aafe34 replay: make safe vmstop at record/replay 600808725e replay: added replay log format description 19c01dc3a3 replay: fix save/load vm for non-empty queue c16cb244ba replay: fixed replay_enable_events 9c38ada664 replay: fix processing async events a24a9f9b89 replay: disable default snapshot for record/replay e792255d65 blkreplay: create temporary overlay for underlaying devices 6299185ecb block: implement bdrv_snapshot_goto for blkreplay === OUTPUT BEGIN === Checking PATCH 1/26: block: implement bdrv_snapshot_goto for blkreplay... Checking PATCH 2/26: blkreplay: create temporary overlay for underlaying devices... Checking PATCH 3/26: replay: disable default snapshot for record/replay... Checking PATCH 4/26: replay: fix processing async events... Checking PATCH 5/26: replay: fixed replay_enable_events... Checking PATCH 6/26: replay: fix save/load vm for non-empty queue... Checking PATCH 7/26: replay: added replay log format description... Checking PATCH 8/26: replay: make safe vmstop at record/replay... Checking PATCH 9/26: replay: save prior value of the host clock... Checking PATCH 10/26: icount: fixed saving/restoring of icount warp timers... ERROR: spaces required around that '*' (ctx:VxV) #170: FILE: cpus.c:688: + .subsections = (const VMStateDescription*[]) { ^ total: 1 errors, 0 warnings, 173 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 11/26: target/arm/arm-powertctl: drop BQL assertions... Checking PATCH 12/26: cpus: push BQL lock to qemu_*_wait_io_event... Checking PATCH 13/26: cpus: only take BQL for sleeping threads... Checking PATCH 14/26: replay/replay.c: bump REPLAY_VERSION again... Checking PATCH 15/26: replay/replay-internal.c: track holding of replay_lock... Checking PATCH 16/26: replay: make locking visible outside replay code... Checking PATCH 17/26: replay: push replay_mutex_lock up the call tree... Checking PATCH 18/26: cpu-exec: don't overwrite exception_index... Checking PATCH 19/26: cpu-exec: reset exit flag before calling cpu_exec_nocache... WARNING: line over 80 characters #45: FILE: accel/tcg/cpu-exec.c:478: + cpu_exec_nocache(cpu, 1, tb_find(cpu, NULL, 0, curr_cflags()), true); total: 0 errors, 1 warnings, 125 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 20/26: replay: don't destroy mutex at exit... Checking PATCH 21/26: replay: check return values of fwrite... Checking PATCH 22/26: scripts/qemu-gdb: add simple tcg lock status helper... Checking PATCH 23/26: util/qemu-thread-*: add qemu_lock, locked and unlock trace events... WARNING: line over 80 characters #30: FILE: include/qemu/thread.h:30: +#define qemu_mutex_trylock(mutex) qemu_mutex_trylock_impl(mutex, __FILE__, __LINE__) WARNING: line over 80 characters #31: FILE: include/qemu/thread.h:31: +#define qemu_mutex_unlock(mutex) qemu_mutex_unlock_impl(mutex, __FILE__, __LINE__) ERROR: line over 90 characters #40: FILE: include/qemu/thread.h:46: +void qemu_cond_wait_impl(QemuCond *cond, QemuMutex *mutex, const char *file, const int line); WARNING: line over 80 characters #42: FILE: include/qemu/thread.h:48: +#define qemu_cond_wait(cond, mutex) qemu_cond_wait_impl(cond, mutex, __FILE__, __LINE__) ERROR: line over 90 characters #107: FILE: util/qemu-thread-posix.c:158: +void qemu_cond_wait_impl(QemuCond *cond, QemuMutex *mutex, const char *file, const int line) total: 2 errors, 3 warnings, 103 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 24/26: scripts/analyse-locks-simpletrace.py: script to analyse lock times... Checking PATCH 25/26: scripts/replay-dump.py: replay log dumper... Checking PATCH 26/26: scripts/qemu-gdb/timers.py: new helper to dump timer state... === 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