Hi, Your series seems to have some coding style problems. See output below for more information:
Subject: [Qemu-devel] [PATCH] {disas, slirp}: Replace min/max with MIN/MAX macros Type: series Message-id: 1480108791-16178-1-git-send-email-yuval.sh...@oracle.com === TEST SCRIPT BEGIN === #!/bin/bash BASE=base n=1 total=$(git log --oneline $BASE.. | wc -l) failed=0 # Useful git options 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' 7eb457b {disas, slirp}: Replace min/max with MIN/MAX macros === OUTPUT BEGIN === Checking PATCH 1/1: {disas, slirp}: Replace min/max with MIN/MAX macros... ERROR: code indent should never use tabs #88: FILE: slirp/tcp_input.c:599: +^I tp->rcv_wnd = MAX(win, (int)(tp->rcv_adv - tp->rcv_nxt));$ ERROR: code indent should never use tabs #97: FILE: slirp/tcp_input.c:1068: +^I^I^I^I^I MIN(tp->snd_wnd, tp->snd_cwnd) / 2 /$ ERROR: code indent should never use tabs #106: FILE: slirp/tcp_input.c:1141: +^I^I tp->snd_cwnd = MIN(cw + incr, TCP_MAXWIN<<tp->snd_scale);$ ERROR: spaces required around that '<<' (ctx:VxV) #106: FILE: slirp/tcp_input.c:1141: + tp->snd_cwnd = MIN(cw + incr, TCP_MAXWIN<<tp->snd_scale); ^ ERROR: code indent should never use tabs #115: FILE: slirp/tcp_input.c:1589: +^I mss = MIN(IF_MTU, IF_MRU) - sizeof(struct tcphdr)$ ERROR: code indent should never use tabs #120: FILE: slirp/tcp_input.c:1593: +^I mss = MIN(IF_MTU, IF_MRU) - sizeof(struct tcphdr)$ ERROR: code indent should never use tabs #130: FILE: slirp/tcp_input.c:1601: +^I^Imss = MIN(mss, offer);$ ERROR: code indent should never use tabs #131: FILE: slirp/tcp_input.c:1602: +^Imss = MAX(mss, 32);$ ERROR: code indent should never use tabs #144: FILE: slirp/tcp_output.c:91: +^Iwin = MIN(tp->snd_wnd, tp->snd_cwnd);$ ERROR: code indent should never use tabs #153: FILE: slirp/tcp_output.c:130: +^Ilen = MIN(so->so_snd.sb_cc, win) - off;$ ERROR: code indent should never use tabs #162: FILE: slirp/tcp_output.c:196: +^I^Ilong adv = MIN(win, (long)TCP_MAXWIN << tp->rcv_scale) -$ ERROR: code indent should never use tabs #175: FILE: slirp/tcp_timer.c:236: +^I^Iu_int win = MIN(tp->snd_wnd, tp->snd_cwnd) / 2 / tp->t_maxseg;$ total: 12 errors, 0 warnings, 138 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