[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH] libxl: When checking BDF of existing slots, function should be decimal, not hex
On Fri, 2012-05-25 at 21:27 +0100, Konrad Rzeszutek Wilk wrote: > On Fri, May 25, 2012 at 04:34:17PM +0000, George Dunlap wrote: > > # HG changeset patch > > # User George Dunlap <george.dunlap@xxxxxxxxxxxxx> > > # Date 1337961666 0 > > # Node ID 1c28051020488782f1277dd60a2418324580297e > > # Parent 69c3ae25bb1ddcb0ea44b7566d36d34e9d6a70aa > > libxl: When checking BDF of existing slots, function should be decimal, not > > hex > > > > Spotted-by: Konrad Wilk <konrad.wilk@xxxxxxxxxx> > > Acked-by: Konrad Rzeszutek Wilk <konrad.wilk@xxxxxxxxxx> > > Signed-off-by: George Dunlap <george.dunlap@xxxxxxxxxxxxx> A PCI func can be at most 7 I think so %x vs %d probably doesn't have any real impact under normal use. Applied though. > > > > diff --git a/tools/libxl/libxl_pci.c b/tools/libxl/libxl_pci.c > > --- a/tools/libxl/libxl_pci.c > > +++ b/tools/libxl/libxl_pci.c > > @@ -480,7 +480,7 @@ static int pciback_dev_has_slot(libxl__g > > return ERROR_FAIL; > > } > > > > - while(fscanf(f, "%x:%x:%x.%x\n", &dom, &bus, &dev, &func)==4) { > > + while(fscanf(f, "%x:%x:%x.%d\n", &dom, &bus, &dev, &func)==4) { > > if(dom == pcidev->domain > > && bus == pcidev->bus > > && dev == pcidev->dev > > > > _______________________________________________ > > Xen-devel mailing list > > Xen-devel@xxxxxxxxxxxxx > > http://lists.xen.org/xen-devel > > _______________________________________________ > Xen-devel mailing list > Xen-devel@xxxxxxxxxxxxx > http://lists.xen.org/xen-devel _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |