Hi, This series seems to have some coding style problems. See output below for more information:
Type: series Subject: [Qemu-devel] [PATCH 00/39] Windbg supporting Message-id: 154350164526.8036.12623669071583857903.st...@misha-pc.lan02.inno === 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' 17f6c7f windbg: maintainers 97b20af windbg: implement kd_api_query_memory 5635727 windbg: implement kd_api_fill_memory 6677180 windbg: implement kd_api_search_memory 9973f61 windbg: implement kd_api_read_msr and kd_api_write_msr 3c083dc windbg: implement kd_api_get_version fca59ca windbg: implement kd_api_read_physical_memory and kd_api_write_physical_memory c3e495d windbg: implement kd_api_read_io_space and kd_api_write_io_space 4e29a33 windbg: implement kd_api_continue 5ca2f2f windbg: debug exception subscribing dc31c84 windbg: implement kd_api_write_breakpoint and kd_api_restore_breakpoint 0e915cc windbg: implement kd_api_read_control_space and kd_api_write_control_space 915f355 windbg: implement kd_api_get_context_ex and kd_api_set_context_ex 97cd6e2 windbg: implement kd_api_get_context and kd_api_set_context 6bf0cf1 windbg: [de]serialization cpu spec registers fac3d74 windbg: [de]serialization cpu context b0be5e5 windbg: add helper functions 0c2dacc windbg: some kernel structures 753465e windbg: implement kd_api_read_virtual_memory and kd_api_write_virtual_memory 8eb2ea2 windbg: implement windbg_process_manipulate_packet 05a53e5 windbg: implement windbg_process_data_packet b41ab55 windbg: implement windbg_process_control_packet 008a6da windbg: generate ExceptionStateChange and LoadSymbolsStateChange e1bff4f windbg: init DBGKD_ANY_WAIT_STATE_CHANGE 4022b99 windbg: handler of parsing context bfc2e66 windbg: send data and control packets b84f44e windbg: parsing data stream 86cf35e windbg: implement find_kdDebuggerDataBlock e9afd1f windbg: add windbg_search_vmaddr 70d6fbe windbg: implement find_kdVersion 30eb118 windbg: implement find_KPCR c909786 windbg: implement windbg_on_load 16531ab windbg: hook to wrmsr operation bfc9fb5 windbg: add chardev a8d8787 windbg: add WindbgState 3a5b5bf windbg: add helper features e53a519 windbg: add -windbg option 7995ade windbg: add windbg's KD header file 5ed26b5 windbg: add empty windbgstub files === OUTPUT BEGIN === Checking PATCH 1/39: windbg: add empty windbgstub files... WARNING: added, moved or deleted file(s), does MAINTAINERS need updating? #35: new file mode 100644 total: 0 errors, 1 warnings, 121 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/39: windbg: add windbg's KD header file... WARNING: added, moved or deleted file(s), does MAINTAINERS need updating? #14: new file mode 100644 total: 0 errors, 1 warnings, 934 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/39: windbg: add -windbg option... Checking PATCH 4/39: windbg: add helper features... Checking PATCH 5/39: windbg: add WindbgState... Checking PATCH 6/39: windbg: add chardev... Checking PATCH 7/39: windbg: hook to wrmsr operation... Checking PATCH 8/39: windbg: implement windbg_on_load... Checking PATCH 9/39: windbg: implement find_KPCR... Checking PATCH 10/39: windbg: implement find_kdVersion... Checking PATCH 11/39: windbg: add windbg_search_vmaddr... Checking PATCH 12/39: windbg: implement find_kdDebuggerDataBlock... Checking PATCH 13/39: windbg: parsing data stream... Checking PATCH 14/39: windbg: send data and control packets... Checking PATCH 15/39: windbg: handler of parsing context... Checking PATCH 16/39: windbg: init DBGKD_ANY_WAIT_STATE_CHANGE... Checking PATCH 17/39: windbg: generate ExceptionStateChange and LoadSymbolsStateChange... Checking PATCH 18/39: windbg: implement windbg_process_control_packet... Checking PATCH 19/39: windbg: implement windbg_process_data_packet... Checking PATCH 20/39: windbg: implement windbg_process_manipulate_packet... Checking PATCH 21/39: windbg: implement kd_api_read_virtual_memory and kd_api_write_virtual_memory... Checking PATCH 22/39: windbg: some kernel structures... Checking PATCH 23/39: windbg: add helper functions... ERROR: Macros with multiple statements should be enclosed in a do - while loop #126: FILE: target/i386/windbgstub.c:387: +#define CASE_FIELD(srct, field, field_size, block) \ + case offsetof(srct, field): \ + field_size = sizeof_field(srct, field); \ + block; \ + break; total: 1 errors, 0 warnings, 129 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/39: windbg: [de]serialization cpu context... Checking PATCH 25/39: windbg: [de]serialization cpu spec registers... Checking PATCH 26/39: windbg: implement kd_api_get_context and kd_api_set_context... Checking PATCH 27/39: windbg: implement kd_api_get_context_ex and kd_api_set_context_ex... Checking PATCH 28/39: windbg: implement kd_api_read_control_space and kd_api_write_control_space... Checking PATCH 29/39: windbg: implement kd_api_write_breakpoint and kd_api_restore_breakpoint... Checking PATCH 30/39: windbg: debug exception subscribing... Checking PATCH 31/39: windbg: implement kd_api_continue... Checking PATCH 32/39: windbg: implement kd_api_read_io_space and kd_api_write_io_space... Checking PATCH 33/39: windbg: implement kd_api_read_physical_memory and kd_api_write_physical_memory... Checking PATCH 34/39: windbg: implement kd_api_get_version... Checking PATCH 35/39: windbg: implement kd_api_read_msr and kd_api_write_msr... Checking PATCH 36/39: windbg: implement kd_api_search_memory... Checking PATCH 37/39: windbg: implement kd_api_fill_memory... Checking PATCH 38/39: windbg: implement kd_api_query_memory... Checking PATCH 39/39: windbg: 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