From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=55305 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OOTwq-0000QT-Lh for qemu-devel@nongnu.org; Tue, 15 Jun 2010 07:04:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OOTwo-00057q-QT for qemu-devel@nongnu.org; Tue, 15 Jun 2010 07:04:52 -0400 Received: from mx1.redhat.com ([209.132.183.28]:5562) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OOTwo-00057c-JX for qemu-devel@nongnu.org; Tue, 15 Jun 2010 07:04:50 -0400 Received: from int-mx05.intmail.prod.int.phx2.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.18]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o5FB4nv8005859 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 15 Jun 2010 07:04:50 -0400 From: Jes.Sorensen@redhat.com Date: Tue, 15 Jun 2010 13:04:35 +0200 Message-Id: <1276599879-22749-4-git-send-email-Jes.Sorensen@redhat.com> In-Reply-To: <1276599879-22749-1-git-send-email-Jes.Sorensen@redhat.com> References: <1276599879-22749-1-git-send-email-Jes.Sorensen@redhat.com> Subject: [Qemu-devel] [PATCH 3/7] time_drift_fix is x86 only, rather than !ia64 List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: avi@redhat.com Cc: Jes Sorensen , qemu-devel@nongnu.org From: Jes Sorensen time_drift_fix is x86 only, rather than !ia64, to allow the code to build for other archs, like MIPS. Signed-off-by: Jes Sorensen --- hw/i8259.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/i8259.c b/hw/i8259.c index a8ae069..e89d831 100644 --- a/hw/i8259.c +++ b/hw/i8259.c @@ -237,7 +237,7 @@ int pic_read_irq(PicState2 *s) if (irq >= 0) { pic_intack(&s->pics[0], irq); -#ifndef TARGET_IA64 +#ifdef TARGET_I386 if (time_drift_fix && irq == 0) { extern int64_t timer_acks, timer_ints_to_push; timer_acks++; -- 1.6.6.1