From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48025) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YOXr8-0008HH-Ix for qemu-devel@nongnu.org; Thu, 19 Feb 2015 15:37:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YOXr4-0000b4-9k for qemu-devel@nongnu.org; Thu, 19 Feb 2015 15:37:54 -0500 Received: from mx1.redhat.com ([209.132.183.28]:49381) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YOXr4-0000ak-2k for qemu-devel@nongnu.org; Thu, 19 Feb 2015 15:37:50 -0500 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t1JKbnMb023010 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Thu, 19 Feb 2015 15:37:49 -0500 Date: Thu, 19 Feb 2015 21:37:46 +0100 From: Radim =?utf-8?B?S3LEjW3DocWZ?= Message-ID: <20150219203101.GA3974@potion.brq.redhat.com> References: <1424373859-2019-1-git-send-email-rkrcmar@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <1424373859-2019-1-git-send-email-rkrcmar@redhat.com> Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH] e1000: work around win 8.0 boot hang List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Wei Huang 2015-02-19 20:24+0100, Radim Kr=C4=8Dm=C3=A1=C5=99: > diff --git a/hw/net/e1000.c b/hw/net/e1000.c > @@ -138,6 +138,10 @@ typedef struct E1000State_st { > +#define E1000_WIN8_WORKAROUND_ICR E1000_ICR_RXT0 > +#define E1000_WIN8_WORKAROUND_DELAY_US 10 > + bool win8_workaround_needed; > @@ -288,7 +292,7 @@ set_interrupt_cause(E1000State *s, int index, uint3= 2_t val) > @@ -316,13 +320,17 @@ set_interrupt_cause(E1000State *s, int index, uin= t32_t val) > + if (s->win8_workround_needed) { So I read the patch again and noticed a typo here, which reminds me that QEMU does not compile on rawhide for several reasons ... I'll fix that to compensate.