Hi, This series seems to have some coding style problems. See output below for more information:
Type: series Message-id: 20180725121311.12867.21729.stgit@pasha-VirtualBox Subject: [Qemu-devel] [PATCH v5 00/24] Fixing record/replay and adding reverse debugging === 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 git config --local diff.algorithm histogram 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' b933359fcb slirp: fix ipv6 timers 08f5dcb6f9 replay: add BH oneshot event for block layer 1d795aa6f9 replay: replay BH for IDE trim operation 22a0a68431 replay: wake up vCPU when replaying 8a458d20ac ps2: prevent changing irq state on save and load c076be246d replay: allow loading any snapshots before recording 10622de164 replay: describe reverse debugging in docs/replay.txt a9f8b005f0 gdbstub: add reverse continue support in replay mode c1b2f4385e gdbstub: add reverse step support in replay mode 9bd4685704 replay: flush rr queue before loading the vmstate cffb0d860d translator: fix breakpoint processing 05e4bd25b6 replay: refine replay-time module ed42025371 timer: remove replay clock probe in deadline calculation 36f5132987 replay: flush events when exiting ee8c956c92 replay: implement replay-seek command to proceed to the desired step 9aade36782 replay: introduce breakpoint at the specified step 36fb64416b replay: introduce info hmp/qmp command 84f414e5bf migration: introduce icount field for snapshots 67e35a07df qcow2: introduce icount field for snapshots 74d11dda54 replay: finish record/replay before closing the disks eea5cde9f5 replay: don't drain/flush bdrv queue while RR is working a96d8d5e35 replay: update docs for record/replay with block devices e673d40571 replay: disable default snapshot for record/replay 1ea43d85a7 block: implement bdrv_snapshot_goto for blkreplay === OUTPUT BEGIN === Checking PATCH 1/24: block: implement bdrv_snapshot_goto for blkreplay... Checking PATCH 2/24: replay: disable default snapshot for record/replay... Checking PATCH 3/24: replay: update docs for record/replay with block devices... Checking PATCH 4/24: replay: don't drain/flush bdrv queue while RR is working... Checking PATCH 5/24: replay: finish record/replay before closing the disks... Checking PATCH 6/24: qcow2: introduce icount field for snapshots... Checking PATCH 7/24: migration: introduce icount field for snapshots... Checking PATCH 8/24: replay: introduce info hmp/qmp command... WARNING: added, moved or deleted file(s), does MAINTAINERS need updating? #114: new file mode 100644 total: 0 errors, 1 warnings, 132 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 9/24: replay: introduce breakpoint at the specified step... Checking PATCH 10/24: replay: implement replay-seek command to proceed to the desired step... Checking PATCH 11/24: replay: flush events when exiting... Checking PATCH 12/24: timer: remove replay clock probe in deadline calculation... WARNING: line over 80 characters #37: FILE: util/qemu-timer.c:584: + timerlist_deadline_ns(tlg->tl[type])); total: 0 errors, 1 warnings, 19 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 13/24: replay: refine replay-time module... Checking PATCH 14/24: translator: fix breakpoint processing... Checking PATCH 15/24: replay: flush rr queue before loading the vmstate... Checking PATCH 16/24: gdbstub: add reverse step support in replay mode... Checking PATCH 17/24: gdbstub: add reverse continue support in replay mode... Checking PATCH 18/24: replay: describe reverse debugging in docs/replay.txt... Checking PATCH 19/24: replay: allow loading any snapshots before recording... Checking PATCH 20/24: ps2: prevent changing irq state on save and load... Checking PATCH 21/24: replay: wake up vCPU when replaying... Checking PATCH 22/24: replay: replay BH for IDE trim operation... Checking PATCH 23/24: replay: add BH oneshot event for block layer... ERROR: "(foo*)" should be "(foo *)" #59: FILE: replay/replay-events.c:41: + ((QEMUBHFunc*)event->opaque)(event->opaque2); ERROR: space required after that ',' (ctx:VxV) #69: FILE: replay/replay-events.c:139: + QEMUBHFunc *cb,void *opaque) ^ ERROR: space required after that ',' (ctx:VxV) #133: FILE: stubs/replay.c:95: + QEMUBHFunc *cb,void *opaque) ^ total: 3 errors, 0 warnings, 88 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/24: slirp: fix ipv6 timers... WARNING: line over 80 characters #31: FILE: slirp/ip6_icmp.c:30: + slirp->ra_timer = timer_new_ms(QEMU_CLOCK_REALTIME, ra_timer_handler, slirp); total: 0 errors, 1 warnings, 19 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...@redhat.com