[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] tools: Remove references to USB paravirt driver. Doesn't affect qemu usb args.
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1197453812 0 # Node ID 38febeb3033fd57b9e26b66ceec9016e3cdc7291 # Parent 309141220822d713ec03caf1622d33db7f18ea2f tools: Remove references to USB paravirt driver. Doesn't affect qemu usb args. Some relics in the control tools still refer to the USB paravirt driver. Remove this as it's dead code and is in the history for anyone really interested. The Qemu device model has its own USB configuration, which should still work. Signed-off-by: Mark Williamson <mark.williamson@xxxxxxxxxxxx> --- tools/python/xen/xend/server/usbif.py | 42 ---------------------------------- tools/python/xen/xend/XendDevices.py | 3 -- tools/python/xen/xm/create.py | 11 -------- 3 files changed, 1 insertion(+), 55 deletions(-) diff -r 309141220822 -r 38febeb3033f tools/python/xen/xend/XendDevices.py --- a/tools/python/xen/xend/XendDevices.py Wed Dec 12 10:03:09 2007 +0000 +++ b/tools/python/xen/xend/XendDevices.py Wed Dec 12 10:03:32 2007 +0000 @@ -19,7 +19,7 @@ # A collection of DevControllers # -from xen.xend.server import blkif, netif, tpmif, pciif, iopif, irqif, usbif, vfbif +from xen.xend.server import blkif, netif, tpmif, pciif, iopif, irqif, vfbif from xen.xend.server.BlktapController import BlktapController from xen.xend.server.ConsoleController import ConsoleController @@ -41,7 +41,6 @@ class XendDevices: 'pci': pciif.PciController, 'ioports': iopif.IOPortsController, 'irq': irqif.IRQController, - 'usb': usbif.UsbifController, 'tap': BlktapController, 'vfb': vfbif.VfbifController, 'vkbd': vfbif.VkbdifController, diff -r 309141220822 -r 38febeb3033f tools/python/xen/xend/server/usbif.py --- a/tools/python/xen/xend/server/usbif.py Wed Dec 12 10:03:09 2007 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,42 +0,0 @@ -#============================================================================ -# This library is free software; you can redistribute it and/or -# modify it under the terms of version 2.1 of the GNU Lesser General Public -# License as published by the Free Software Foundation. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -#============================================================================ -# Copyright (C) 2004 Mike Wray <mike.wray@xxxxxx> -# Copyright (C) 2004 Intel Research Cambridge -# Copyright (C) 2004 Mark Williamson <mark.williamson@xxxxxxxxxxxx> -# Copyright (C) 2005 XenSource Ltd -#============================================================================ - - -"""Support for virtual USB hubs. -""" - -from xen.xend.server.DevController import DevController - - -class UsbifController(DevController): - """USB device interface controller. Handles all USB devices - for a domain. - """ - - def __init__(self, vm): - """Create a USB device controller. - """ - DevController.__init__(self, vm) - - - def getDeviceDetails(self, _): - """@see DevController.getDeviceDetails""" - - return (self.allocateDeviceID(), {}, {}) diff -r 309141220822 -r 38febeb3033f tools/python/xen/xm/create.py --- a/tools/python/xen/xm/create.py Wed Dec 12 10:03:09 2007 +0000 +++ b/tools/python/xen/xm/create.py Wed Dec 12 10:03:32 2007 +0000 @@ -309,11 +309,6 @@ gopts.var('irq', val='IRQ', For example 'irq=7'. This option may be repeated to add more than one IRQ.""") -gopts.var('usbport', val='PATH', - fn=append_value, default=[], - use="""Add a physical USB port to a domain, as specified by the path - to that port. This option may be repeated to add more than one port.""") - gopts.var('vfb', val="type={vnc,sdl},vncunused=1,vncdisplay=N,vnclisten=ADDR,display=DISPLAY,xauthority=XAUTHORITY,vncpasswd=PASSWORD", fn=append_value, default=[], use="""Make the domain a framebuffer backend. @@ -616,11 +611,6 @@ def configure_irq(config_devs, vals): for irq in vals.irq: config_irq = ['irq', ['irq', irq]] config_devs.append(['device', config_irq]) - -def configure_usb(config_devs, vals): - for path in vals.usbport: - config_usb = ['usbport', ['path', path]] - config_devs.append(['device', config_usb]) def configure_vfbs(config_devs, vals): for f in vals.vfb: @@ -800,7 +790,6 @@ def make_config(vals): configure_ioports(config_devs, vals) configure_irq(config_devs, vals) configure_vifs(config_devs, vals) - configure_usb(config_devs, vals) configure_vtpm(config_devs, vals) configure_vfbs(config_devs, vals) configure_security(config, vals) _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |