Re: [REGRESSION, i915]: Periodic stalls with 2.6.36-rc2

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Chris Wilson
Date: Tuesday, August 24, 2010 - 2:00 am

On Tue, 24 Aug 2010 09:49:02 +0100, Sitsofe Wheeler <sitsofe@yahoo.com> wrote:
[snip]

I was hoping that git would be more intelligent than that. Is there a way
to simply bisect down one side of a merge?

The slow boot is probably fixed by 4936a3b90d79dd8775c6ac23c2cf2dcebe29abde.
A trivial patch you can apply on each step is:

diff --git a/arch/x86/kernel/hpet.c b/arch/x86/kernel/hpet.c
index 33dbcc4..88f3b6c 100644
--- a/arch/x86/kernel/hpet.c
+++ b/arch/x86/kernel/hpet.c
@@ -837,7 +837,7 @@ static int hpet_clocksource_register(void)
         * cyc/sec = FSEC_PER_SEC/hpet_period(fsec/cyc)
         * cyc/sec = (FSEC_PER_NSEC * NSEC_PER_SEC)/hpet_period
         */
-       hpet_freq = FSEC_PER_NSEC * NSEC_PER_SEC;
+       hpet_freq = (u64) FSEC_PER_NSEC * NSEC_PER_SEC;
        do_div(hpet_freq, hpet_period);
        clocksource_register_hz(&clocksource_hpet, (u32)hpet_freq);

-- 
Chris Wilson, Intel Open Source Technology Centre
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[REGRESSION, i915]: Periodic stalls with 2.6.36-rc2, Sitsofe Wheeler, (Mon Aug 23, 4:35 pm)
Re: [REGRESSION, i915]: Periodic stalls with 2.6.36-rc2, Chris Wilson, (Mon Aug 23, 5:12 pm)
Re: [REGRESSION, i915]: Periodic stalls with 2.6.36-rc2, Sitsofe Wheeler, (Tue Aug 24, 12:57 am)
Re: [REGRESSION, i915]: Periodic stalls with 2.6.36-rc2, Chris Wilson, (Tue Aug 24, 1:16 am)
Re: [REGRESSION, i915]: Periodic stalls with 2.6.36-rc2, Sitsofe Wheeler, (Tue Aug 24, 1:49 am)
Re: [REGRESSION, i915]: Periodic stalls with 2.6.36-rc2, Chris Wilson, (Tue Aug 24, 2:00 am)