From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=36175 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OHe1u-0004r5-NN for qemu-devel@nongnu.org; Thu, 27 May 2010 10:25:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OHe1t-0000ik-Ir for qemu-devel@nongnu.org; Thu, 27 May 2010 10:25:50 -0400 Received: from mx1.redhat.com ([209.132.183.28]:1755) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OHe1t-0000ie-9s for qemu-devel@nongnu.org; Thu, 27 May 2010 10:25:49 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o4REPllQ011666 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 27 May 2010 10:25:47 -0400 Date: Thu, 27 May 2010 17:21:32 +0300 From: "Michael S. Tsirkin" Message-ID: <20100527142132.GG8287@redhat.com> References: <1274882978-9875-1-git-send-email-pbonzini@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1274882978-9875-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] Re: [PATCH 0/8] Make event_notifier more useful and more used List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: qemu-devel@nongnu.org On Wed, May 26, 2010 at 04:09:30PM +0200, Paolo Bonzini wrote: > Hi, > > this patch adds all the eventfd bells and whistles from vl.c/cpus.c > to event_notifier, including pipe emulation and Win32 support. > It then modifies the iothread code to use it instead. I only seem to have got patches 4 and 5. Error at my end? > Paolo Bonzini (8): > move event_notifier into the main directory > add event_notifier_set > remove event_notifier_test > add and use virtqueue_from_guest_notifier > add and use event_notifier_set_handler > enable event_notifier to use pipes > add Win32 implementation of event notifiers > change ioevent to use event notifiers > > cpus.c | 95 +++----------------------------------- > event_notifier.c | 124 +++++++++++++++++++++++++++++++++++++++++++++++++++ > event_notifier.h | 28 +++++++++++ > hw/event_notifier.c | 62 ------------------------- > hw/event_notifier.h | 16 ------- > hw/virtio-pci.c | 11 ++--- > hw/virtio.c | 5 ++ > hw/virtio.h | 1 + > 8 files changed, 171 insertions(+), 171 deletions(-) > create mode 100644 event_notifier.c > create mode 100644 event_notifier.h > delete mode 100644 hw/event_notifier.c > delete mode 100644 hw/event_notifier.h >