From: Randy Dunlap <rdunlap@xenotime.net>
To: Ingo Molnar <mingo@elte.hu>
Cc: Theodore Tso <tytso@MIT.EDU>,
David Woodhouse <dwmw2@infradead.org>,
x86@kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] Fix corruption of CONFIG_X86_32 in 'make oldconfig'
Date: Mon, 30 May 2011 10:29:52 -0700 [thread overview]
Message-ID: <20110530102952.ede4089a.rdunlap@xenotime.net> (raw)
In-Reply-To: <20110530113036.GA22324@elte.hu>
On Mon, 30 May 2011 13:30:36 +0200 Ingo Molnar wrote:
>
> * Theodore Tso <tytso@MIT.EDU> wrote:
>
> >
> > On May 30, 2011, at 6:58 AM, Ingo Molnar wrote:
> >
> > >
> > > * Theodore Tso <tytso@MIT.EDU> wrote:
> > >
> > >> I'd think that "make ARCH=x86_64 oldconfig"
> > >>
> > >> ... where the old configuration contained CONFIG_X86_32
> > >> should trigger a warning, if not an outright error that
> > >> stops the build....
> > >
> > > That would be a rather sad regression for me: i use that command
> > > regularly to transform .configs that came in bugreports into a config
> > > suitable for a testbox that has a different bitness userspace
> > > installed.
> >
> > OK, so to clarify, what you want is for ARCH=xxx to always override
> > whatever is in .config? [...]
>
> If 'xxx' clearly signals both architecture and bitness then it should
> override both the architecture and the bitness of the .config -
> that's both common-sense and currently implemented (and relied on)
> behavior.
>
> 'ARCH=x86 oldconfig' should maintain bitness in the .config like it
> does today, because the 'xxx' only specifies the architecture.
>
> [ Btw., 'override the architecture' usecase is not just theoretical:
> i sometimes use this form to convert existing .config's *between*
> architectures, not just from 32-bit to 64-bit. So if i get an ARM
> bugreport that gives me the appearance of a core kernel bug i will
> often start by converting that to an x86 .config via 'make
> ARCH=x86_64 oldconfig'. ]
>
> > Are we all on the same page here? [...]
>
> I think this thread makes it rather clear that David and me are not
> on the same page. Not sure about you :)
>
> > [...] I thought David was arguing that what was in .config should
> > always be more important, since he regards "ARCH=xxxx" as "legacy".
>
> Well i (and current behavior) argue that what the user types actually
> has a meaning and a purpose and provides an override to other
> environmental data.
>
> > Or maybe I'm missing something here.... since people seem to be
> > slinging around examples what should or should not work, as opposed
> > to simply saying, "ARCH=xxx" must always override all else, even in
> > cases like "oldconfig", "randconfig", etc. Is that what the patch
> > is going to do?
>
> I said it from mail #1 on that "ARCH=xxx" must override the .config
> [except in cases like ARCH=x86 where 'xxx' does not imply bitness]
> and must modify/filter other typed arguments
> (randconfig/allnoconfig/allyesconfig, etc.) in an intuitive and
> common-sense fashion.
>
> > All this talk of how it's OK for randconfig to give you i386 50% of
> > the time even when ARCH=x86_64 is specified is confusing me? Maybe
> > that was just intended to be sarcasm?
>
> That was the original regression i reported to David. So yes, i do
> argue, and argued from day 1 on (which was 2 years ago) that
> 'ARCH=i386' and 'ARCH=x86_64' should override secondary sources of
> environment.
AFAIK, command line options in kbuild always override other settings,
so this should remain consistent.
And yes, I also use lots of these same commands that Ingo uses, both in
scripts and non-scripted (by hand).
> It's just that David has not accepted my reasoning and has given a
> changelog that describes the topic in a rather one-sided fashion.
---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
next prev parent reply other threads:[~2011-05-30 17:29 UTC|newest]
Thread overview: 88+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-05-29 22:14 David Woodhouse
2011-05-30 7:23 ` Ingo Molnar
2011-05-30 8:57 ` David Woodhouse
2011-05-30 9:15 ` Ingo Molnar
2011-05-30 9:27 ` David Woodhouse
2011-05-30 9:53 ` Ingo Molnar
2011-05-30 10:06 ` David Woodhouse
2011-05-30 10:25 ` Ingo Molnar
2011-05-30 11:01 ` David Woodhouse
2011-05-30 11:04 ` Ingo Molnar
2011-05-30 11:12 ` David Woodhouse
2011-05-30 11:42 ` Ingo Molnar
2011-05-30 11:55 ` David Woodhouse
2011-05-30 12:11 ` Ingo Molnar
2011-05-31 8:53 ` Geert Uytterhoeven
2011-05-31 10:48 ` Ingo Molnar
2011-05-30 10:40 ` Alexey Dobriyan
2011-05-30 10:09 ` [PATCH v2] x86, kconfig: Pick up the .config arch version " David Woodhouse
2011-06-24 13:37 ` Michal Marek
2011-06-24 14:45 ` David Woodhouse
2011-05-30 10:42 ` [PATCH] Fix corruption of CONFIG_X86_32 " Ingo Molnar
2011-05-30 10:46 ` Ingo Molnar
2011-05-30 10:53 ` Theodore Tso
2011-05-30 10:58 ` Ingo Molnar
2011-05-30 11:04 ` Theodore Tso
2011-05-30 11:30 ` Ingo Molnar
2011-05-30 17:29 ` Randy Dunlap [this message]
2011-05-30 11:57 ` David Woodhouse
2011-05-30 12:14 ` Ingo Molnar
2011-05-30 19:03 ` David Woodhouse
2011-05-30 19:55 ` Ted Ts'o
2011-05-30 20:12 ` David Woodhouse
2011-05-30 22:39 ` [PATCH] Enable 'make CONFIG_FOO=y oldconfig' David Woodhouse
2011-05-31 0:24 ` Arnaud Lacombe
2011-05-31 15:48 ` David Woodhouse
2011-05-31 16:12 ` Arnaud Lacombe
2011-06-24 13:49 ` Michal Marek
2011-07-29 23:32 ` [PATCH v2] " David Woodhouse
2011-07-30 1:15 ` Arnaud Lacombe
2011-07-30 9:04 ` David Woodhouse
2011-07-30 0:49 ` [PATCH v3] x86, kconfig: Default to ARCH=x86 to avoid overriding CONFIG_64BIT David Woodhouse
2011-07-30 1:26 ` Arnaud Lacombe
2011-07-30 8:37 ` David Woodhouse
2011-07-30 15:21 ` Arnaud Lacombe
2011-07-30 15:52 ` Arnaud Lacombe
2011-07-30 16:19 ` David Woodhouse
2011-07-30 16:33 ` Arnaud Lacombe
2011-07-30 18:59 ` H. Peter Anvin
2011-07-30 20:58 ` David Woodhouse
2011-07-30 22:03 ` H. Peter Anvin
2011-07-30 22:17 ` David Woodhouse
2011-07-30 22:21 ` H. Peter Anvin
2011-07-30 22:24 ` Arnaud Lacombe
2011-07-30 22:34 ` David Woodhouse
2011-07-30 22:39 ` H. Peter Anvin
2011-07-30 22:21 ` Arnaud Lacombe
2011-07-30 22:57 ` David Woodhouse
2011-07-31 19:40 ` Arnaud Lacombe
2011-07-31 20:00 ` David Woodhouse
2011-07-31 20:24 ` Arnaud Lacombe
2011-07-31 20:51 ` David Woodhouse
2011-07-31 5:18 ` Arnaud Lacombe
2011-07-31 8:13 ` David Woodhouse
2011-07-31 21:47 ` Arnaud Lacombe
2011-07-31 21:51 ` Arnaud Lacombe
2011-05-31 1:44 ` [PATCH] Fix corruption of CONFIG_X86_32 in 'make oldconfig' Ted Ts'o
2011-05-31 8:37 ` David Woodhouse
2011-05-31 7:53 ` Ingo Molnar
2011-05-31 8:55 ` David Woodhouse
2011-05-31 10:41 ` Ingo Molnar
2011-05-31 11:43 ` David Woodhouse
2011-05-31 12:45 ` Ingo Molnar
2011-05-31 13:44 ` David Woodhouse
2011-05-31 13:56 ` Ingo Molnar
2011-05-31 14:31 ` David Woodhouse
2011-05-31 14:14 ` Geert Uytterhoeven
2011-05-31 12:12 ` Ted Ts'o
2011-05-31 12:32 ` David Woodhouse
2011-05-31 12:50 ` Ingo Molnar
2011-05-30 11:06 ` David Woodhouse
2011-05-30 11:34 ` Ingo Molnar
2011-05-30 11:05 ` Arnd Bergmann
2011-05-30 17:27 ` Randy Dunlap
2011-05-30 18:40 ` Arnd Bergmann
2011-05-30 20:01 ` Randy Dunlap
2011-05-30 20:30 ` Arnaud Lacombe
2011-05-30 21:04 ` Arnd Bergmann
2011-05-30 21:16 ` Randy Dunlap
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=20110530102952.ede4089a.rdunlap@xenotime.net \
--to=rdunlap@xenotime.net \
--cc=dwmw2@infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=tytso@MIT.EDU \
--cc=x86@kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®