From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42327) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c1by8-000327-VD for qemu-devel@nongnu.org; Tue, 01 Nov 2016 12:31:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c1by8-0007DH-7N for qemu-devel@nongnu.org; Tue, 01 Nov 2016 12:31:24 -0400 Received: from mail-ua0-x22d.google.com ([2607:f8b0:400c:c08::22d]:35235) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1c1by8-0007Cz-3r for qemu-devel@nongnu.org; Tue, 01 Nov 2016 12:31:24 -0400 Received: by mail-ua0-x22d.google.com with SMTP id 12so132917021uas.2 for ; Tue, 01 Nov 2016 09:31:24 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <147801733842.190.273030864722303449@9040ca97f87d> References: <147801550845.18237.12915616525154608660.stgit@brijesh-build-machine> <147801733842.190.273030864722303449@9040ca97f87d> From: Peter Maydell Date: Tue, 1 Nov 2016 16:31:02 +0000 Message-ID: Content-Type: text/plain; charset=UTF-8 Subject: Re: [Qemu-devel] [RFC PATCH v3 00/18] x86: Secure Encrypted Virtualization (AMD) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng Cc: brijesh.singh@amd.com, Thomas.Lendacky@amd.com, Eduardo Habkost , "Michael S. Tsirkin" , Peter Crosthwaite , Pavel Fedin , Markus Armbruster , brijesh.ksingh@gmail.com, Paolo Bonzini , Luiz Capitulino , Richard Henderson , QEMU Developers On 1 November 2016 at 16:22, wrote: > Hi, > > Your series seems to have some coding style problems. See output below for > more information: Fam, it looks like patchew's test script is assuming git arguments that don't exist on the git version it's trying to use: > === 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 show --no-patch --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 === > === OUTPUT BEGIN === > fatal: unrecognized argument: --no-patch > Checking PATCH 1/18: ... > fatal: unrecognized argument: --no-patch > Checking PATCH 2/18: ... > fatal: unrecognized argument: --no-patch [etc] thanks -- PMM