Hi, This series seems to have some coding style problems. See output below for more information:
Type: series Message-id: 20170924180848.19168-1-samuel.thiba...@ens-lyon.org Subject: [Qemu-devel] [PULL 0/3] slirp updates === 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 Switched to a new branch 'test' 3b8560cf71 slirp: Add a special case for the NULL socket 91a5c1c7c4 slirp: Fix intermittent send queue hangs on a socket 16d5416215 slirp: Add explanation for hostfwd parsing failure === OUTPUT BEGIN === Checking PATCH 1/3: slirp: Add explanation for hostfwd parsing failure... Checking PATCH 2/3: slirp: Fix intermittent send queue hangs on a socket... Checking PATCH 3/3: slirp: Add a special case for the NULL socket... ERROR: code indent should never use tabs #31: FILE: slirp/if.c:76: +^Iif (so) {$ ERROR: code indent should never use tabs #32: FILE: slirp/if.c:77: +^I^Ifor (ifq = (struct mbuf *) slirp->if_batchq.qh_rlink;$ ERROR: code indent should never use tabs #33: FILE: slirp/if.c:78: +^I^I (struct quehead *) ifq != &slirp->if_batchq;$ ERROR: code indent should never use tabs #34: FILE: slirp/if.c:79: +^I^I ifq = ifq->ifq_prev) {$ ERROR: code indent should never use tabs #35: FILE: slirp/if.c:80: +^I^I^Iif (so == ifq->ifq_so) {$ ERROR: code indent should never use tabs #36: FILE: slirp/if.c:81: +^I^I^I^I/* A match! */$ ERROR: code indent should never use tabs #37: FILE: slirp/if.c:82: +^I^I^I^Iifm->ifq_so = so;$ ERROR: code indent should never use tabs #38: FILE: slirp/if.c:83: +^I^I^I^Iifs_insque(ifm, ifq->ifs_prev);$ ERROR: code indent should never use tabs #39: FILE: slirp/if.c:84: +^I^I^I^Igoto diddit;$ ERROR: code indent should never use tabs #40: FILE: slirp/if.c:85: +^I^I^I}$ total: 10 errors, 0 warnings, 24 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...@freelists.org