From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HtLlH-0007aJ-68 for qemu-devel@nongnu.org; Wed, 30 May 2007 06:50:39 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HtLlF-0007Yc-UL for qemu-devel@nongnu.org; Wed, 30 May 2007 06:50:38 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HtLlF-0007YZ-Nq for qemu-devel@nongnu.org; Wed, 30 May 2007 06:50:37 -0400 Received: from mail.gmx.net ([213.165.64.20]) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1HtLlF-0004j4-7E for qemu-devel@nongnu.org; Wed, 30 May 2007 06:50:37 -0400 Message-ID: <465D56FB.8030404@gmx.at> Date: Wed, 30 May 2007 12:50:35 +0200 From: Clemens Kolbitsch MIME-Version: 1.0 References: <20070528160302.540gmx1@mx058.gmx.net> In-Reply-To: <20070528160302.540gmx1@mx058.gmx.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Re: Qemu-devel Digest, Vol 50, Issue 70 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 qemu-devel-request@nongnu.org wrote: > Send Qemu-devel mailing list submissions to > qemu-devel@nongnu.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.nongnu.org/mailman/listinfo/qemu-devel > or, via email, send a message with subject or body 'help' to > qemu-devel-request@nongnu.org > > You can reach the person managing the list at > qemu-devel-owner@nongnu.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Qemu-devel digest..." > > > Today's Topics: > > 1. qemu vl.c (Paul Brook) > 2. QEMU/PCI shutdown event (Clemens Kolbitsch) > 3. qemu/hw pxa.h pxa2xx.c (Andrzej Zaborowski) > 4. RE: QEMU/PCI shutdown event (Dor Laor) > 5. kqemu and 2.6.22-rc3 (Xavier Gnata) > 6. qemu mips-dis.c (Thiemo Seufer) > 7. qemu/linux-user syscall.c (Thiemo Seufer) > 8. Re: qemu/linux-user syscall.c (Paul Brook) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Mon, 28 May 2007 02:29:59 +0000 > From: Paul Brook > Subject: [Qemu-devel] qemu vl.c > To: qemu-devel@nongnu.org > Message-ID: > > CVSROOT: /sources/qemu > Module name: qemu > Changes by: Paul Brook 07/05/28 02:29:59 > > Modified files: > . : vl.c > > Log message: > Fix tap device counting. > > CVSWeb URLs: > http://cvs.savannah.gnu.org/viewcvs/qemu/vl.c?cvsroot=qemu&r1=1.302&r2=1.303 > > > > > ------------------------------ > > Message: 2 > Date: Mon, 28 May 2007 13:05:29 +0200 > From: Clemens Kolbitsch > Subject: [Qemu-devel] QEMU/PCI shutdown event > To: qemu-devel@nongnu.org > Message-ID: <465AB779.4040709@gmx.at> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > hi everyone! > i'm programming a pci-device that includes some threads & > socket-connections (that allow remote debugging of my device). > > however, i want to cleanly shutdown all threads and sockets when qemu > exits... is there an easy way of getting informed of a qemu shutdown? > > (something similar to pci_device_init...) > > thanks!! > > > > > ------------------------------ > > Message: 3 > Date: Mon, 28 May 2007 11:26:16 +0000 > From: Andrzej Zaborowski > Subject: [Qemu-devel] qemu/hw pxa.h pxa2xx.c > To: qemu-devel@nongnu.org > Message-ID: > > CVSROOT: /sources/qemu > Module name: qemu > Changes by: Andrzej Zaborowski 07/05/28 11:26:16 > > Modified files: > hw : pxa.h pxa2xx.c > > Log message: > Remove a local subpage IO hack, now that general subpage IO works. > > CVSWeb URLs: > http://cvs.savannah.gnu.org/viewcvs/qemu/hw/pxa.h?cvsroot=qemu&r1=1.5&r2=1.6 > http://cvs.savannah.gnu.org/viewcvs/qemu/hw/pxa2xx.c?cvsroot=qemu&r1=1.13&r2=1.14 > > > > > ------------------------------ > > Message: 4 > Date: Mon, 28 May 2007 04:46:41 -0700 > From: "Dor Laor" > Subject: RE: [Qemu-devel] QEMU/PCI shutdown event > To: > Message-ID: > <64F9B87B6B770947A9F8391472E032160BFF5C84@ehost011-8.exch011.intermedia.net> > > Content-Type: text/plain; charset="us-ascii" > > >> hi everyone! >> i'm programming a pci-device that includes some threads & >> socket-connections (that allow remote debugging of my device). >> >> however, i want to cleanly shutdown all threads and sockets when qemu >> exits... is there an easy way of getting informed of a qemu shutdown? >> >> (something similar to pci_device_init...) >> >> thanks!! >> >> > > You can use qemu_register_reset handler. > Note that it get's called when the guests exits but not if you just quit > the monitor. > dear qemu-developers, i think it would be very helpful, if such a possibility exists.. maybe you could consider implementing this in a future release :-) just a suggestion ;-) greets!