|
|
|
|
|
|
|
|
|
|
xen-devel
Re: [Xen-devel] [PATCH] xend: fix the pci BDF format string
On Thu, May 07, 2009 at 10:55:40AM +0800, Cui, Dexuan wrote:
> Fix the typo introduced by changeset 19446: 2ef77b4bdf58.
Hi,
I can confirm that this patch fixes the problem, but would
it be possible to have a more descriptive changelog to avoid
having to look up what it was that 19446:2ef77b4bdf58 did?
Perhaps:
xend: Fix the PCI BDF format string used in the output of xm
pci-list-assignable-devices
This fixes a typo introduced by changeset 19446: 2ef77b4bdf58
> Signed-off-by: Dexuan Cui <dexuan.cui@xxxxxxxxx>
>
> diff -r fb3e1e84d8f4 tools/python/xen/xm/main.py
> --- a/tools/python/xen/xm/main.py Wed May 06 12:40:51 2009 +0100
> +++ b/tools/python/xen/xm/main.py Thu May 07 10:45:47 2009 +0800
> @@ -2197,7 +2197,7 @@ def xm_pci_list_assignable_devices(args)
>
> devs = server.xend.node.pciinfo()
>
> - fmt_str = "%(domain)04x:%(bus)02x:%(slot)02x:%(func)01x"
> + fmt_str = "%(domain)04x:%(bus)02x:%(slot)02x.%(func)01x"
> for x in devs:
> pci = parse_pci_info(x)
> print fmt_str % pci
--
Simon Horman
VA Linux Systems Japan K.K. Satellite Lab in Sydney, Australia
H: www.vergenet.net/~horms/ W: www.valinux.co.jp/en
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|