All of lore.kernel.org
 help / color / mirror / Atom feed
From: Doug Goldstein <cardoe@cardoe.com>
To: Ian Campbell <ian.campbell@citrix.com>,
	Ian Jackson <ian.jackson@eu.citrix.com>,
	Jan Beulich <JBeulich@suse.com>,
	Andrew Cooper <andrew.cooper3@citrix.com>,
	Wei Liu <wei.liu2@citrix.com>, Keir Fraser <keir@xen.org>,
	Tim Deegan <tim@xen.org>,
	xen-devel@lists.xen.org
Subject: Re: [PATCHv6] 00/28] Kconfig conversion
Date: Wed, 2 Dec 2015 21:02:25 -0600	[thread overview]
Message-ID: <565FB0C1.8010101@cardoe.com> (raw)
In-Reply-To: <1448387538-12208-1-git-send-email-cardoe@cardoe.com>


[-- Attachment #1.1: Type: text/plain, Size: 3802 bytes --]

On 11/24/15 11:51 AM, Doug Goldstein wrote:
> The following series is a follow on to the Kconfig conversion patch series.
> There are still more components to convert however this is the bare minimal
> to get everything working and get the options out of the existing makefiles.
> 
> The CONFIG_HAS_ variables are there to match the behavior of the Linux
> CONFIG_HAVE_ variables. The purpose is to say that this hardware/profile/env
> supports this option while the CONFIG_ variable states that this option was
> requested on/off by user intervention.
> 
> The UARTs are now uniformly prefixed as CONFIG_UART_ and dropping most of the
> CONFIG_HAS_ labeling for them. This means they are now user selectable as
> requested by Julien Grall in the prior review. The question I've got is
> the old config was just for selecting defaults. Users could enable the OMAP
> UART for arm64 for example but I'm not sure if that's valid. Currently this
> patchset makes those UARTs not user selectable if they were not previously
> defaulted on. But I would like some feedback on this if possible.
> 
> Ultimately my goal is to allow for more parts of the hypervisor to be turned
> off at compile time and potentially make it easier to include more
> experimental features by others which can be turned off by default. Also to
> provide the one true location for all possible knobs in the source code.
> 
> The patch series can be grabbed at:
> https://github.com/cardoe/xen/tree/kconfig_v6
> 
> Changes since v5:
> - added Andrew Cooper's Acked-by and Tested-by
> - rebased to resolve conflict with NUMA changes in staging (minor conflict)
> 
> Changes since v4:
> - v4 was an oops and was a resend of v3. So the 'Changes since v3' apply here.
> 
> Changes since v3:
> - fix dependency inversion causing options to appear to flip back on (hi kexec)
> - separate out wiring up Kconfig and then using it in the build (added patch 3)
> - dropped the old patch 3
> - changed UART configs to be prefixed as CONFIG_UART_
> - changed ARM UART defaults
> 
> Changes since v2:
> - drop x86_32 support (patch 2)
> - fix make defconfig (patch 2)
> - fix 'make -C xen' vs 'cd xen && make' behaving differently (patch 2)
> - fix for ARM64 builds (added patch 3)
> - At this point all targets are tested on x86_64, arm32, and arm64 with
>   fresh clones and rebuilds.
> 
> Changes since v1:
> - hopefully addressed all review comments
> - added CCs to all maintainers from get_maintainer.pl as requested
> - drop Kbuild to build Kconfig and instead port the Makefile to the Xen env
> - add support for xconfig/gconfig
> - include Kconfig docs from Linux
> 

All,

There's been quite a few comments on this series and I'll admit I'm a
bit lost as to the requested direction for the series so just to clear
things up I'm going to send this out and address all the items before
the next repost. My goal is to save you all time as reviewers so that
hopefully you'll only have to review one more series.

1. Remove the KEXEC patch from this series and add it to the follow-on
series?

2. Drop UART changes and just go back to the mechanical changes that
enable the UARTs on ARM as they are today. The early patches failed to
remove the items from config/arm{32,64}.mk but remedy that.

3. sync the (A) entire linux/scripts/kconfig directory or (B) basics
from linux/scripts/kconfig or (C) basics + frontends for future series
when user-configurable options are presented. Note: Option B will
require not just copying files but making modifications (read: forking)
until a more complete copy is brought over.

4. Should I rename xen/scripts/kconfig to xen/tools/kconfig?

5. Should I drop as much $(BASEDIR) usage as possible?

-- 
Doug Goldstein


[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 959 bytes --]

[-- Attachment #2: Type: text/plain, Size: 126 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

  parent reply	other threads:[~2015-12-03  3:02 UTC|newest]

Thread overview: 93+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-24 17:51 [PATCHv6] 00/28] Kconfig conversion Doug Goldstein
2015-11-24 17:51 ` [PATCHv6] 01/28] build: import Kbuild/Kconfig from Linux 4.2 Doug Goldstein
2015-11-30 13:59   ` Jan Beulich
2015-11-30 15:34     ` Doug Goldstein
2015-11-30 15:42       ` Ian Jackson
2015-11-30 17:03         ` Jan Beulich
2015-11-30 17:16           ` Ian Jackson
2015-11-30 17:21             ` Ian Campbell
2015-12-01 11:00             ` Jan Beulich
2015-12-02 10:39               ` Ian Campbell
2015-12-03 16:04                 ` Doug Goldstein
2015-11-30 15:55       ` Jan Beulich
2015-11-30 17:00         ` Doug Goldstein
2015-11-30 17:04           ` Ian Jackson
2015-11-30 17:10             ` Doug Goldstein
2015-11-30 17:19           ` Ian Campbell
2015-12-01 20:04             ` Doug Goldstein
2015-12-02  9:38               ` Jan Beulich
2015-12-02 14:34                 ` Doug Goldstein
2015-12-02  9:47               ` Ian Campbell
2015-12-02 14:33                 ` Doug Goldstein
2015-12-01 11:01           ` Jan Beulich
2015-11-24 17:51 ` [PATCHv6] 02/28] build: build Kconfig and config rules Doug Goldstein
2015-11-30 14:36   ` Jan Beulich
2015-11-30 17:53     ` Doug Goldstein
2015-12-01 11:22       ` Jan Beulich
2015-12-03  0:34         ` Doug Goldstein
2015-12-03  8:57           ` Jan Beulich
2015-12-07 21:27             ` Doug Goldstein
2015-12-08  7:32               ` Jan Beulich
2015-12-08 14:16                 ` Doug Goldstein
2015-12-08 14:25                   ` Jan Beulich
2015-12-08 17:59                     ` Doug Goldstein
2015-12-08 18:04                       ` Andrew Cooper
2015-12-09 10:13                         ` Ian Campbell
2015-11-24 17:51 ` [PATCHv6] 03/28] build: use generated Kconfig options for Xen Doug Goldstein
2015-11-30 14:45   ` Jan Beulich
2015-12-08 19:53     ` Doug Goldstein
2015-12-09  8:40       ` Jan Beulich
2015-12-09 20:34         ` Doug Goldstein
2015-12-09 20:53           ` Doug Goldstein
2015-12-10 11:45             ` Jan Beulich
2015-12-10 11:43           ` Jan Beulich
2015-11-24 17:51 ` [PATCHv6] 04/28] build: convert HAS_PASSTHROUGH use to Kconfig Doug Goldstein
2015-11-30 14:50   ` Jan Beulich
2015-12-03  0:36     ` Doug Goldstein
2015-12-03  8:58       ` Jan Beulich
2015-11-24 17:51 ` [PATCHv6] 05/28] build: convert HAS_DEVICE_TREE " Doug Goldstein
2015-11-24 17:51 ` [PATCHv6] 06/28] build: convert HAS_PCI " Doug Goldstein
2015-11-24 17:51 ` [PATCHv6] 07/28] build: convert HAS_NS16550 " Doug Goldstein
2015-11-30 14:55   ` Jan Beulich
2015-11-24 17:51 ` [PATCHv6] 08/28] build: convert HAS_IOPORTS " Doug Goldstein
2015-11-30 14:56   ` Jan Beulich
2015-11-30 15:01     ` Jan Beulich
2015-12-03  0:39       ` Doug Goldstein
2015-12-03  9:06         ` Jan Beulich
2015-11-24 17:51 ` [PATCHv6] 09/28] build: convert HAS_ACPI " Doug Goldstein
2015-11-24 17:52 ` [PATCHv6] 10/28] build: convert HAS_VIDEO " Doug Goldstein
2015-11-30 15:03   ` Jan Beulich
2015-11-24 17:52 ` [PATCHv6] 11/28] build: convert HAS_VGA " Doug Goldstein
2015-11-30 15:04   ` Jan Beulich
2015-11-24 17:52 ` [PATCHv6] 12/28] build: convert HAS_CPUFREQ " Doug Goldstein
2015-11-24 17:52 ` [PATCHv6] 13/28] build: convert HAS_GDBSX " Doug Goldstein
2015-11-30 15:06   ` Jan Beulich
2015-11-24 17:52 ` [PATCHv6] 14/28] build: convert HAS_PDX " Doug Goldstein
2015-11-24 17:52 ` [PATCHv6] 15/28] build: convert HAS_KEXEC " Doug Goldstein
2015-11-30 15:10   ` Jan Beulich
2015-11-24 17:52 ` [PATCHv6] 16/28] build: convert HAS_ARM_HDLCD " Doug Goldstein
2015-11-24 17:52 ` [PATCHv6] 17/28] build: convert HAS_CADENCE_UART " Doug Goldstein
2015-11-24 17:52 ` [PATCHv6] 18/28] build: convert HAS_PL011 " Doug Goldstein
2015-11-24 17:52 ` [PATCHv6] 19/28] build: convert HAS_EXYNOS4210 " Doug Goldstein
2015-11-24 17:52 ` [PATCHv6] 20/28] build: convert HAS_OMAP " Doug Goldstein
2015-11-24 17:52 ` [PATCHv6] 21/28] build: convert HAS_SCIF " Doug Goldstein
2015-11-24 17:52 ` [PATCHv6] 22/28] build: convert HAS_EHCI " Doug Goldstein
2015-11-30 15:13   ` Jan Beulich
2015-11-24 17:52 ` [PATCHv6] 23/28] build: convert HAS_MEM_ACCESS " Doug Goldstein
2015-11-24 17:52 ` [PATCHv6] 24/28] build: convert HAS_MEM_PAGING " Doug Goldstein
2015-11-30 15:16   ` Jan Beulich
2015-11-24 17:52 ` [PATCHv6] 25/28] build: convert HAS_MEM_SHARING " Doug Goldstein
2015-11-24 17:52 ` [PATCHv6] 26/28] build: convert HAS_GICV3 " Doug Goldstein
2015-11-24 17:52 ` [PATCHv6] 27/28] build: convert CONFIG_COMPAT " Doug Goldstein
2015-11-30 15:18   ` Jan Beulich
2015-12-03 12:52     ` Doug Goldstein
2015-12-03 12:54       ` Jan Beulich
2015-11-24 17:52 ` [PATCHv6] 28/28] build: convert kexec options to CONFIG_KEXEC Doug Goldstein
2015-11-30 15:51 ` [PATCHv6] 00/28] Kconfig conversion Julien Grall
2015-11-30 17:05   ` Doug Goldstein
2015-11-30 17:13     ` Julien Grall
2015-12-03  3:02 ` Doug Goldstein [this message]
2015-12-03  8:29   ` Jan Beulich
2015-12-03  9:50     ` Ian Campbell
2015-12-03 11:00       ` Jan Beulich
2015-12-03 11:10         ` Ian Campbell

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=565FB0C1.8010101@cardoe.com \
    --to=cardoe@cardoe.com \
    --cc=JBeulich@suse.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=ian.campbell@citrix.com \
    --cc=ian.jackson@eu.citrix.com \
    --cc=keir@xen.org \
    --cc=tim@xen.org \
    --cc=wei.liu2@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.