public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH, v2] i386: tighten dependencies of CPU_SUP_*_32
@ 2011-04-28  9:03 Jan Beulich
  2011-04-28 16:42 ` Dave Jones
  0 siblings, 1 reply; 3+ messages in thread
From: Jan Beulich @ 2011-04-28  9:03 UTC (permalink / raw)
  To: mingo, tglx, hpa; +Cc: linux-kernel

Building in support for either of these CPUs is pointless when e.g.
M686 was selected (as such a kernel would use cmov instructions, which
aren't available on these older CPUs).

v2: Drop (inapprorpiate) change to CPU_SUP_TRANSMETA_32.

Signed-off-by: Jan Beulich <jbeulich@novell.com>

---
 arch/x86/Kconfig.cpu |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

--- 2.6.39-rc5/arch/x86/Kconfig.cpu
+++ 2.6.39-rc5-i386-cpu-sup-dependencies/arch/x86/Kconfig.cpu
@@ -440,7 +440,7 @@ config CPU_SUP_INTEL
 config CPU_SUP_CYRIX_32
 	default y
 	bool "Support Cyrix processors" if PROCESSOR_SELECT
-	depends on !64BIT
+	depends on M386 || M486 || M586 || M586TSC || M586MMX || (EXPERT && !64BIT)
 	---help---
 	  This enables detection, tunings and quirks for Cyrix processors
 
@@ -494,7 +494,7 @@ config CPU_SUP_TRANSMETA_32
 config CPU_SUP_UMC_32
 	default y
 	bool "Support UMC processors" if PROCESSOR_SELECT
-	depends on !64BIT
+	depends on M386 || M486 || (EXPERT && !64BIT)
 	---help---
 	  This enables detection, tunings and quirks for UMC processors
 




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH, v2] i386: tighten dependencies of CPU_SUP_*_32
  2011-04-28  9:03 [PATCH, v2] i386: tighten dependencies of CPU_SUP_*_32 Jan Beulich
@ 2011-04-28 16:42 ` Dave Jones
  2011-04-29  6:54   ` Jan Beulich
  0 siblings, 1 reply; 3+ messages in thread
From: Dave Jones @ 2011-04-28 16:42 UTC (permalink / raw)
  To: Jan Beulich; +Cc: mingo, tglx, hpa, linux-kernel

On Thu, Apr 28, 2011 at 10:03:39AM +0100, Jan Beulich wrote:
 
 > --- 2.6.39-rc5/arch/x86/Kconfig.cpu
 > +++ 2.6.39-rc5-i386-cpu-sup-dependencies/arch/x86/Kconfig.cpu
 > @@ -440,7 +440,7 @@ config CPU_SUP_INTEL
 >  config CPU_SUP_CYRIX_32
 >  	default y
 >  	bool "Support Cyrix processors" if PROCESSOR_SELECT
 > -	depends on !64BIT
 > +	depends on M386 || M486 || M586 || M586TSC || M586MMX || (EXPERT && !64BIT)
 >  	---help---
 >  	  This enables detection, tunings and quirks for Cyrix processors
 >  
 > @@ -494,7 +494,7 @@ config CPU_SUP_TRANSMETA_32
 >  config CPU_SUP_UMC_32
 >  	default y
 >  	bool "Support UMC processors" if PROCESSOR_SELECT
 > -	depends on !64BIT
 > +	depends on M386 || M486 || (EXPERT && !64BIT)
 >  	---help---
 >  	  This enables detection, tunings and quirks for UMC processors

PROCESSOR_SELECT is already dependant on EXPERT being set.

	Dave


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH, v2] i386: tighten dependencies of CPU_SUP_*_32
  2011-04-28 16:42 ` Dave Jones
@ 2011-04-29  6:54   ` Jan Beulich
  0 siblings, 0 replies; 3+ messages in thread
From: Jan Beulich @ 2011-04-29  6:54 UTC (permalink / raw)
  To: Dave Jones; +Cc: mingo, tglx, linux-kernel, hpa

>>> On 28.04.11 at 18:42, Dave Jones <davej@redhat.com> wrote:
> On Thu, Apr 28, 2011 at 10:03:39AM +0100, Jan Beulich wrote:
>  
>  > --- 2.6.39-rc5/arch/x86/Kconfig.cpu
>  > +++ 2.6.39-rc5-i386-cpu-sup-dependencies/arch/x86/Kconfig.cpu
>  > @@ -440,7 +440,7 @@ config CPU_SUP_INTEL
>  >  config CPU_SUP_CYRIX_32
>  >  	default y
>  >  	bool "Support Cyrix processors" if PROCESSOR_SELECT
>  > -	depends on !64BIT
>  > +	depends on M386 || M486 || M586 || M586TSC || M586MMX || (EXPERT && !64BIT)
>  >  	---help---
>  >  	  This enables detection, tunings and quirks for Cyrix processors
>  >  
>  > @@ -494,7 +494,7 @@ config CPU_SUP_TRANSMETA_32
>  >  config CPU_SUP_UMC_32
>  >  	default y
>  >  	bool "Support UMC processors" if PROCESSOR_SELECT
>  > -	depends on !64BIT
>  > +	depends on M386 || M486 || (EXPERT && !64BIT)
>  >  	---help---
>  >  	  This enables detection, tunings and quirks for UMC processors
> 
> PROCESSOR_SELECT is already dependant on EXPERT being set.

If EXPERT was omitted from the depends condition, then the whole
option would be unavailable (and hence the prompt invisible) even
if PROCESSOR_SELECT=y (and e.g. M686=y).

The intention, however, is to allow the option to be selectable in
an EXPERT configuration (to have a temporary workaround in
case the condition set isn't precise, or to do testing on
hypothetical new CPUs).

Or to put it differently, the intended behavior change is precisely
for the PROCESSOR_SELECT=n case, so that no impossible CPUs
get auto-enabled.

Jan


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-04-29  6:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-28  9:03 [PATCH, v2] i386: tighten dependencies of CPU_SUP_*_32 Jan Beulich
2011-04-28 16:42 ` Dave Jones
2011-04-29  6:54   ` Jan Beulich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox