Hi, Your series seems to have some coding style problems. See output below for more information:
Message-id: 20170108194041.10908-1-ehabk...@redhat.com Subject: [Qemu-devel] [PATCH 0/5] Use non-blacklisted family/model/stepping for Haswell CPU model Type: series === 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 From https://github.com/patchew-project/qemu * [new tag] patchew/20170108194041.10908-1-ehabk...@redhat.com -> patchew/20170108194041.10908-1-ehabk...@redhat.com Switched to a new branch 'test' d179b85 i386: Change stepping of Haswell to non-blacklisted value d1e2a1c pc: Add 2.9 machine-types fd67612 i386/kvm: Blacklist TSX on known broken hosts 2639996 i386: host_vendor_fms() helper function 06c2fb0 i386: Add explicit array size to x86_cpu_vendor_words2str() === OUTPUT BEGIN === Checking PATCH 1/5: i386: Add explicit array size to x86_cpu_vendor_words2str()... ERROR: line over 90 characters #27: FILE: target/i386/cpu.c:172: +static void x86_cpu_vendor_words2str(char dst[static (CPUID_VENDOR_SZ + 1)], uint32_t vendor1, ERROR: space prohibited between function name and open parenthesis '(' #27: FILE: target/i386/cpu.c:172: +static void x86_cpu_vendor_words2str(char dst[static (CPUID_VENDOR_SZ + 1)], uint32_t vendor1, total: 2 errors, 0 warnings, 8 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 2/5: i386: host_vendor_fms() helper function... ERROR: line over 90 characters #20: FILE: target/i386/cpu.c:685: +void host_vendor_fms(char vendor[static (CPUID_VENDOR_SZ + 1)], int *family, int *model, int *stepping) ERROR: space prohibited between function name and open parenthesis '(' #20: FILE: target/i386/cpu.c:685: +void host_vendor_fms(char vendor[static (CPUID_VENDOR_SZ + 1)], int *family, int *model, int *stepping) ERROR: storage class should be at the beginning of the declaration #20: FILE: target/i386/cpu.c:685: +void host_vendor_fms(char vendor[static (CPUID_VENDOR_SZ + 1)], int *family, int *model, int *stepping) ERROR: line over 90 characters #57: FILE: target/i386/cpu.c:1599: + host_vendor_fms(host_cpudef.vendor, &host_cpudef.family, &host_cpudef.model, &host_cpudef.stepping); ERROR: line over 90 characters #69: FILE: target/i386/cpu.h:1426: +void host_vendor_fms(char vendor[static (CPUID_VENDOR_SZ + 1)], int *family, int *model, int *stepping); ERROR: space prohibited between function name and open parenthesis '(' #69: FILE: target/i386/cpu.h:1426: +void host_vendor_fms(char vendor[static (CPUID_VENDOR_SZ + 1)], int *family, int *model, int *stepping); ERROR: storage class should be at the beginning of the declaration #69: FILE: target/i386/cpu.h:1426: +void host_vendor_fms(char vendor[static (CPUID_VENDOR_SZ + 1)], int *family, int *model, int *stepping); total: 7 errors, 0 warnings, 50 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 3/5: i386/kvm: Blacklist TSX on known broken hosts... Checking PATCH 4/5: pc: Add 2.9 machine-types... Checking PATCH 5/5: i386: Change stepping of Haswell to non-blacklisted value... === 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