|
|
|
|
|
|
|
|
|
|
xen-devel
Re: [Xen-devel] [PATCH] PV Passthrough PCI Device Hotplug Support(Tools
Masaki Kanno wrote:
Hi Iwamatsu,
def xm_pci_detach(args):
- arg_check(args, 'pci-detach', 2)
- dom = args[0]
- dev = args[1]
- server.xend.domain.destroyDevice(dom, 'dpci', dev)
+ arg_check(args, 'pci-detach', 2, 2) <----------------- here!!
+ (dom, pci) = parse_pci_configuration(args, 'Closing')
+ server.xend.domain.device_configure(dom, pci)
+
The last "2" is not necessary.
All right.
The revised patch is attached.
-- Yosuke
pv_pcihp_tools_merge-r1.patch
Description: all/allfiles
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|