From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757913AbYGNQt3 (ORCPT ); Mon, 14 Jul 2008 12:49:29 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754505AbYGNQtR (ORCPT ); Mon, 14 Jul 2008 12:49:17 -0400 Received: from mga14.intel.com ([143.182.124.37]:64340 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754569AbYGNQtQ (ORCPT ); Mon, 14 Jul 2008 12:49:16 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.30,360,1212390000"; d="scan'208";a="20203197" Date: Mon, 14 Jul 2008 09:49:14 -0700 From: Suresh Siddha To: Ingo Molnar Cc: Yinghai Lu , Thomas Gleixner , "H. Peter Anvin" , "Siddha, Suresh B" , LKML Subject: Re: [PATCH] x86: let 32bit use apic_ops too - fix Message-ID: <20080714164913.GK1678@linux-os.sc.intel.com> References: <200807080141.05436.yhlu.kernel@gmail.com> <200807102038.26591.yhlu.kernel@gmail.com> <200807111841.55403.yhlu.kernel@gmail.com> <200807132219.35814.yhlu.kernel@gmail.com> <20080714071207.GB17077@elte.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080714071207.GB17077@elte.hu> User-Agent: Mutt/1.4.1i Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Jul 14, 2008 at 12:12:07AM -0700, Ingo Molnar wrote: > > * Yinghai Lu wrote: > > > fix for pv. > > > > Signed-off-by: Yinghai Lu > > applied to tip/x86/x2apic - thanks Yinghai. Ingo, before you try for the third attempt ;) we need one more lguest apic_ops fix. Patch appended. Thanks. --- [patch] x86: apic_ops for lguest apic_ops for lguest. Signed-off-by: Suresh Siddha Cc: Yinghai Lu --- Index: x86.git/arch/x86/lguest/boot.c =================================================================== --- x86.git.orig/arch/x86/lguest/boot.c 2008-07-14 09:44:31.000000000 -0700 +++ x86.git/arch/x86/lguest/boot.c 2008-07-14 09:45:12.000000000 -0700 @@ -791,6 +791,37 @@ { return 0; } + +static u64 lguest_apic_icr_read(void) +{ + return 0; +} + +static void lguest_apic_icr_write(u32 low, u32 id) +{ + /* Warn to see if there's any stray references */ + WARN_ON(1); +} + +static void lguest_apic_wait_icr_idle(void) +{ + return; +} + +static u32 lguest_apic_safe_wait_icr_idle(void) +{ + return 0; +} + +static struct apic_ops lguest_basic_apic_ops = { + .read = lguest_apic_read, + .write = lguest_apic_write, + .write_atomic = lguest_apic_write, + .icr_read = lguest_apic_icr_read, + .icr_write = lguest_apic_icr_write, + .wait_icr_idle = lguest_apic_wait_icr_idle, + .safe_wait_icr_idle = lguest_apic_safe_wait_icr_idle, +}; #endif /* STOP! Until an interrupt comes in. */ @@ -990,9 +1021,7 @@ #ifdef CONFIG_X86_LOCAL_APIC /* apic read/write intercepts */ - pv_apic_ops.apic_write = lguest_apic_write; - pv_apic_ops.apic_write_atomic = lguest_apic_write; - pv_apic_ops.apic_read = lguest_apic_read; + apic_ops = &lguest_basic_apic_ops; #endif /* time operations */