* [Patch] tsc-disable_A5
@ 2002-06-14 18:35 john stultz
2002-06-14 18:53 ` Benjamin LaHaise
` (2 more replies)
0 siblings, 3 replies; 14+ messages in thread
From: john stultz @ 2002-06-14 18:35 UTC (permalink / raw)
To: marcelo; +Cc: lkml, Martin J. Bligh
[-- Attachment #1: Type: text/plain, Size: 716 bytes --]
Hey Marcelo,
I know its probably poor form to send this out so close to -rc, but I
figured I might as well give it a shot. I'll happily resubmit this for
the .20pre series later if you'd prefer.
This patch disables the TSCs when compiled for Multiquad NUMA hardware.
Due to the slower interconnect, the TSCs aren't being synced properly at
boot time. Even if they were synced, since the different nodes are
driven by different crystals, the TSCs still drift.
This results in sequential calls to gettimeofday to return
non-sequential time values. By disabling the TSCs on these boxes, it
forces gettimeofday to use the PIC clock instead, fixing the problem.
Let me know if you have any comments.
Thanks
-john
[-- Attachment #2: linux-2.4.19-pre10_tsc-disable_A5.patch --]
[-- Type: text/x-patch, Size: 4483 bytes --]
diff -Nru a/arch/i386/config.in b/arch/i386/config.in
--- a/arch/i386/config.in Thu Jun 13 20:01:09 2002
+++ b/arch/i386/config.in Thu Jun 13 20:01:09 2002
@@ -198,7 +198,17 @@
define_bool CONFIG_X86_IO_APIC y
fi
else
- bool 'Multiquad NUMA system' CONFIG_MULTIQUAD
+ bool 'Multiquad NUMA support' CONFIG_X86_NUMA
+ if [ "$CONFIG_X86_NUMA" = "y" ]; then
+ choice 'NUMA Hardware Selection' \
+ "NUMAQ CONFIG_X86_NUMAQ \
+ x440 CONFIG_X86_X440" NUMAQ
+ if [ "$CONFIG_X86_NUMAQ" = "y" ]; then
+ define_bool CONFIG_MULTIQUAD y
+ fi
+ # Multiquad NUMA boxes can't keep their TSCs in sync
+ define_bool CONFIG_TSC_DISABLE y
+ fi
fi
if [ "$CONFIG_SMP" = "y" -a "$CONFIG_X86_CMPXCHG" = "y" ]; then
diff -Nru a/arch/i386/kernel/setup.c b/arch/i386/kernel/setup.c
--- a/arch/i386/kernel/setup.c Thu Jun 13 20:01:09 2002
+++ b/arch/i386/kernel/setup.c Thu Jun 13 20:01:09 2002
@@ -1127,8 +1127,12 @@
__setup("cachesize=", cachesize_setup);
-#ifndef CONFIG_X86_TSC
+#if !defined(CONFIG_X86_TSC)||defined(CONFIG_TSC_DISABLE)
+#ifdef CONFIG_TSC_DISABLE
+static int tsc_disable __initdata = 1;
+#else /*CONFIG_TSC_DISABLE*/
static int tsc_disable __initdata = 0;
+#endif /*CONFIG_TSC_DISABLE*/
static int __init tsc_setup(char *str)
{
@@ -2733,7 +2737,7 @@
*/
/* TSC disabled? */
-#ifndef CONFIG_X86_TSC
+#if !defined(CONFIG_X86_TSC)||defined(CONFIG_TSC_DISABLE)
if ( tsc_disable )
clear_bit(X86_FEATURE_TSC, &c->x86_capability);
#endif
@@ -2978,7 +2982,7 @@
if (cpu_has_vme || cpu_has_tsc || cpu_has_de)
clear_in_cr4(X86_CR4_VME|X86_CR4_PVI|X86_CR4_TSD|X86_CR4_DE);
-#ifndef CONFIG_X86_TSC
+#if !defined(CONFIG_X86_TSC)||defined(CONFIG_TSC_DISABLE)
if (tsc_disable && cpu_has_tsc) {
printk(KERN_NOTICE "Disabling TSC...\n");
/**** FIX-HPA: DOES THIS REALLY BELONG HERE? ****/
diff -Nru a/arch/i386/kernel/time.c b/arch/i386/kernel/time.c
--- a/arch/i386/kernel/time.c Thu Jun 13 20:01:09 2002
+++ b/arch/i386/kernel/time.c Thu Jun 13 20:01:09 2002
@@ -118,7 +118,7 @@
extern spinlock_t i8259A_lock;
-#ifndef CONFIG_X86_TSC
+#if !defined(CONFIG_X86_TSC)||defined(CONFIG_TSC_DISABLE)
/* This function must be called with interrupts disabled
* It was inspired by Steve McCanne's microtime-i386 for BSD. -- jrs
diff -Nru a/include/asm-i386/bugs.h b/include/asm-i386/bugs.h
--- a/include/asm-i386/bugs.h Thu Jun 13 20:01:09 2002
+++ b/include/asm-i386/bugs.h Thu Jun 13 20:01:09 2002
@@ -173,7 +173,7 @@
/*
* If we configured ourselves for a TSC, we'd better have one!
*/
-#ifdef CONFIG_X86_TSC
+#if defined(CONFIG_X86_TSC)&&!defined(CONFIG_TSC_DISABLE)
if (!cpu_has_tsc)
panic("Kernel compiled for Pentium+, requires TSC feature!");
#endif
diff -Nru a/include/asm-i386/timex.h b/include/asm-i386/timex.h
--- a/include/asm-i386/timex.h Thu Jun 13 20:01:09 2002
+++ b/include/asm-i386/timex.h Thu Jun 13 20:01:09 2002
@@ -40,7 +40,7 @@
static inline cycles_t get_cycles (void)
{
-#ifndef CONFIG_X86_TSC
+#if !defined(CONFIG_X86_TSC) || defined(CONFIG_TSC_DISABLE)
return 0;
#else
unsigned long long ret;
diff -Nru a/include/net/pkt_sched.h b/include/net/pkt_sched.h
--- a/include/net/pkt_sched.h Thu Jun 13 20:01:09 2002
+++ b/include/net/pkt_sched.h Thu Jun 13 20:01:09 2002
@@ -12,7 +12,7 @@
#include <linux/pkt_sched.h>
#include <net/pkt_cls.h>
-#ifdef CONFIG_X86_TSC
+#if defined(CONFIG_X86_TSC)&&!defined(CONFIG_TSC_DISABLE)
#include <asm/msr.h>
#endif
@@ -253,7 +253,7 @@
#define PSCHED_US2JIFFIE(delay) (((delay)+psched_clock_per_hz-1)/psched_clock_per_hz)
-#ifdef CONFIG_X86_TSC
+#if defined(CONFIG_X86_TSC)&&!defined(CONFIG_TSC_DISABLE)
#define PSCHED_GET_TIME(stamp) \
({ u64 __cur; \
diff -Nru a/include/net/profile.h b/include/net/profile.h
--- a/include/net/profile.h Thu Jun 13 20:01:09 2002
+++ b/include/net/profile.h Thu Jun 13 20:01:09 2002
@@ -9,7 +9,7 @@
#include <linux/kernel.h>
#include <asm/system.h>
-#ifdef CONFIG_X86_TSC
+#if defined(CONFIG_X86_TSC) && !defined(CONFIG_TSC_DISABLE)
#include <asm/msr.h>
#endif
@@ -29,7 +29,7 @@
extern struct timeval net_profile_adjust;
extern void net_profile_irq_adjust(struct timeval *entered, struct timeval* leaved);
-#ifdef CONFIG_X86_TSC
+#if defined(CONFIG_X86_TSC)&&!defined(CONFIG_TSC_DISABLE)
static inline void net_profile_stamp(struct timeval *pstamp)
{
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Patch] tsc-disable_A5
2002-06-14 18:35 [Patch] tsc-disable_A5 john stultz
@ 2002-06-14 18:53 ` Benjamin LaHaise
2002-06-18 0:48 ` Kurt Garloff
2002-06-14 18:57 ` Dave Jones
2002-06-24 2:09 ` Pavel Machek
2 siblings, 1 reply; 14+ messages in thread
From: Benjamin LaHaise @ 2002-06-14 18:53 UTC (permalink / raw)
To: john stultz; +Cc: marcelo, lkml, Martin J. Bligh
On Fri, Jun 14, 2002 at 11:35:26AM -0700, john stultz wrote:
> This results in sequential calls to gettimeofday to return
> non-sequential time values. By disabling the TSCs on these boxes, it
> forces gettimeofday to use the PIC clock instead, fixing the problem.
This seems to be yet another reason for supporting per-CPU TSC
calibration, as that would fix machines with different speed cpus, too.
-ben
--
"You will be reincarnated as a toad; and you will be much happier."
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Patch] tsc-disable_A5
2002-06-14 18:35 [Patch] tsc-disable_A5 john stultz
2002-06-14 18:53 ` Benjamin LaHaise
@ 2002-06-14 18:57 ` Dave Jones
2002-06-14 19:04 ` john stultz
2002-06-24 2:09 ` Pavel Machek
2 siblings, 1 reply; 14+ messages in thread
From: Dave Jones @ 2002-06-14 18:57 UTC (permalink / raw)
To: john stultz; +Cc: marcelo, lkml, Martin J. Bligh
On Fri, Jun 14, 2002 at 11:35:26AM -0700, john stultz wrote:
> This patch disables the TSCs when compiled for Multiquad NUMA hardware.
> Due to the slower interconnect, the TSCs aren't being synced properly at
> boot time. Even if they were synced, since the different nodes are
> driven by different crystals, the TSCs still drift.
-#ifndef CONFIG_X86_TSC
+#if !defined(CONFIG_X86_TSC)||defined(CONFIG_TSC_DISABLE)
+#ifdef CONFIG_TSC_DISABLE
+static int tsc_disable __initdata = 1;
+#else /*CONFIG_TSC_DISABLE*/
static int tsc_disable __initdata = 0;
+#endif /*CONFIG_TSC_DISABLE*/
This looks *really horrible*
Why not just unset CONFIG_X86_TSC for those machines ?
Dave
--
| Dave Jones. http://www.codemonkey.org.uk
| SuSE Labs
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Patch] tsc-disable_A5
2002-06-14 18:57 ` Dave Jones
@ 2002-06-14 19:04 ` john stultz
2002-06-14 19:56 ` Dave Jones
0 siblings, 1 reply; 14+ messages in thread
From: john stultz @ 2002-06-14 19:04 UTC (permalink / raw)
To: Dave Jones; +Cc: marcelo, lkml, Martin J. Bligh
On Fri, 2002-06-14 at 11:57, Dave Jones wrote:
> -#ifndef CONFIG_X86_TSC
> +#if !defined(CONFIG_X86_TSC)||defined(CONFIG_TSC_DISABLE)
> +#ifdef CONFIG_TSC_DISABLE
> +static int tsc_disable __initdata = 1;
> +#else /*CONFIG_TSC_DISABLE*/
> static int tsc_disable __initdata = 0;
> +#endif /*CONFIG_TSC_DISABLE*/
>
> This looks *really horrible*
True, I agree here.
> Why not just unset CONFIG_X86_TSC for those machines ?
I was actually hoping for a suggestion like this when I posted this
patch earlier. Can one really just unset CONFIG_ options that have
previously been set? I'd actually prefer this, but doing so generated a
.config that looked like:
CONFIG_X86_TSC=y
...
# CONFIG_X86_TSC is not set
So I assumed CONFIG_X86_TSC would still hold. Am I wrong, or is there
another way to do this?
Thanks
-john
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Patch] tsc-disable_A5
2002-06-14 19:04 ` john stultz
@ 2002-06-14 19:56 ` Dave Jones
2002-06-14 23:29 ` Kai Germaschewski
0 siblings, 1 reply; 14+ messages in thread
From: Dave Jones @ 2002-06-14 19:56 UTC (permalink / raw)
To: john stultz; +Cc: marcelo, lkml, Martin J. Bligh
On Fri, Jun 14, 2002 at 12:04:18PM -0700, john stultz wrote:
> .config that looked like:
>
> CONFIG_X86_TSC=y
> ...
> # CONFIG_X86_TSC is not set
> So I assumed CONFIG_X86_TSC would still hold. Am I wrong, or is there
> another way to do this?
Ugh, I hadn't realised the .config generation was so primitive.
That's quite unfortunate. That needs fixing at some point.
Dave
--
| Dave Jones. http://www.codemonkey.org.uk
| SuSE Labs
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Patch] tsc-disable_A5
@ 2002-06-14 21:53 Mikael Pettersson
2002-06-14 22:11 ` john stultz
0 siblings, 1 reply; 14+ messages in thread
From: Mikael Pettersson @ 2002-06-14 21:53 UTC (permalink / raw)
To: davej, johnstul; +Cc: Martin.Bligh, linux-kernel, marcelo
On Fri, 14 Jun 2002 21:56:54 +0200, Dave Jones wrote:
>On Fri, Jun 14, 2002 at 12:04:18PM -0700, john stultz wrote:
>
> > .config that looked like:
> >
> > CONFIG_X86_TSC=y
> > ...
> > # CONFIG_X86_TSC is not set
> > So I assumed CONFIG_X86_TSC would still hold. Am I wrong, or is there
> > another way to do this?
>
>Ugh, I hadn't realised the .config generation was so primitive.
>That's quite unfortunate. That needs fixing at some point.
Unless my memory is failing me, I believe the simplest approach
is to (1) don't set CONFIG_X86_TSC, and (2) pass "notsc" as a
kernel boot parameter.
CONFIG_X86_TSC means "the machine has working TSC, period".
That's an intensional optimisation.
Without CONFIG_X86_TSC, Linux manages without TSC, but will
detect and use it if it's there.
Finally, the "notsc" kernel parameter is for obscure cases
where the TSC is present, but should not be used for whatever
reason. I guess the present issue qualifies...
/Mikael
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Patch] tsc-disable_A5
2002-06-14 21:53 Mikael Pettersson
@ 2002-06-14 22:11 ` john stultz
0 siblings, 0 replies; 14+ messages in thread
From: john stultz @ 2002-06-14 22:11 UTC (permalink / raw)
To: Mikael Pettersson; +Cc: davej, Martin J. Bligh, lkml, marcelo
On Fri, 2002-06-14 at 14:53, Mikael Pettersson wrote:
> Unless my memory is failing me, I believe the simplest approach
> is to (1) don't set CONFIG_X86_TSC, and (2) pass "notsc" as a
> kernel boot parameter.
Correct, and this patch basically does both of the above.
The problem is that CONFIG_X86_TSC is enabled on PPro and above cpus.
The machines which are having this problem are multi-node P3 or P4
systems. Each cpu has a working TSC, its just that because they are not
synced they should not be used.
So the patch adds a CONFIG_DISABLE_TSC which is then checked where
earlier just CONFIG_X86_TSC was used. Additionally, if
CONFIG_DISABLE_TSC is set, the flag set by "notsc" is also set.
The usage of CONFIG_X86_TSC took me a bit to get my head around
initially, so your clarification is helpful.
Thanks
-john
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Patch] tsc-disable_A5
2002-06-14 19:56 ` Dave Jones
@ 2002-06-14 23:29 ` Kai Germaschewski
2002-06-14 23:44 ` john stultz
0 siblings, 1 reply; 14+ messages in thread
From: Kai Germaschewski @ 2002-06-14 23:29 UTC (permalink / raw)
To: Dave Jones; +Cc: john stultz, marcelo, lkml, Martin J. Bligh
On Fri, 14 Jun 2002, Dave Jones wrote:
> On Fri, Jun 14, 2002 at 12:04:18PM -0700, john stultz wrote:
>
> > .config that looked like:
> >
> > CONFIG_X86_TSC=y
> > ...
> > # CONFIG_X86_TSC is not set
> > So I assumed CONFIG_X86_TSC would still hold. Am I wrong, or is there
> > another way to do this?
>
> Ugh, I hadn't realised the .config generation was so primitive.
> That's quite unfortunate. That needs fixing at some point.
I suppose you could it rewrite like
...
CONFIG_X86_WANT_TSC=y (or whatever)
...
if [ some_condition ]; then
define_bool CONFIG_X86_TSC n
else
define_bool CONFIG_X86_TSC $CONFIG_X86_WANT_TSC
fi
Not exactly elegant, but it should work ;)
--Kai
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Patch] tsc-disable_A5
2002-06-14 23:29 ` Kai Germaschewski
@ 2002-06-14 23:44 ` john stultz
0 siblings, 0 replies; 14+ messages in thread
From: john stultz @ 2002-06-14 23:44 UTC (permalink / raw)
To: Kai Germaschewski; +Cc: Dave Jones, marcelo, lkml, Martin J. Bligh
On Fri, 2002-06-14 at 16:29, Kai Germaschewski wrote:
> I suppose you could it rewrite like
>
> ...
> CONFIG_X86_WANT_TSC=y (or whatever)
> ...
>
> if [ some_condition ]; then
> define_bool CONFIG_X86_TSC n
> else
> define_bool CONFIG_X86_TSC $CONFIG_X86_WANT_TSC
> fi
>
> Not exactly elegant, but it should work ;)
Yep, my first release was done in a similar fashion, but Alan suggested
the patch take on its current form. There may be cases where we want to
know if we have a TSC even if we don't want to use them.
Thread link:
http://www.uwsg.iu.edu/hypermail/linux/kernel/0205.3/1188.html
Thanks for the suggestion,
-john
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Patch] tsc-disable_A5
@ 2002-06-15 14:13 Mikael Pettersson
2002-06-19 13:58 ` Maciej W. Rozycki
0 siblings, 1 reply; 14+ messages in thread
From: Mikael Pettersson @ 2002-06-15 14:13 UTC (permalink / raw)
To: johnstul, kai; +Cc: Martin.Bligh, davej, linux-kernel, marcelo
On 14 Jun 2002 16:44:30 -0700, john stultz wrote:
>On Fri, 2002-06-14 at 16:29, Kai Germaschewski wrote:
>> I suppose you could it rewrite like
>>
>> ...
>> CONFIG_X86_WANT_TSC=y (or whatever)
>> ...
>>
>> if [ some_condition ]; then
>> define_bool CONFIG_X86_TSC n
>> else
>> define_bool CONFIG_X86_TSC $CONFIG_X86_WANT_TSC
>> fi
>>
>> Not exactly elegant, but it should work ;)
>
>Yep, my first release was done in a similar fashion, but Alan suggested
>the patch take on its current form. There may be cases where we want to
>know if we have a TSC even if we don't want to use them.
>
>Thread link:
>http://www.uwsg.iu.edu/hypermail/linux/kernel/0205.3/1188.html
I disagree with Alan's recommendation.
The real problem is that the kernel confuses a CPU-level property
(do the CPUs have TSCs?) with a system-level property (are the
TSCs present and in sync?). CONFIG_X86_TSC really describes the
latter property, for the former we have the cpu_has_tsc() macro.
IMO, Kai is right and a nicer fix is to change arch/i386/config.in to:
- s/CONFIG_X86_TSC=y/CONFIG_X86_CPU_HAS_TSC=y/
(this one can also be used as an optimisation to avoid runtime
cpu_has_tsc() checks)
- append a rule which derives CONFIG_X86_TSC from CONFIG_X86_CPU_HAS_TSC
and !multiquad
The other patch which adds an anti-CONFIG_X86_TSC to cancel the
first CONFIG_X86_TSC is so horribly hacky...
/Mikael
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Patch] tsc-disable_A5
2002-06-14 18:53 ` Benjamin LaHaise
@ 2002-06-18 0:48 ` Kurt Garloff
2002-06-18 1:31 ` john stultz
0 siblings, 1 reply; 14+ messages in thread
From: Kurt Garloff @ 2002-06-18 0:48 UTC (permalink / raw)
To: Benjamin LaHaise; +Cc: john stultz, marcelo, lkml, Martin J. Bligh
[-- Attachment #1: Type: text/plain, Size: 1149 bytes --]
Hi Ben,
On Fri, Jun 14, 2002 at 02:53:07PM -0400, Benjamin LaHaise wrote:
> On Fri, Jun 14, 2002 at 11:35:26AM -0700, john stultz wrote:
> > This results in sequential calls to gettimeofday to return
> > non-sequential time values. By disabling the TSCs on these boxes, it
> > forces gettimeofday to use the PIC clock instead, fixing the problem.
>
> This seems to be yet another reason for supporting per-CPU TSC
> calibration, as that would fix machines with different speed cpus, too.
I agree.
Maybe the patch I once made to support CPUs with different speeds can serve
as a starting point?
http://www.uwsg.iu.edu/hypermail/linux/kernel/0203.1/0481.html
However, one would need to make sure that all CPUs occasionally do receive
timer interrupts, otherwise your TSC may overflow. Depending on your
hardware (APICs), this might be an issue. I've been told that Fosters do
misbehave ...
Regards,
--
Kurt Garloff <garloff@suse.de> Eindhoven, NL
GPG key: See mail header, key servers Linux kernel development
SuSE Linux AG, Nuernberg, DE SCSI, Security
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Patch] tsc-disable_A5
2002-06-18 0:48 ` Kurt Garloff
@ 2002-06-18 1:31 ` john stultz
0 siblings, 0 replies; 14+ messages in thread
From: john stultz @ 2002-06-18 1:31 UTC (permalink / raw)
To: Kurt Garloff; +Cc: Benjamin LaHaise, marcelo, lkml, Martin J. Bligh
On Mon, 2002-06-17 at 17:48, Kurt Garloff wrote:
> Hi Ben,
>
> On Fri, Jun 14, 2002 at 02:53:07PM -0400, Benjamin LaHaise wrote:
> > On Fri, Jun 14, 2002 at 11:35:26AM -0700, john stultz wrote:
> > > This results in sequential calls to gettimeofday to return
> > > non-sequential time values. By disabling the TSCs on these boxes, it
> > > forces gettimeofday to use the PIC clock instead, fixing the problem.
> >
> > This seems to be yet another reason for supporting per-CPU TSC
> > calibration, as that would fix machines with different speed cpus, too.
>
> I agree.
> Maybe the patch I once made to support CPUs with different speeds can serve
> as a starting point?
>
> http://www.uwsg.iu.edu/hypermail/linux/kernel/0203.1/0481.html
>
> However, one would need to make sure that all CPUs occasionally do receive
> timer interrupts, otherwise your TSC may overflow. Depending on your
> hardware (APICs), this might be an issue. I've been told that Fosters do
> misbehave ...
Hmmm, I've skimmed your patch before, but really only just for the
lowest common features bit. I didn't quite grasp it last time, but I
really like what you're doing there. TSC overflow can be almost
eliminated if we use the full 64bits, but if we can round robin the
interrupts, that would help compensate for any skew in the clocks.
Thanks for the pointer!
-john
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Patch] tsc-disable_A5
2002-06-15 14:13 Mikael Pettersson
@ 2002-06-19 13:58 ` Maciej W. Rozycki
0 siblings, 0 replies; 14+ messages in thread
From: Maciej W. Rozycki @ 2002-06-19 13:58 UTC (permalink / raw)
To: Mikael Pettersson
Cc: johnstul, kai, Martin.Bligh, davej, linux-kernel, marcelo
On Sat, 15 Jun 2002, Mikael Pettersson wrote:
> I disagree with Alan's recommendation.
So do I.
> The real problem is that the kernel confuses a CPU-level property
> (do the CPUs have TSCs?) with a system-level property (are the
> TSCs present and in sync?). CONFIG_X86_TSC really describes the
> latter property, for the former we have the cpu_has_tsc() macro.
Well, CONFIG_X86_TSC simply asserts we have TSCs present and in sync and
cpu_has_tsc is a run-time check for the same. The X86_FEATURE_TSC bit
shouldn't be set (and e.g. "notsc" takes care of this) unless TSCs work
correctly as it's both used internally and exported to the userland. For
low-level fiddling with TSCs one can use cpuid either directly or with the
cpuid driver.
--
+ Maciej W. Rozycki, Technical University of Gdansk, Poland +
+--------------------------------------------------------------+
+ e-mail: macro@ds2.pg.gda.pl, PGP key available +
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [Patch] tsc-disable_A5
2002-06-14 18:35 [Patch] tsc-disable_A5 john stultz
2002-06-14 18:53 ` Benjamin LaHaise
2002-06-14 18:57 ` Dave Jones
@ 2002-06-24 2:09 ` Pavel Machek
2 siblings, 0 replies; 14+ messages in thread
From: Pavel Machek @ 2002-06-24 2:09 UTC (permalink / raw)
To: john stultz; +Cc: marcelo, lkml, Martin J. Bligh
Hi!
> Hey Marcelo,
> I know its probably poor form to send this out so close to -rc, but I
> figured I might as well give it a shot. I'll happily resubmit this for
> the .20pre series later if you'd prefer.
Why so gly #ifdefs? We can disable it runtime already, you should need
just *one* ifdef.
Pavel
--
(about SSSCA) "I don't say this lightly. However, I really think that the U.S.
no longer is classifiable as a democracy, but rather as a plutocracy." --hpa
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2002-06-24 14:40 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-06-14 18:35 [Patch] tsc-disable_A5 john stultz
2002-06-14 18:53 ` Benjamin LaHaise
2002-06-18 0:48 ` Kurt Garloff
2002-06-18 1:31 ` john stultz
2002-06-14 18:57 ` Dave Jones
2002-06-14 19:04 ` john stultz
2002-06-14 19:56 ` Dave Jones
2002-06-14 23:29 ` Kai Germaschewski
2002-06-14 23:44 ` john stultz
2002-06-24 2:09 ` Pavel Machek
-- strict thread matches above, loose matches on Subject: below --
2002-06-14 21:53 Mikael Pettersson
2002-06-14 22:11 ` john stultz
2002-06-15 14:13 Mikael Pettersson
2002-06-19 13:58 ` Maciej W. Rozycki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox