linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* dead(?) i386-related CONFIG variables
@ 2007-07-05 11:27 Robert P. J. Day
  2007-07-06 12:28 ` Stefan Richter
  2007-07-06 16:08 ` Jeremy Fitzhardinge
  0 siblings, 2 replies; 4+ messages in thread
From: Robert P. J. Day @ 2007-07-05 11:27 UTC (permalink / raw)
  To: Linux Kernel Mailing List


  since it's not clear who a single contact person would be for
i386-related stuff like this, here's what my script turned up for
tests on non-existent CONFIG variables under arch/i386:

========== BALANCED_IRQ_DEBUG ==========
arch/i386/kernel/io_apic.c:356:#ifdef CONFIG_BALANCED_IRQ_DEBUG
========== DEBUG_PAGE_TYPE ==========
arch/i386/kernel/vmi.c:238:#ifdef CONFIG_DEBUG_PAGE_TYPE
========== SERIAL_DETECT_IRQ ==========
arch/i386/kernel/legacy_serial.c:18:#ifdef CONFIG_SERIAL_DETECT_IRQ

  feel free to take this as seriously as you want.  :-)

rday
-- 
========================================================================
Robert P. J. Day
Linux Consulting, Training and Annoying Kernel Pedantry
Waterloo, Ontario, CANADA

http://fsdev.net/wiki/index.php?title=Main_Page
========================================================================

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

* Re: dead(?) i386-related CONFIG variables
  2007-07-05 11:27 dead(?) i386-related CONFIG variables Robert P. J. Day
@ 2007-07-06 12:28 ` Stefan Richter
  2007-07-06 12:42   ` Robert P. J. Day
  2007-07-06 16:08 ` Jeremy Fitzhardinge
  1 sibling, 1 reply; 4+ messages in thread
From: Stefan Richter @ 2007-07-06 12:28 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: Linux Kernel Mailing List

On 7/5/2007 1:27 PM, Robert P. J. Day wrote:
>   since it's not clear who a single contact person would be for
> i386-related stuff like this, here's what my script turned up for
> tests on non-existent CONFIG variables under arch/i386:
> 
> ========== BALANCED_IRQ_DEBUG ==========
> arch/i386/kernel/io_apic.c:356:#ifdef CONFIG_BALANCED_IRQ_DEBUG

-#ifdef CONFIG_BALANCED_IRQ_DEBUG
+#if 0 /* debug IRQ balancing */

> ========== DEBUG_PAGE_TYPE ==========
> arch/i386/kernel/vmi.c:238:#ifdef CONFIG_DEBUG_PAGE_TYPE

-#ifdef CONFIG_DEBUG_PAGE_TYPE
+#if 0 /* debug page type */

arch/i386/kernel/vmi.c:339

-#endif
+#endif /* debug page type */

> ========== SERIAL_DETECT_IRQ ==========
> arch/i386/kernel/legacy_serial.c:18:#ifdef CONFIG_SERIAL_DETECT_IRQ

Hmm, not sure about this.  The code section was taken from
include/asm-{i386,x86_64}/serial.h.  This is an option similar to other
CONFIG_SERIAL_ options in numerous places.

Serial drivers are orphaned, aren't they?

>   feel free to take this as seriously as you want.  :-)
> 
> rday

-- 
Stefan Richter
-=====-=-=== -=== --==-
http://arcgraph.de/sr/

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

* Re: dead(?) i386-related CONFIG variables
  2007-07-06 12:28 ` Stefan Richter
@ 2007-07-06 12:42   ` Robert P. J. Day
  0 siblings, 0 replies; 4+ messages in thread
From: Robert P. J. Day @ 2007-07-06 12:42 UTC (permalink / raw)
  To: Stefan Richter; +Cc: Linux Kernel Mailing List

On Fri, 6 Jul 2007, Stefan Richter wrote:

> On 7/5/2007 1:27 PM, Robert P. J. Day wrote:
> >   since it's not clear who a single contact person would be for
> > i386-related stuff like this, here's what my script turned up for
> > tests on non-existent CONFIG variables under arch/i386:
> >
> > ========== BALANCED_IRQ_DEBUG ==========
> > arch/i386/kernel/io_apic.c:356:#ifdef CONFIG_BALANCED_IRQ_DEBUG
>
> -#ifdef CONFIG_BALANCED_IRQ_DEBUG
> +#if 0 /* debug IRQ balancing */
>
> > ========== DEBUG_PAGE_TYPE ==========
> > arch/i386/kernel/vmi.c:238:#ifdef CONFIG_DEBUG_PAGE_TYPE
>
> -#ifdef CONFIG_DEBUG_PAGE_TYPE
> +#if 0 /* debug page type */
>
> arch/i386/kernel/vmi.c:339
>
> -#endif
> +#endif /* debug page type */
>
> > ========== SERIAL_DETECT_IRQ ==========
> > arch/i386/kernel/legacy_serial.c:18:#ifdef CONFIG_SERIAL_DETECT_IRQ
>
> Hmm, not sure about this.  The code section was taken from
> include/asm-{i386,x86_64}/serial.h.  This is an option similar to other
> CONFIG_SERIAL_ options in numerous places.
>
> Serial drivers are orphaned, aren't they?

i can submit patches for the first two (i'll keep them separate since
they don't appear to be related enough to make a single patch out of
them).  and i'll wait to hear about that last one.

rday
-- 
========================================================================
Robert P. J. Day
Linux Consulting, Training and Annoying Kernel Pedantry
Waterloo, Ontario, CANADA

http://fsdev.net/wiki/index.php?title=Main_Page
========================================================================

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

* Re: dead(?) i386-related CONFIG variables
  2007-07-05 11:27 dead(?) i386-related CONFIG variables Robert P. J. Day
  2007-07-06 12:28 ` Stefan Richter
@ 2007-07-06 16:08 ` Jeremy Fitzhardinge
  1 sibling, 0 replies; 4+ messages in thread
From: Jeremy Fitzhardinge @ 2007-07-06 16:08 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: Linux Kernel Mailing List, Zachary Amsden

Robert P. J. Day wrote:
> ========== DEBUG_PAGE_TYPE ==========
> arch/i386/kernel/vmi.c:238:#ifdef CONFIG_DEBUG_PAGE_TYPE

That's a leftover from some of Zach's debug goo.  I don't think it was 
ever a real config option (at least, not outside VMWare).

    J

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

end of thread, other threads:[~2007-07-06 16:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-05 11:27 dead(?) i386-related CONFIG variables Robert P. J. Day
2007-07-06 12:28 ` Stefan Richter
2007-07-06 12:42   ` Robert P. J. Day
2007-07-06 16:08 ` Jeremy Fitzhardinge

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).