From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LPMqw-0005jw-O8 for qemu-devel@nongnu.org; Tue, 20 Jan 2009 15:05:38 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LPMqw-0005jX-B8 for qemu-devel@nongnu.org; Tue, 20 Jan 2009 15:05:38 -0500 Received: from [199.232.76.173] (port=59569 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LPMqw-0005jL-04 for qemu-devel@nongnu.org; Tue, 20 Jan 2009 15:05:38 -0500 Received: from caffeine.csclub.uwaterloo.ca ([129.97.134.17]:43454) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LPMqv-0001fN-D5 for qemu-devel@nongnu.org; Tue, 20 Jan 2009 15:05:37 -0500 Date: Tue, 20 Jan 2009 15:05:36 -0500 Subject: Re: [Qemu-devel] Re: Extremely slow graphic updates Message-ID: <20090120200536.GD29175@csclub.uwaterloo.ca> References: <200901200133.25029.paul@codesourcery.com> <4975B3F6.6050706@eu.citrix.com> <20090120144518.GW29175@csclub.uwaterloo.ca> <4975EC17.3090404@eu.citrix.com> <20090120165534.GY29175@csclub.uwaterloo.ca> <20090120170933.GF5177@const.bordeaux.inria.fr> <20090120181533.GZ29175@csclub.uwaterloo.ca> <4976151B.2000903@eu.citrix.com> <20090120182548.GA29175@csclub.uwaterloo.ca> <4976281B.2030309@eu.citrix.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4976281B.2030309@eu.citrix.com> From: lsorense@csclub.uwaterloo.ca (Lennart Sorensen) Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paul Brook On Tue, Jan 20, 2009 at 07:38:03PM +0000, Stefano Stabellini wrote: > diff --git a/vl.c b/vl.c > index 63d954b..2e84dce 100644 > --- a/vl.c > +++ b/vl.c > @@ -5553,14 +5553,8 @@ int main(int argc, char **argv, char **envp) > } > dpy_resize(ds); > > - dcl = ds->listeners; > - while (dcl != NULL) { > - if (dcl->dpy_refresh != NULL) { > - ds->gui_timer = qemu_new_timer(rt_clock, gui_update, ds); > - qemu_mod_timer(ds->gui_timer, qemu_get_clock(rt_clock)); > - } > - dcl = dcl->next; > - } > + ds->gui_timer = qemu_new_timer(rt_clock, gui_update, ds); > + qemu_mod_timer(ds->gui_timer, qemu_get_clock(rt_clock)); > > text_consoles_set_display(display_state); > That does seem to get vnc only mode to work. -- Len Sorensen