From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755256AbYHTJPv (ORCPT ); Wed, 20 Aug 2008 05:15:51 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752946AbYHTJPj (ORCPT ); Wed, 20 Aug 2008 05:15:39 -0400 Received: from mx3.mail.elte.hu ([157.181.1.138]:41677 "EHLO mx3.mail.elte.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752473AbYHTJPi (ORCPT ); Wed, 20 Aug 2008 05:15:38 -0400 Date: Wed, 20 Aug 2008 11:15:13 +0200 From: Ingo Molnar To: Yinghai Lu Cc: Bill Fink , David Witbrodt , linux-kernel@vger.kernel.org, "Paul E. McKenney" , Peter Zijlstra , Thomas Gleixner , "H. Peter Anvin" , netdev Subject: Re: HPET regression in 2.6.26 versus 2.6.25 -- found another user with the same regression Message-ID: <20080820091513.GA23865@elte.hu> References: <109483.89278.qm@web82104.mail.mud.yahoo.com> <86802c440808192221s3ada5443qc3b9d8e26f252d03@mail.gmail.com> <20080820035130.38426b00.billfink@mindspring.com> <86802c440808200102n6487ae17ud790991b8ea30d16@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <86802c440808200102n6487ae17ud790991b8ea30d16@mail.gmail.com> User-Agent: Mutt/1.5.18 (2008-05-17) X-ELTE-VirusStatus: clean X-ELTE-SpamScore: -1.5 X-ELTE-SpamLevel: X-ELTE-SpamCheck: no X-ELTE-SpamVersion: ELTE 2.0 X-ELTE-SpamCheck-Details: score=-1.5 required=5.9 tests=BAYES_00 autolearn=no SpamAssassin version=3.2.3 -1.5 BAYES_00 BODY: Bayesian spam probability is 0 to 1% [score: 0.0000] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Yinghai Lu wrote: > > This is true if he reverted just the 3def3d6d... commit, but if he > > also reverts the similar, and immediately following, 1e934dda... > > commit, then his 2.6.26 kernel runs fine. > > interesting, > > David, can you try only comment out > > late_initcall(lapic_insert_resource); i.e. the patch below? what's your theory, what could be the reason for David's lockups? Ingo ---------------> Index: linux/arch/x86/kernel/apic_32.c =================================================================== --- linux.orig/arch/x86/kernel/apic_32.c +++ linux/arch/x86/kernel/apic_32.c @@ -1740,4 +1740,4 @@ static int __init lapic_insert_resource( * need call insert after e820_reserve_resources() * that is using request_resource */ -late_initcall(lapic_insert_resource); +//late_initcall(lapic_insert_resource); Index: linux/arch/x86/kernel/apic_64.c =================================================================== --- linux.orig/arch/x86/kernel/apic_64.c +++ linux/arch/x86/kernel/apic_64.c @@ -1614,4 +1614,4 @@ static int __init lapic_insert_resource( * need call insert after e820_reserve_resources() * that is using request_resource */ -late_initcall(lapic_insert_resource); +//late_initcall(lapic_insert_resource);