From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NVQ4I-0002ho-45 for qemu-devel@nongnu.org; Thu, 14 Jan 2010 08:48:58 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NVQ4D-0002fu-2a for qemu-devel@nongnu.org; Thu, 14 Jan 2010 08:48:57 -0500 Received: from [199.232.76.173] (port=59839 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NVQ4C-0002fp-U0 for qemu-devel@nongnu.org; Thu, 14 Jan 2010 08:48:52 -0500 Received: from mx20.gnu.org ([199.232.41.8]:15641) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NVPyD-00087X-Gj for qemu-devel@nongnu.org; Thu, 14 Jan 2010 08:42:42 -0500 Received: from mx1.redhat.com ([209.132.183.28]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NVPbL-0002av-OJ for qemu-devel@nongnu.org; Thu, 14 Jan 2010 08:19:04 -0500 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 o0EDIp6s017652 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 14 Jan 2010 08:18:51 -0500 From: Amit Shah Date: Thu, 14 Jan 2010 18:47:35 +0530 Message-Id: <1263475063-15238-1-git-send-email-amit.shah@redhat.com> Subject: [Qemu-devel] [PATCH 0/8] virtio-console: Move to qdev, multiple devices, generic ports List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Amit Shah Hello people, This iteration of the series removes the START and END flags (and hence the header associated with each buffer). That's the major change since the last submission. Please review. Obligatory disclaimer: This series splits up the patches by functionality. Note, however, that patches 2-6 introduce some functionality that's advertised to the guest as having to work all at once or not at all. Also, the savevm version is bumped only once but save/restore state is added in each of the patches. They are split only for easier reviewability. The older virtio-console.c file is completely removed and a new virtio-serial.c is introduced so that reviewing is easier. I can send a later patch to rename virtio-serial.c back to virtio-console.c. Amit Shah (8): virtio: Remove duplicate macro definition for max. virtqueues, bump up the max virtio-console: qdev conversion, new virtio-serial-bus virtio-serial-bus: Maintain guest and host port open/close state virtio-serial-bus: Add a port 'name' property for port discovery in guests virtio-serial-bus: Add support for buffering guest output, throttling guests virtio-serial-bus: Add ability to hot-unplug ports virtio-serial: Add a 'virtserialport' device for generic serial port support Move virtio-serial to Makefile.objs Makefile.objs | 2 +- Makefile.target | 2 +- hw/pc.c | 11 +- hw/ppc440_bamboo.c | 7 - hw/qdev.c | 10 +- hw/s390-virtio-bus.c | 17 +- hw/s390-virtio-bus.h | 2 + hw/s390-virtio.c | 8 - hw/virtio-console.c | 143 --------- hw/virtio-console.h | 19 -- hw/virtio-pci.c | 13 +- hw/virtio-serial-bus.c | 788 ++++++++++++++++++++++++++++++++++++++++++++++++ hw/virtio-serial.c | 143 +++++++++ hw/virtio-serial.h | 199 ++++++++++++ hw/virtio.c | 2 - hw/virtio.h | 4 +- qemu-options.hx | 4 + sysemu.h | 6 - vl.c | 2 + 19 files changed, 1165 insertions(+), 217 deletions(-) delete mode 100644 hw/virtio-console.c delete mode 100644 hw/virtio-console.h create mode 100644 hw/virtio-serial-bus.c create mode 100644 hw/virtio-serial.c create mode 100644 hw/virtio-serial.h