From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N2OGO-00047a-TJ for qemu-devel@nongnu.org; Mon, 26 Oct 2009 08:01:29 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N2OGI-00043y-U0 for qemu-devel@nongnu.org; Mon, 26 Oct 2009 08:01:28 -0400 Received: from [199.232.76.173] (port=39335 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N2OGI-00043U-4g for qemu-devel@nongnu.org; Mon, 26 Oct 2009 08:01:22 -0400 Received: from mx1.redhat.com ([209.132.183.28]:46660) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1N2OGG-0000cx-1D for qemu-devel@nongnu.org; Mon, 26 Oct 2009 08:01:20 -0400 Received: from int-mx04.intmail.prod.int.phx2.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.17]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n9QC1I3Z010770 for ; Mon, 26 Oct 2009 08:01:18 -0400 From: Amit Shah Date: Mon, 26 Oct 2009 17:30:35 +0530 Message-Id: <1256558437-24171-1-git-send-email-amit.shah@redhat.com> Subject: [Qemu-devel] [PATCH v10 0/2] virtio-console: Add support for multiple ports for generic guest-host communication 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, This iteration of the series fixes a style bug pointed out by Gerd and a typo noticed by Rich. In addition to that, it also introduces a few debug prints in the 'info qtree' output that shows some per-port data that could be helpful for debugging. I've been testing all the features that are presented here from the testsuite at http://fedorapeople.org/gitweb?p=amitshah/public_git/test-virtserial.git The testsuite tests for host-guest interaction as well as qemu chardev-virtioserial interaction. Amit Shah (2): virtio-console: Add a virtio-serial bus, support for multiple ports virtio-console: Add a new virtserialport device for generic serial port support Makefile.target | 2 +- hw/pc.c | 9 - hw/ppc440_bamboo.c | 7 - hw/qdev.c | 8 +- hw/virtio-console.c | 206 +++++++------ hw/virtio-console.h | 19 -- hw/virtio-pci.c | 8 +- hw/virtio-serial-bus.c | 785 ++++++++++++++++++++++++++++++++++++++++++++++++ hw/virtio-serial.h | 227 ++++++++++++++ hw/virtio.h | 2 +- qemu-options.hx | 6 +- sysemu.h | 6 - vl.c | 65 +++-- 13 files changed, 1171 insertions(+), 179 deletions(-) delete mode 100644 hw/virtio-console.h create mode 100644 hw/virtio-serial-bus.c create mode 100644 hw/virtio-serial.h