Hi, This series seems to have some coding style problems. See output below for more information:
Message-id: 1542895581-10721-1-git-send-email-w...@redhat.com Type: series Subject: [Qemu-devel] [PATCH v1 00/16] packed ring virtio-net backend support === 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 From https://github.com/patchew-project/qemu * [new tag] patchew/20181123063957.9515-1-kra...@redhat.com -> patchew/20181123063957.9515-1-kra...@redhat.com Switched to a new branch 'test' d16b38b virtio: enable packed ring via a new command line e4e3101 vhost: enable packed ring d9c4fa1 virtio: packed ring feature bit for userspace backend 868a734 virtio: add vhost-net migration of packed ring 0418599 virtio: add userspace migration of packed ring ff50e22 virtio-net: fill head desc after done all in a chain bc60f32 virtio: event suppression support for packed ring e6ed126 virtio: fill/flush/pop for packed ring 782528d virtio: get avail bytes check for packed ring 72bf952 virtio: init and desc empty check for packed ring c4131b3 virtio: init wrap counter for packed ring 00f26bd virtio: add memory region init for packed ring 279caea virtio: expand offset calculation for packed ring 9dc3712 virtio: redefine structure & memory cache for packed ring d1a145c virtio: introduce packed ring definitions === OUTPUT BEGIN === Checking PATCH 1/15: virtio: introduce packed ring definitions... Checking PATCH 2/15: virtio: redefine structure & memory cache for packed ring... Checking PATCH 3/15: virtio: expand offset calculation for packed ring... Checking PATCH 4/15: virtio: add memory region init for packed ring... Checking PATCH 5/15: virtio: init wrap counter for packed ring... Checking PATCH 6/15: virtio: init and desc empty check for packed ring... Checking PATCH 7/15: virtio: get avail bytes check for packed ring... Checking PATCH 8/15: virtio: fill/flush/pop for packed ring... Checking PATCH 9/15: virtio: event suppression support for packed ring... ERROR: trailing whitespace #119: FILE: hw/virtio/virtio.c:2208: +static bool vring_packed_need_event(VirtQueue *vq, bool wrap, $ total: 1 errors, 0 warnings, 151 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 10/15: virtio-net: fill head desc after done all in a chain... Checking PATCH 11/15: virtio: add userspace migration of packed ring... Checking PATCH 12/15: virtio: add vhost-net migration of packed ring... Checking PATCH 13/15: virtio: packed ring feature bit for userspace backend... Checking PATCH 14/15: vhost: enable packed ring... Checking PATCH 15/15: virtio: enable packed ring via a new command line... === 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