Hi, This series seems to have some coding style problems. See output below for more information:
Type: series Subject: [Qemu-devel] [PATCH] vfio/pci-quirks.c: Disable stolen memory for igd VFIO Message-id: 20170220111716.10471-1-xiong.y.zh...@intel.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 From https://github.com/patchew-project/qemu * [new tag] patchew/20170220111716.10471-1-xiong.y.zh...@intel.com -> patchew/20170220111716.10471-1-xiong.y.zh...@intel.com Switched to a new branch 'test' f533dc3 vfio/pci-quirks.c: Disable stolen memory for igd VFIO === OUTPUT BEGIN === Checking PATCH 1/1: vfio/pci-quirks.c: Disable stolen memory for igd VFIO... ERROR: code indent should never use tabs #38: FILE: hw/vfio/pci-quirks.c:1370: +^I/* This must be an Intel VGA device. */$ ERROR: code indent should never use tabs #39: FILE: hw/vfio/pci-quirks.c:1371: +^Iif (!vfio_pci_is(vdev, PCI_VENDOR_ID_INTEL, PCI_ANY_ID) ||$ ERROR: braces {} are necessary for all arms of this statement #39: FILE: hw/vfio/pci-quirks.c:1371: + if (!vfio_pci_is(vdev, PCI_VENDOR_ID_INTEL, PCI_ANY_ID) || [...] ERROR: code indent should never use tabs #40: FILE: hw/vfio/pci-quirks.c:1372: +^I^I!vfio_is_vga(vdev) || nr != 4)$ ERROR: code indent should never use tabs #41: FILE: hw/vfio/pci-quirks.c:1373: +^I^Ireturn;$ ERROR: code indent should never use tabs #43: FILE: hw/vfio/pci-quirks.c:1375: +^I/*$ ERROR: code indent should never use tabs #44: FILE: hw/vfio/pci-quirks.c:1376: +^I * IGD is not a standard, they like to change their specs often. We$ ERROR: code indent should never use tabs #45: FILE: hw/vfio/pci-quirks.c:1377: +^I * only attempt to support back to SandBridge and we hope that newer$ ERROR: code indent should never use tabs #46: FILE: hw/vfio/pci-quirks.c:1378: +^I * devices maintain compatibility with generation 8.$ ERROR: code indent should never use tabs #47: FILE: hw/vfio/pci-quirks.c:1379: +^I */$ ERROR: code indent should never use tabs #48: FILE: hw/vfio/pci-quirks.c:1380: +^Igen = igd_gen(vdev);$ ERROR: code indent should never use tabs #49: FILE: hw/vfio/pci-quirks.c:1381: +^Iif (gen != 6 && gen != 8) {$ ERROR: code indent should never use tabs #50: FILE: hw/vfio/pci-quirks.c:1382: +^I^Ierror_report("IGD device %s is unsupported in legacy mode, "$ ERROR: code indent should never use tabs #51: FILE: hw/vfio/pci-quirks.c:1383: +^I^I^I "try SandyBridge or newer", vdev->vbasedev.name);$ ERROR: code indent should never use tabs #52: FILE: hw/vfio/pci-quirks.c:1384: +^I^Ireturn;$ ERROR: code indent should never use tabs #53: FILE: hw/vfio/pci-quirks.c:1385: +^I}$ ERROR: code indent should never use tabs #54: FILE: hw/vfio/pci-quirks.c:1386: +^I/*$ ERROR: code indent should never use tabs #55: FILE: hw/vfio/pci-quirks.c:1387: +^I * If this isn't at address 00:02.0, bios won't reserv stolen$ ERROR: code indent should never use tabs #56: FILE: hw/vfio/pci-quirks.c:1388: +^I * memory in E820, then others could use stolen memory. If guest$ ERROR: code indent should never use tabs #57: FILE: hw/vfio/pci-quirks.c:1389: +^I * graphic driver still use stolen memory, system maybe hang.$ ERROR: code indent should never use tabs #58: FILE: hw/vfio/pci-quirks.c:1390: +^I * so we set stolen memory size to 0 and guest graphic driver won't$ ERROR: code indent should never use tabs #59: FILE: hw/vfio/pci-quirks.c:1391: +^I * use stolen memory.$ ERROR: code indent should never use tabs #60: FILE: hw/vfio/pci-quirks.c:1392: +^I */$ ERROR: code indent should never use tabs #61: FILE: hw/vfio/pci-quirks.c:1393: +^Igmch = vfio_pci_read_config(&vdev->pdev, IGD_GMCH, 4);$ ERROR: code indent should never use tabs #62: FILE: hw/vfio/pci-quirks.c:1394: +^Igmch &= ~((gen < 8 ? 0x1f : 0xff) << (gen < 8 ? 3 : 8));$ ERROR: code indent should never use tabs #64: FILE: hw/vfio/pci-quirks.c:1396: +^I/* GMCH is read-only, emulated */$ ERROR: code indent should never use tabs #65: FILE: hw/vfio/pci-quirks.c:1397: +^Ipci_set_long(vdev->pdev.config + IGD_GMCH, gmch);$ ERROR: code indent should never use tabs #66: FILE: hw/vfio/pci-quirks.c:1398: +^Ipci_set_long(vdev->pdev.wmask + IGD_GMCH, 0);$ ERROR: code indent should never use tabs #67: FILE: hw/vfio/pci-quirks.c:1399: +^Ipci_set_long(vdev->emulated_config_bits + IGD_GMCH, ~0);$ ERROR: code indent should never use tabs #69: FILE: hw/vfio/pci-quirks.c:1401: +^I/*$ ERROR: code indent should never use tabs #70: FILE: hw/vfio/pci-quirks.c:1402: +^I * This must be at address 00:02.0 for us to even onsider enabling$ ERROR: code indent should never use tabs #71: FILE: hw/vfio/pci-quirks.c:1403: +^I * legacy mode. The vBIOS has dependencies on the PCI bus address.$ ERROR: code indent should never use tabs #72: FILE: hw/vfio/pci-quirks.c:1404: +^I */$ ERROR: code indent should never use tabs #73: FILE: hw/vfio/pci-quirks.c:1405: +^Iif (&vdev->pdev != pci_find_device(pci_device_root_bus(&vdev->pdev),$ ERROR: braces {} are necessary for all arms of this statement #73: FILE: hw/vfio/pci-quirks.c:1405: + if (&vdev->pdev != pci_find_device(pci_device_root_bus(&vdev->pdev), [...] ERROR: code indent should never use tabs #74: FILE: hw/vfio/pci-quirks.c:1406: +^I^I^I^I^I 0, PCI_DEVFN(0x2, 0)))$ ERROR: code indent should never use tabs #75: FILE: hw/vfio/pci-quirks.c:1407: +^I^Ireturn;$ ERROR: code indent should never use tabs #117: FILE: hw/vfio/pci-quirks.c:1552: +^I^I^Ipci_set_long(vdev->pdev.config + IGD_GMCH, gmch);$ total: 38 errors, 0 warnings, 105 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