Hi, This series seems to have some coding style problems. See output below for more information:
Type: series Subject: [Qemu-devel] [PATCH for-3.2 v4 00/28] Generalize machine compatibility properties Message-id: 20181127092801.21777-1-marcandre.lur...@redhat.com === 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' dc9253d hostmem: use object id for memory region name with >= 3.1 fe3bf67 hw/arm/virt: add virt-3.2 machine type 31f5bd6 hw/i386: add pc-i440fx-3.2 & pc-q35-3.2 3b0b8e6 machine: add compat-props interface 4a14ed5 arm: replace instance_post_init() f3d5327 qom: add object_class_get_class_data() c29b239 qom: teach interfaces to implement post-init 9cc5ad4 qdev-props: call object_apply_global_props() 70e9d46 qdev-props: remove errp from GlobalProperty 0e3d981 qdev-props: convert global_props to GPtrArray 2a2ec6a qdev: all globals are now user-provided 0bc5b7b hw: remove SET_MACHINE_COMPAT 851e70b hw: apply machine compat properties without touching globals acd5576 hw: apply accel compat properties without touching globals c4af6bd qom: remove unimplemented class_finalize db6199f qdev: move qdev_prop_register_global_list() to tests fae3261 accel: register global_props like machine globals e86b095 qom: make user_creatable_complete() specific to UserCreatable 758abb5 qom: make interface types abstract f2b0f9b tests: qdev_prop_check_globals() doesn't return "all_used" 65d13a9 Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20181126' into staging 134e216 net: cadence_gem: Remove incorrect assert() 421842e MAINTAINERS: Add an ARM SMMU section cda0d1d MAINTAINERS: Assign some more files in the hw/arm/ directory === OUTPUT BEGIN === Checking PATCH 1/24: MAINTAINERS: Assign some more files in the hw/arm/ directory... Checking PATCH 2/24: MAINTAINERS: Add an ARM SMMU section... Checking PATCH 3/24: net: cadence_gem: Remove incorrect assert()... Checking PATCH 4/24: Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20181126' into staging... Checking PATCH 5/24: tests: qdev_prop_check_globals() doesn't return "all_used"... Checking PATCH 6/24: qom: make interface types abstract... Checking PATCH 7/24: qom: make user_creatable_complete() specific to UserCreatable... Checking PATCH 8/24: accel: register global_props like machine globals... Checking PATCH 9/24: qdev: move qdev_prop_register_global_list() to tests... Checking PATCH 10/24: qom: remove unimplemented class_finalize... Checking PATCH 11/24: hw: apply accel compat properties without touching globals... ERROR: Macros with multiple statements should be enclosed in a do - while loop #95: FILE: hw/xen/xen-common.c:162: +#define XEN_COMPAT \ + { \ + .driver = "migration", \ + .property = "store-global-state", \ + .value = "off", \ + }, \ + { \ + .driver = "migration", \ + .property = "send-configuration", \ + .value = "off", \ + }, \ + { \ + .driver = "migration", \ + .property = "send-section-footer", \ + .value = "off", \ + } WARNING: line over 80 characters #193: FILE: qom/object.c:373: +void object_apply_global_props(Object *obj, const GPtrArray *props, Error **errp) total: 1 errors, 1 warnings, 170 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 12/24: hw: apply machine compat properties without touching globals... Checking PATCH 13/24: hw: remove SET_MACHINE_COMPAT... Checking PATCH 14/24: qdev: all globals are now user-provided... Checking PATCH 15/24: qdev-props: convert global_props to GPtrArray... Checking PATCH 16/24: qdev-props: remove errp from GlobalProperty... Checking PATCH 17/24: qdev-props: call object_apply_global_props()... Checking PATCH 18/24: qom: teach interfaces to implement post-init... Checking PATCH 19/24: qom: add object_class_get_class_data()... Checking PATCH 20/24: arm: replace instance_post_init()... Checking PATCH 21/24: machine: add compat-props interface... WARNING: added, moved or deleted file(s), does MAINTAINERS need updating? #39: 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 22/24: hw/i386: add pc-i440fx-3.2 & pc-q35-3.2... Checking PATCH 23/24: hw/arm/virt: add virt-3.2 machine type... Checking PATCH 24/24: hostmem: use object id for memory region name with >= 3.1... === 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