[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] libxl: style cleanups in libxl_device_pci_assignable_list()
commit e3ccca40cd30f575f1aa8ebba5b93af7b92c0649 Author: Paulina Szubarczyk <paulinaszubarczyk@xxxxxxxxx> AuthorDate: Mon May 9 13:30:57 2016 +0200 Commit: Wei Liu <wei.liu2@xxxxxxxxxx> CommitDate: Thu Jun 9 16:31:56 2016 +0100 libxl: style cleanups in libxl_device_pci_assignable_list() Various coding style compliance cleanups, such as, arranging for using only one path out of the function, whitespaces in loops ad if-s and r instead of rc for storing non-libxl error codes. Signed-off-by: Paulina Szubarczyk <paulinaszubarczyk@xxxxxxxxx> Acked-by: Wei Liu <wei.liu2@xxxxxxxxxx> --- tools/libxl/libxl_pci.c | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/tools/libxl/libxl_pci.c b/tools/libxl/libxl_pci.c index 4e2f56e..236bdd0 100644 --- a/tools/libxl/libxl_pci.c +++ b/tools/libxl/libxl_pci.c @@ -397,34 +397,33 @@ libxl_device_pci *libxl_device_pci_assignable_list(libxl_ctx *ctx, int *num) libxl_device_pci *pcidevs = NULL, *new, *assigned; struct dirent *de; DIR *dir; - int rc, num_assigned; + int r, num_assigned; *num = 0; - rc = get_all_assigned_devices(gc, &assigned, &num_assigned); - if ( rc ) - goto out; + r = get_all_assigned_devices(gc, &assigned, &num_assigned); + if (r) goto out; dir = opendir(SYSFS_PCIBACK_DRIVER); - if ( NULL == dir ) { - if ( errno == ENOENT ) { + if (NULL == dir) { + if (errno == ENOENT) { LOG(ERROR, "Looks like pciback driver not loaded"); - }else{ + } else { LOGE(ERROR, "Couldn't open %s", SYSFS_PCIBACK_DRIVER); } - goto out_closedir; + goto out; } - while( (de = readdir(dir)) ) { + while((de = readdir(dir))) { unsigned dom, bus, dev, func; - if ( sscanf(de->d_name, PCI_BDF, &dom, &bus, &dev, &func) != 4 ) + if (sscanf(de->d_name, PCI_BDF, &dom, &bus, &dev, &func) != 4) continue; - if ( is_pcidev_in_array(assigned, num_assigned, dom, bus, dev, func) ) + if (is_pcidev_in_array(assigned, num_assigned, dom, bus, dev, func)) continue; new = realloc(pcidevs, ((*num) + 1) * sizeof(*new)); - if ( NULL == new ) + if (NULL == new) continue; pcidevs = new; @@ -435,7 +434,6 @@ libxl_device_pci *libxl_device_pci_assignable_list(libxl_ctx *ctx, int *num) (*num)++; } -out_closedir: closedir(dir); out: GC_FREE; -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |