From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:56194) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ROE4n-0003ly-Vg for qemu-devel@nongnu.org; Wed, 09 Nov 2011 14:44:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ROE4m-0000Zr-SK for qemu-devel@nongnu.org; Wed, 09 Nov 2011 14:44:49 -0500 Received: from mail-yx0-f173.google.com ([209.85.213.173]:63880) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ROE4m-0000Z6-Pu for qemu-devel@nongnu.org; Wed, 09 Nov 2011 14:44:48 -0500 Received: by mail-yx0-f173.google.com with SMTP id r8so1194122yen.4 for ; Wed, 09 Nov 2011 11:44:48 -0800 (PST) Message-ID: <4EBAD82D.4090503@codemonkey.ws> Date: Wed, 09 Nov 2011 13:44:45 -0600 From: Anthony Liguori MIME-Version: 1.0 References: <1320839216-19509-1-git-send-email-pbonzini@redhat.com> In-Reply-To: <1320839216-19509-1-git-send-email-pbonzini@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] win32: remove broken timers List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: qemu-devel@nongnu.org On 11/09/2011 05:46 AM, Paolo Bonzini wrote: > The non-dynticks timer variations are broken, so they can be > removed. > > Signed-off-by: Paolo Bonzini Applied. Thanks. Regards, Anthony Liguori > --- > qemu-timer.c | 4 +--- > 1 files changed, 1 insertions(+), 3 deletions(-) > > diff --git a/qemu-timer.c b/qemu-timer.c > index f11a28d..cd026c6 100644 > --- a/qemu-timer.c > +++ b/qemu-timer.c > @@ -183,10 +183,8 @@ static struct qemu_alarm_timer alarm_timers[] = { > #endif > {"unix", unix_start_timer, unix_stop_timer, unix_rearm_timer}, > #else > - {"mmtimer", mm_start_timer, mm_stop_timer, NULL}, > - {"mmtimer2", mm_start_timer, mm_stop_timer, mm_rearm_timer}, > + {"mmtimer", mm_start_timer, mm_stop_timer, mm_rearm_timer}, > {"dynticks", win32_start_timer, win32_stop_timer, win32_rearm_timer}, > - {"win32", win32_start_timer, win32_stop_timer, NULL}, > #endif > {NULL, } > };