From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37264) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b4peZ-0000uC-E6 for qemu-devel@nongnu.org; Mon, 23 May 2016 09:12:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b4peT-0001Cn-IS for qemu-devel@nongnu.org; Mon, 23 May 2016 09:12:14 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51243) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b4peT-0001CE-Cj for qemu-devel@nongnu.org; Mon, 23 May 2016 09:12:09 -0400 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id CD34C711C1 for ; Mon, 23 May 2016 13:12:07 +0000 (UTC) From: Gerd Hoffmann Date: Mon, 23 May 2016 15:11:59 +0200 Message-Id: <1464009123-5814-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 0/4] usb: add xen pvUSB backend List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, Here comes the usb patch queue, finally bringing the xen pvUSB backend. Also a small ohci fix. please pull, Gerd The following changes since commit e081c24d30c1e7b29eb4450aa16d6a0da5782797: Merge remote-tracking branch 'remotes/ehabkost/tags/machine-pull-request' into staging (2016-05-23 10:30:41 +0100) are available in the git repository at: git://git.kraxel.org/qemu tags/pull-usb-20160523-1 for you to fetch changes up to d400fc018b326104d26d730e5cc8c36c1f662c34: usb/ohci: Fix crash with when specifying too many num-ports (2016-05-23 14:59:40 +0200) ---------------------------------------------------------------- usb: add xen pvUSB backend, add num-ports check to ohci. ---------------------------------------------------------------- Juergen Gross (3): xen: introduce dummy system device xen: write information about supported backends xen: add pvUSB backend Thomas Huth (1): usb/ohci: Fix crash with when specifying too many num-ports hw/usb/Makefile.objs | 4 + hw/usb/hcd-ohci.c | 6 + hw/usb/xen-usb.c | 1080 ++++++++++++++++++++++++++++++++++++++++++ hw/xen/xen_backend.c | 63 +++ hw/xen/xen_devconfig.c | 52 +- hw/xenpv/xen_machine_pv.c | 43 ++ include/hw/xen/xen_backend.h | 6 + include/hw/xen/xen_common.h | 2 + 8 files changed, 1206 insertions(+), 50 deletions(-) create mode 100644 hw/usb/xen-usb.c