From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N2R0K-00083A-4P for qemu-devel@nongnu.org; Mon, 26 Oct 2009 10:57:04 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N2R0F-00081t-Ie for qemu-devel@nongnu.org; Mon, 26 Oct 2009 10:57:03 -0400 Received: from [199.232.76.173] (port=54445 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N2R0F-00081k-AX for qemu-devel@nongnu.org; Mon, 26 Oct 2009 10:56:59 -0400 Received: from mx1.redhat.com ([209.132.183.28]:14315) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1N2R0D-0007v1-QV for qemu-devel@nongnu.org; Mon, 26 Oct 2009 10:56:58 -0400 Received: from int-mx03.intmail.prod.int.phx2.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.16]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n9QEuuhX002046 for ; Mon, 26 Oct 2009 10:56:56 -0400 From: Gerd Hoffmann Date: Mon, 26 Oct 2009 15:56:44 +0100 Message-Id: <1256569011-20256-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH v2 0/7] use qdev for -usbdevice List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, This patch series changes the way the -usbdevice switch (and the usb_add monitor command) is handled. Instead of hard-coding stuff in vl.c it is integrated with qdev by adding new fields to USBDeviceInfo. First patch adds the infrastructure. Follwing patches switch over the usb drivers to the new way of handling things. Not converted (yet) are: * bt: bluetooth is not qdev-ified at all, needs investigation. * net: too many net patches in flight right now. New in v2: - also convert host usb pass through. - bugfix in auto attach opt-out patch. cheers, Gerd