From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=54280 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OOWaT-00034j-RR for qemu-devel@nongnu.org; Tue, 15 Jun 2010 09:53:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OOWZs-0002fh-5Q for qemu-devel@nongnu.org; Tue, 15 Jun 2010 09:53:21 -0400 Received: from mail-bw0-f45.google.com ([209.85.214.45]:44205) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OOWZr-0002fU-Uf for qemu-devel@nongnu.org; Tue, 15 Jun 2010 09:53:20 -0400 Received: by bwz9 with SMTP id 9so1879929bwz.4 for ; Tue, 15 Jun 2010 06:53:18 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <4C1785CA.9000502@redhat.com> Date: Tue, 15 Jun 2010 15:53:14 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1274882978-9875-1-git-send-email-pbonzini@redhat.com> In-Reply-To: <1274882978-9875-1-git-send-email-pbonzini@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit 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: , Cc: qemu-devel@nongnu.org On 05/26/2010 04:09 PM, 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. > > 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 I'll redo the patches starting from qemu-kvm, since there's a bit more to do there. I'll post the master and uq/master sometime next week. Paolo