From: Julien Grall <julien.grall@citrix.com>
To: Doug Goldstein <cardoe@cardoe.com>, xen-devel@lists.xen.org
Cc: Stefano Stabellini <stefano.stabellini@citrix.com>,
Ian Campbell <ian.campbell@citrix.com>
Subject: Re: [PATCHv3] 26/28] build: convert HAS_GICV3 use to Kconfig
Date: Fri, 13 Nov 2015 11:17:48 +0000 [thread overview]
Message-ID: <5645C6DC.2070202@citrix.com> (raw)
In-Reply-To: <1447368869-17360-27-git-send-email-cardoe@cardoe.com>
Hi Doug,
On 12/11/15 22:54, Doug Goldstein wrote:
> Use the Kconfig generated CONFIG_HAS_GICV3 defines in the code base.
>
> CC: Ian Campbell <ian.campbell@citrix.com>
> CC: Stefano Stabellini <stefano.stabellini@citrix.com>
> Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
> ---
> xen/arch/arm/Kconfig | 5 +++++
> xen/arch/arm/Makefile | 2 +-
> xen/arch/arm/Rules.mk | 2 --
> xen/arch/arm/vgic.c | 2 +-
> xen/include/asm-arm/domain.h | 3 ++-
> xen/include/asm-arm/gic.h | 4 ++--
> xen/include/asm-arm/vgic.h | 2 +-
I was expecting you to drop variable HAS_GICV3 in config/arm64.mk.
BTW, this remark is also valid for most of the patch in this series.
Configuration variable may live either in arch/*/Rules.mk or in config/*.mk.
> 7 files changed, 12 insertions(+), 8 deletions(-)
[..]
> diff --git a/xen/include/asm-arm/domain.h b/xen/include/asm-arm/domain.h
> index e7e40da..1ce5e0b 100644
> --- a/xen/include/asm-arm/domain.h
> +++ b/xen/include/asm-arm/domain.h
> @@ -102,7 +102,8 @@ struct arch_domain
> struct pending_irq *pending_irqs;
> /* Base address for guest GIC */
> paddr_t dbase; /* Distributor base address */
> -#ifdef HAS_GICV3
> + paddr_t cbase; /* CPU base address */
> +#ifdef CONFIG_HAS_GICV3
As already said this on v1, can you please make sure that you series
don't re-introduce code or change it.
This should be pretty easy to check with grep. I.e any changes in *.c
and *.h files but in lines containing ifdef/endif are likely wrong.
> /* GIC V3 addressing */
> /* List of contiguous occupied by the redistributors */
> struct vgic_rdist_region {
Regards,
--
Julien Grall
next prev parent reply other threads:[~2015-11-13 11:17 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-12 22:54 [PATCHv3] 00/28] Kconfig conversion Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 01/28] build: import Kbuild/Kconfig from Linux 4.2 Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 02/28] build: hookup Kconfig build and usage Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 03/28] arm: drop now redefined CONFIG_64BIT Doug Goldstein
2015-11-13 8:07 ` Jan Beulich
2015-11-13 14:11 ` Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 04/28] build: convert HAS_PASSTHROUGH use to Kconfig Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 05/28] build: convert HAS_DEVICE_TREE " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 06/28] build: convert HAS_PCI " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 07/28] build: convert HAS_NS16550 " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 08/28] build: convert HAS_IOPORTS " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 09/28] build: convert HAS_ACPI " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 10/28] build: convert HAS_VIDEO " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 11/28] build: convert HAS_VGA " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 12/28] build: convert HAS_CPUFREQ " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 13/28] build: convert HAS_GDBSX " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 14/28] build: convert HAS_PDX " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 15/28] build: convert HAS_KEXEC " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 16/28] build: convert HAS_ARM_HDLCD " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 17/28] build: convert HAS_CADENCE_UART " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 18/28] build: convert HAS_PL011 " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 19/28] build: convert HAS_EXYNOS4210 " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 20/28] build: convert HAS_OMAP " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 21/28] build: convert HAS_SCIF " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 22/28] build: convert HAS_EHCI " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 23/28] build: convert HAS_MEM_ACCESS " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 24/28] build: convert HAS_MEM_PAGING " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 25/28] build: convert HAS_MEM_SHARING " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 26/28] build: convert HAS_GICV3 " Doug Goldstein
2015-11-13 11:17 ` Julien Grall [this message]
2015-11-12 22:54 ` [PATCHv3] 27/28] build: convert CONFIG_COMPAT " Doug Goldstein
2015-11-12 22:54 ` [PATCHv3] 28/28] build: convert kexec options to CONFIG_KEXEC Doug Goldstein
2015-11-13 11:41 ` [PATCHv3] 00/28] Kconfig conversion Julien Grall
2015-11-13 12:54 ` Jan Beulich
2015-11-13 13:30 ` Julien Grall
2015-11-13 22:31 ` Doug Goldstein
2015-11-13 22:47 ` Doug Goldstein
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=5645C6DC.2070202@citrix.com \
--to=julien.grall@citrix.com \
--cc=cardoe@cardoe.com \
--cc=ian.campbell@citrix.com \
--cc=stefano.stabellini@citrix.com \
--cc=xen-devel@lists.xen.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.