public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* EXPORT_SYMBOL(local_apic_enabled);
@ 2001-09-26 14:01 John Levon
  0 siblings, 0 replies; only message in thread
From: John Levon @ 2001-09-26 14:01 UTC (permalink / raw)
  To: linux-kernel


My module needs use of the local APIC for performance counter setup.

Currently I am detecting the various ways it can be enabled/disabled as follows :

static int __init apic_needs_setup(void)
{
        return
/* if enabled, the kernel has already set it up */
#ifdef CONFIG_X86_UP_APIC
        0 &&
#else
/* 2.4.10 and above do the necessary setup */
#if LINUX_VERSION_CODE > KERNEL_VERSION(2,4,9)
        0 &&
#else
/* otherwise, we detect SMP hardware via the MP table */
        !smp_hardware &&
#endif /* 2.4.10 */
#endif /* CONFIG_X86_UP_APIC */
        smp_num_cpus == 1;
}

this is obviously ugly, and more importantly fails when passing noapic,nosmp etc.
as boot options.

How would people feel about exporting a flag for local APIC setup that modules can look at ?
If it's OK I'll send a patch.

My module is not the only one that needs this (e.g. the APIC timers module)

regards
john

-- 
"Khendon's Law: If the same point is made twice by the same person,
 the thread is over."

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2001-09-26 14:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-09-26 14:01 EXPORT_SYMBOL(local_apic_enabled); John Levon

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