From: no-reply@patchew.org
To: clg@kaod.org
Cc: famz@redhat.com, qemu-ppc@nongnu.org, qemu-devel@nongnu.org,
david@gibson.dropbear.id.au
Subject: Re: [Qemu-devel] [PATCH v4 00/20] ppc/pnv: booting the kernel and reaching user space
Date: Mon, 3 Oct 2016 00:59:36 -0700 (PDT) [thread overview]
Message-ID: <20161003075931.498195.30919@ex-std-node742.prod.rhcloud.com> (raw)
In-Reply-To: <1475479496-16158-1-git-send-email-clg@kaod.org>
Hi,
Your series seems to have some coding style problems. See output below for
more information:
Type: series
Message-id: 1475479496-16158-1-git-send-email-clg@kaod.org
Subject: [Qemu-devel] [PATCH v4 00/20] ppc/pnv: booting the kernel and reaching user space
=== 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 ===
Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384
From https://github.com/patchew-project/qemu
* [new tag] patchew/1475479496-16158-1-git-send-email-clg@kaod.org -> patchew/1475479496-16158-1-git-send-email-clg@kaod.org
Switched to a new branch 'test'
fcda1d2 ppc/pnv: add support for POWER9 LPC Controller
668c237 ppc/pnv: Add Naples chip support for LPC interrupts
49b9443 ppc/pnv: Add OCC model stub with interrupt support
a02fded ppc/pnv: Add cut down PSI bridge model and hookup external interrupt
9f27258 ppc/pnv: add a XICS native to each PowerNV chip
75067d5 ppc/xics: Add "native" XICS subclass
6a7865a ppc/xics: introduce a helper to insert a new ics
e25d4e5 ppc/xics: introduce helpers to find an ICP from some (CPU) index
75e1e0a ppc/xics: Add xics to the monitor "info pic" command
a1d20d4 ppc/xics: Split ICS into ics-base and ics class
1397a8c ppc/xics: Make the ICSState a list
8a8ae07 ppc/pnv: add a ISA bus
32f029b ppc/pnv: add a LPC controller
7a3791a ppc/pnv: add XSCOM handlers to PnvCore
358a0c8 ppc/pnv: add XSCOM infrastructure
bf2c920 ppc/pnv: add a PnvCore object
281f8e4 ppc/pnv: add a PIR handler to PnvChip
1d6f976 ppc/pnv: add a core mask to PnvChip
e1c6449 ppc/pnv: add a PnvChip object
e40906f ppc/pnv: add skeleton PowerNV platform
=== OUTPUT BEGIN ===
Checking PATCH 1/20: ppc/pnv: add skeleton PowerNV platform...
Checking PATCH 2/20: ppc/pnv: add a PnvChip object...
Checking PATCH 3/20: ppc/pnv: add a core mask to PnvChip...
Checking PATCH 4/20: ppc/pnv: add a PIR handler to PnvChip...
Checking PATCH 5/20: ppc/pnv: add a PnvCore object...
Checking PATCH 6/20: ppc/pnv: add XSCOM infrastructure...
Checking PATCH 7/20: ppc/pnv: add XSCOM handlers to PnvCore...
Checking PATCH 8/20: ppc/pnv: add a LPC controller...
Checking PATCH 9/20: ppc/pnv: add a ISA bus...
Checking PATCH 10/20: ppc/xics: Make the ICSState a list...
Checking PATCH 11/20: ppc/xics: Split ICS into ics-base and ics class...
Checking PATCH 12/20: ppc/xics: Add xics to the monitor "info pic" command...
Checking PATCH 13/20: ppc/xics: introduce helpers to find an ICP from some (CPU) index...
Checking PATCH 14/20: ppc/xics: introduce a helper to insert a new ics...
Checking PATCH 15/20: ppc/xics: Add "native" XICS subclass...
ERROR: spaces required around that '&' (ctx:WxV)
#308: FILE: hw/intc/xics_native.c:246:
+ (gpointer) &xics->ss[cs->cpu_index]);
^
total: 1 errors, 0 warnings, 403 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 16/20: ppc/pnv: add a XICS native to each PowerNV chip...
Checking PATCH 17/20: ppc/pnv: Add cut down PSI bridge model and hookup external interrupt...
Checking PATCH 18/20: ppc/pnv: Add OCC model stub with interrupt support...
Checking PATCH 19/20: ppc/pnv: Add Naples chip support for LPC interrupts...
Checking PATCH 20/20: ppc/pnv: add support for POWER9 LPC Controller...
=== OUTPUT END ===
Test command exited with code: 1
---
Email generated automatically by Patchew [http://patchew.org/].
Please send your feedback to patchew-devel@freelists.org
next prev parent reply other threads:[~2016-10-03 7:59 UTC|newest]
Thread overview: 75+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-03 7:24 [Qemu-devel] [PATCH v4 00/20] ppc/pnv: booting the kernel and reaching user space Cédric Le Goater
2016-10-03 7:24 ` [Qemu-devel] [PATCH v4 01/20] ppc/pnv: add skeleton PowerNV platform Cédric Le Goater
2016-10-07 4:14 ` David Gibson
2016-10-07 4:16 ` David Gibson
2016-10-07 7:38 ` Cédric Le Goater
2016-10-07 16:29 ` Jeff Cody
2016-10-07 8:36 ` Cédric Le Goater
2016-10-03 7:24 ` [Qemu-devel] [PATCH v4 02/20] ppc/pnv: add a PnvChip object Cédric Le Goater
2016-10-07 4:26 ` David Gibson
2016-10-07 9:16 ` Cédric Le Goater
2016-10-03 7:24 ` [Qemu-devel] [PATCH v4 03/20] ppc/pnv: add a core mask to PnvChip Cédric Le Goater
2016-10-07 4:32 ` David Gibson
2016-10-07 5:01 ` Benjamin Herrenschmidt
2016-10-07 5:11 ` David Gibson
2016-10-07 8:24 ` Cédric Le Goater
2016-10-10 12:56 ` Cédric Le Goater
2016-10-11 10:24 ` David Gibson
2016-10-12 8:53 ` Cédric Le Goater
2016-10-13 0:24 ` David Gibson
2016-10-03 7:24 ` [Qemu-devel] [PATCH v4 04/20] ppc/pnv: add a PIR handler " Cédric Le Goater
2016-10-07 4:34 ` David Gibson
2016-10-10 8:14 ` Cédric Le Goater
2016-10-03 7:24 ` [Qemu-devel] [PATCH v4 05/20] ppc/pnv: add a PnvCore object Cédric Le Goater
2016-10-07 4:52 ` David Gibson
2016-10-10 8:07 ` Cédric Le Goater
2016-10-03 7:24 ` [Qemu-devel] [PATCH v4 06/20] ppc/pnv: add XSCOM infrastructure Cédric Le Goater
2016-10-13 0:41 ` David Gibson
2016-10-13 6:26 ` Cédric Le Goater
2016-11-07 8:26 ` Olaf Hering
2016-11-07 8:32 ` Cédric Le Goater
2016-10-03 7:24 ` [Qemu-devel] [PATCH v4 07/20] ppc/pnv: add XSCOM handlers to PnvCore Cédric Le Goater
2016-10-13 0:51 ` David Gibson
2016-10-13 6:50 ` Cédric Le Goater
2016-10-13 22:24 ` David Gibson
2016-10-03 7:24 ` [Qemu-devel] [PATCH v4 08/20] ppc/pnv: add a LPC controller Cédric Le Goater
2016-10-13 2:52 ` David Gibson
2016-10-13 2:53 ` David Gibson
2016-10-13 6:31 ` Cédric Le Goater
2016-10-03 7:24 ` [Qemu-devel] [PATCH v4 09/20] ppc/pnv: add a ISA bus Cédric Le Goater
2016-10-13 2:58 ` David Gibson
2016-10-03 7:24 ` [Qemu-devel] [PATCH v4 10/20] ppc/xics: Make the ICSState a list Cédric Le Goater
2016-10-14 5:32 ` David Gibson
2016-10-14 7:35 ` Cédric Le Goater
2016-10-16 23:53 ` David Gibson
2016-10-17 8:13 ` Cédric Le Goater
2016-10-03 7:24 ` [Qemu-devel] [PATCH v4 11/20] ppc/xics: Split ICS into ics-base and ics class Cédric Le Goater
2016-10-03 7:24 ` [Qemu-devel] [PATCH v4 12/20] ppc/xics: Add xics to the monitor "info pic" command Cédric Le Goater
2016-10-14 5:30 ` David Gibson
2016-10-14 7:39 ` Cédric Le Goater
2016-10-03 7:24 ` [Qemu-devel] [PATCH v4 13/20] ppc/xics: introduce helpers to find an ICP from some (CPU) index Cédric Le Goater
2016-10-14 5:34 ` David Gibson
2016-10-14 7:44 ` Cédric Le Goater
2016-10-03 7:24 ` [Qemu-devel] [PATCH v4 14/20] ppc/xics: introduce a helper to insert a new ics Cédric Le Goater
2016-10-03 7:24 ` [Qemu-devel] [PATCH v4 15/20] ppc/xics: Add "native" XICS subclass Cédric Le Goater
2016-10-14 6:10 ` David Gibson
2016-10-14 9:40 ` Cédric Le Goater
2016-10-16 23:51 ` David Gibson
2016-10-03 7:24 ` [Qemu-devel] [PATCH v4 16/20] ppc/pnv: add a XICS native to each PowerNV chip Cédric Le Goater
2016-10-14 6:18 ` David Gibson
2016-10-18 14:47 ` Cédric Le Goater
2016-10-03 7:24 ` [Qemu-devel] [PATCH v4 17/20] ppc/pnv: Add cut down PSI bridge model and hookup external interrupt Cédric Le Goater
2016-10-14 6:32 ` David Gibson
2016-10-14 7:13 ` Benjamin Herrenschmidt
2016-10-14 8:07 ` Cédric Le Goater
2016-10-16 23:52 ` David Gibson
2016-10-17 8:17 ` Cédric Le Goater
2016-10-03 7:24 ` [Qemu-devel] [PATCH v4 18/20] ppc/pnv: Add OCC model stub with interrupt support Cédric Le Goater
2016-10-14 6:34 ` David Gibson
2016-10-03 7:24 ` [Qemu-devel] [PATCH v4 19/20] ppc/pnv: Add Naples chip support for LPC interrupts Cédric Le Goater
2016-10-14 6:36 ` David Gibson
2016-10-14 7:47 ` Cédric Le Goater
2016-10-03 7:24 ` [Qemu-devel] [PATCH v4 20/20] ppc/pnv: add support for POWER9 LPC Controller Cédric Le Goater
2016-10-14 6:43 ` David Gibson
2016-10-03 7:59 ` no-reply [this message]
2016-10-03 8:21 ` [Qemu-devel] [PATCH v4 00/20] ppc/pnv: booting the kernel and reaching user space Cédric Le Goater
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20161003075931.498195.30919@ex-std-node742.prod.rhcloud.com \
--to=no-reply@patchew.org \
--cc=clg@kaod.org \
--cc=david@gibson.dropbear.id.au \
--cc=famz@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.