Loading arch/sparc64/kernel/pci_fire.c +10 −11 Original line number Diff line number Diff line Loading @@ -515,13 +515,13 @@ static int __devinit fire_probe(struct of_device *op, p = kzalloc(sizeof(struct pci_controller_info), GFP_ATOMIC); if (!p) { printk(KERN_ERR PFX "Cannot allocate controller info.\n"); goto out_free; goto out_err; } iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC); if (!iommu) { printk(KERN_ERR PFX "Cannot allocate PBM A iommu.\n"); goto out_free; goto out_free_controller; } p->pbm_A.iommu = iommu; Loading @@ -529,21 +529,20 @@ static int __devinit fire_probe(struct of_device *op, iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC); if (!iommu) { printk(KERN_ERR PFX "Cannot allocate PBM A iommu.\n"); goto out_free; goto out_free_iommu_A; } p->pbm_B.iommu = iommu; return pci_fire_pbm_init(p, dp, portid); out_free: if (p) { if (p->pbm_A.iommu) out_free_iommu_A: kfree(p->pbm_A.iommu); if (p->pbm_B.iommu) kfree(p->pbm_B.iommu); out_free_controller: kfree(p); } out_err: return err; } Loading arch/sparc64/kernel/pci_psycho.c +11 −10 Original line number Diff line number Diff line Loading @@ -1051,13 +1051,13 @@ static int __devinit psycho_probe(struct of_device *op, p = kzalloc(sizeof(struct pci_controller_info), GFP_ATOMIC); if (!p) { printk(KERN_ERR PFX "Cannot allocate controller info.\n"); goto out_free; goto out_err; } iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC); if (!iommu) { printk(KERN_ERR PFX "Cannot allocate PBM iommu.\n"); goto out_free; goto out_free_controller; } p->pbm_A.iommu = p->pbm_B.iommu = iommu; Loading @@ -1069,7 +1069,7 @@ static int __devinit psycho_probe(struct of_device *op, err = -ENODEV; if (!pr_regs) { printk(KERN_ERR PFX "No reg property.\n"); goto out_free; goto out_free_iommu; } p->pbm_A.controller_regs = pr_regs[2].phys_addr; Loading @@ -1082,7 +1082,7 @@ static int __devinit psycho_probe(struct of_device *op, err = psycho_iommu_init(&p->pbm_A); if (err) goto out_free; goto out_free_iommu; is_pbm_a = ((pr_regs[0].phys_addr & 0x6000) == 0x2000); Loading @@ -1090,12 +1090,13 @@ static int __devinit psycho_probe(struct of_device *op, return 0; out_free: if (p) { if (p->pbm_A.iommu) out_free_iommu: kfree(p->pbm_A.iommu); out_free_controller: kfree(p); } out_err: return err; } Loading arch/sparc64/kernel/pci_sabre.c +13 −12 Original line number Diff line number Diff line Loading @@ -786,13 +786,13 @@ static int __devinit sabre_probe(struct of_device *op, p = kzalloc(sizeof(*p), GFP_ATOMIC); if (!p) { printk(KERN_ERR PFX "Cannot allocate controller info.\n"); goto out_free; goto out_err; } iommu = kzalloc(sizeof(*iommu), GFP_ATOMIC); if (!iommu) { printk(KERN_ERR PFX "Cannot allocate PBM iommu.\n"); goto out_free; goto out_free_controller; } pbm = &p->pbm_A; Loading @@ -813,7 +813,7 @@ static int __devinit sabre_probe(struct of_device *op, err = -ENODEV; if (!pr_regs) { printk(KERN_ERR PFX "No reg property\n"); goto out_free; goto out_free_iommu; } /* Loading Loading @@ -843,7 +843,7 @@ static int __devinit sabre_probe(struct of_device *op, vdma = of_get_property(dp, "virtual-dma", NULL); if (!vdma) { printk(KERN_ERR PFX "No virtual-dma property\n"); goto out_free; goto out_free_iommu; } dma_mask = vdma[0]; Loading @@ -863,12 +863,12 @@ static int __devinit sabre_probe(struct of_device *op, break; default: printk(KERN_ERR PFX "Strange virtual-dma size.\n"); goto out_free; goto out_free_iommu; } err = sabre_iommu_init(pbm, tsbsize, vdma[0], dma_mask); if (err) goto out_free; goto out_free_iommu; /* * Look for APB underneath. Loading @@ -876,12 +876,13 @@ static int __devinit sabre_probe(struct of_device *op, sabre_pbm_init(p, pbm, dp); return 0; out_free: if (p) { if (p->pbm_A.iommu) out_free_iommu: kfree(p->pbm_A.iommu); out_free_controller: kfree(p); } out_err: return err; } Loading arch/sparc64/kernel/pci_schizo.c +18 −14 Original line number Diff line number Diff line Loading @@ -1443,14 +1443,16 @@ static int __devinit __schizo_init(struct device_node *dp, unsigned long chip_ty struct pci_pbm_info *pbm; struct iommu *iommu; u32 portid; int err; portid = of_getintprop_default(dp, "portid", 0xff); err = -ENOMEM; for (pbm = pci_pbm_root; pbm; pbm = pbm->next) { if (portid_compare(pbm->portid, portid, chip_type)) { if (schizo_pbm_init(pbm->parent, dp, portid, chip_type)) return -ENOMEM; goto out_err; return 0; } } Loading @@ -1458,13 +1460,13 @@ static int __devinit __schizo_init(struct device_node *dp, unsigned long chip_ty p = kzalloc(sizeof(struct pci_controller_info), GFP_ATOMIC); if (!p) { printk(KERN_ERR PFX "Cannot allocate controller info.\n"); goto out_free; goto out_err; } iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC); if (!iommu) { printk(KERN_ERR PFX "Cannot allocate PBM A iommu.\n"); goto out_free; goto out_free_controller; } p->pbm_A.iommu = iommu; Loading @@ -1472,25 +1474,27 @@ static int __devinit __schizo_init(struct device_node *dp, unsigned long chip_ty iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC); if (!iommu) { printk(KERN_ERR PFX "Cannot allocate PBM B iommu.\n"); goto out_free; goto out_free_iommu_A; } p->pbm_B.iommu = iommu; if (schizo_pbm_init(p, dp, portid, chip_type)) goto out_free; goto out_free_iommu_B; return 0; out_free: if (p) { if (p->pbm_A.iommu) kfree(p->pbm_A.iommu); if (p->pbm_B.iommu) out_free_iommu_B: kfree(p->pbm_B.iommu); out_free_iommu_A: kfree(p->pbm_A.iommu); out_free_controller: kfree(p); } return -ENOMEM; out_err: return err; } static int __devinit schizo_probe(struct of_device *op, Loading arch/sparc64/kernel/pci_sun4v.c +16 −15 Original line number Diff line number Diff line Loading @@ -949,7 +949,7 @@ static int __devinit pci_sun4v_probe(struct of_device *op, struct device_node *dp; struct iommu *iommu; u32 devhandle; int i; int i, err; dp = op->node; Loading @@ -970,9 +970,10 @@ static int __devinit pci_sun4v_probe(struct of_device *op, } regs = of_get_property(dp, "reg", NULL); err = -ENODEV; if (!regs) { printk(KERN_ERR PFX "Could not find config registers\n"); return -ENODEV; goto out_err; } devhandle = (regs->phys_addr >> 32UL) & 0x0fffffff; Loading @@ -982,11 +983,12 @@ static int __devinit pci_sun4v_probe(struct of_device *op, } } err = -ENOMEM; for_each_possible_cpu(i) { unsigned long page = get_zeroed_page(GFP_ATOMIC); if (!page) return -ENOMEM; goto out_err; per_cpu(iommu_batch, i).pglist = (u64 *) page; } Loading @@ -994,13 +996,13 @@ static int __devinit pci_sun4v_probe(struct of_device *op, p = kzalloc(sizeof(struct pci_controller_info), GFP_ATOMIC); if (!p) { printk(KERN_ERR PFX "Could not allocate pci_controller_info\n"); goto out_free; goto out_err; } iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC); if (!iommu) { printk(KERN_ERR PFX "Could not allocate pbm A iommu\n"); goto out_free; goto out_free_controller; } p->pbm_A.iommu = iommu; Loading @@ -1008,22 +1010,21 @@ static int __devinit pci_sun4v_probe(struct of_device *op, iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC); if (!iommu) { printk(KERN_ERR PFX "Could not allocate pbm B iommu\n"); goto out_free; goto out_free_iommu_A; } p->pbm_B.iommu = iommu; return pci_sun4v_pbm_init(p, dp, devhandle); out_free: if (p) { if (p->pbm_A.iommu) out_free_iommu_A: kfree(p->pbm_A.iommu); if (p->pbm_B.iommu) kfree(p->pbm_B.iommu); out_free_controller: kfree(p); } return -ENOMEM; out_err: return err; } static struct of_device_id __initdata pci_sun4v_match[] = { Loading Loading
arch/sparc64/kernel/pci_fire.c +10 −11 Original line number Diff line number Diff line Loading @@ -515,13 +515,13 @@ static int __devinit fire_probe(struct of_device *op, p = kzalloc(sizeof(struct pci_controller_info), GFP_ATOMIC); if (!p) { printk(KERN_ERR PFX "Cannot allocate controller info.\n"); goto out_free; goto out_err; } iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC); if (!iommu) { printk(KERN_ERR PFX "Cannot allocate PBM A iommu.\n"); goto out_free; goto out_free_controller; } p->pbm_A.iommu = iommu; Loading @@ -529,21 +529,20 @@ static int __devinit fire_probe(struct of_device *op, iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC); if (!iommu) { printk(KERN_ERR PFX "Cannot allocate PBM A iommu.\n"); goto out_free; goto out_free_iommu_A; } p->pbm_B.iommu = iommu; return pci_fire_pbm_init(p, dp, portid); out_free: if (p) { if (p->pbm_A.iommu) out_free_iommu_A: kfree(p->pbm_A.iommu); if (p->pbm_B.iommu) kfree(p->pbm_B.iommu); out_free_controller: kfree(p); } out_err: return err; } Loading
arch/sparc64/kernel/pci_psycho.c +11 −10 Original line number Diff line number Diff line Loading @@ -1051,13 +1051,13 @@ static int __devinit psycho_probe(struct of_device *op, p = kzalloc(sizeof(struct pci_controller_info), GFP_ATOMIC); if (!p) { printk(KERN_ERR PFX "Cannot allocate controller info.\n"); goto out_free; goto out_err; } iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC); if (!iommu) { printk(KERN_ERR PFX "Cannot allocate PBM iommu.\n"); goto out_free; goto out_free_controller; } p->pbm_A.iommu = p->pbm_B.iommu = iommu; Loading @@ -1069,7 +1069,7 @@ static int __devinit psycho_probe(struct of_device *op, err = -ENODEV; if (!pr_regs) { printk(KERN_ERR PFX "No reg property.\n"); goto out_free; goto out_free_iommu; } p->pbm_A.controller_regs = pr_regs[2].phys_addr; Loading @@ -1082,7 +1082,7 @@ static int __devinit psycho_probe(struct of_device *op, err = psycho_iommu_init(&p->pbm_A); if (err) goto out_free; goto out_free_iommu; is_pbm_a = ((pr_regs[0].phys_addr & 0x6000) == 0x2000); Loading @@ -1090,12 +1090,13 @@ static int __devinit psycho_probe(struct of_device *op, return 0; out_free: if (p) { if (p->pbm_A.iommu) out_free_iommu: kfree(p->pbm_A.iommu); out_free_controller: kfree(p); } out_err: return err; } Loading
arch/sparc64/kernel/pci_sabre.c +13 −12 Original line number Diff line number Diff line Loading @@ -786,13 +786,13 @@ static int __devinit sabre_probe(struct of_device *op, p = kzalloc(sizeof(*p), GFP_ATOMIC); if (!p) { printk(KERN_ERR PFX "Cannot allocate controller info.\n"); goto out_free; goto out_err; } iommu = kzalloc(sizeof(*iommu), GFP_ATOMIC); if (!iommu) { printk(KERN_ERR PFX "Cannot allocate PBM iommu.\n"); goto out_free; goto out_free_controller; } pbm = &p->pbm_A; Loading @@ -813,7 +813,7 @@ static int __devinit sabre_probe(struct of_device *op, err = -ENODEV; if (!pr_regs) { printk(KERN_ERR PFX "No reg property\n"); goto out_free; goto out_free_iommu; } /* Loading Loading @@ -843,7 +843,7 @@ static int __devinit sabre_probe(struct of_device *op, vdma = of_get_property(dp, "virtual-dma", NULL); if (!vdma) { printk(KERN_ERR PFX "No virtual-dma property\n"); goto out_free; goto out_free_iommu; } dma_mask = vdma[0]; Loading @@ -863,12 +863,12 @@ static int __devinit sabre_probe(struct of_device *op, break; default: printk(KERN_ERR PFX "Strange virtual-dma size.\n"); goto out_free; goto out_free_iommu; } err = sabre_iommu_init(pbm, tsbsize, vdma[0], dma_mask); if (err) goto out_free; goto out_free_iommu; /* * Look for APB underneath. Loading @@ -876,12 +876,13 @@ static int __devinit sabre_probe(struct of_device *op, sabre_pbm_init(p, pbm, dp); return 0; out_free: if (p) { if (p->pbm_A.iommu) out_free_iommu: kfree(p->pbm_A.iommu); out_free_controller: kfree(p); } out_err: return err; } Loading
arch/sparc64/kernel/pci_schizo.c +18 −14 Original line number Diff line number Diff line Loading @@ -1443,14 +1443,16 @@ static int __devinit __schizo_init(struct device_node *dp, unsigned long chip_ty struct pci_pbm_info *pbm; struct iommu *iommu; u32 portid; int err; portid = of_getintprop_default(dp, "portid", 0xff); err = -ENOMEM; for (pbm = pci_pbm_root; pbm; pbm = pbm->next) { if (portid_compare(pbm->portid, portid, chip_type)) { if (schizo_pbm_init(pbm->parent, dp, portid, chip_type)) return -ENOMEM; goto out_err; return 0; } } Loading @@ -1458,13 +1460,13 @@ static int __devinit __schizo_init(struct device_node *dp, unsigned long chip_ty p = kzalloc(sizeof(struct pci_controller_info), GFP_ATOMIC); if (!p) { printk(KERN_ERR PFX "Cannot allocate controller info.\n"); goto out_free; goto out_err; } iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC); if (!iommu) { printk(KERN_ERR PFX "Cannot allocate PBM A iommu.\n"); goto out_free; goto out_free_controller; } p->pbm_A.iommu = iommu; Loading @@ -1472,25 +1474,27 @@ static int __devinit __schizo_init(struct device_node *dp, unsigned long chip_ty iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC); if (!iommu) { printk(KERN_ERR PFX "Cannot allocate PBM B iommu.\n"); goto out_free; goto out_free_iommu_A; } p->pbm_B.iommu = iommu; if (schizo_pbm_init(p, dp, portid, chip_type)) goto out_free; goto out_free_iommu_B; return 0; out_free: if (p) { if (p->pbm_A.iommu) kfree(p->pbm_A.iommu); if (p->pbm_B.iommu) out_free_iommu_B: kfree(p->pbm_B.iommu); out_free_iommu_A: kfree(p->pbm_A.iommu); out_free_controller: kfree(p); } return -ENOMEM; out_err: return err; } static int __devinit schizo_probe(struct of_device *op, Loading
arch/sparc64/kernel/pci_sun4v.c +16 −15 Original line number Diff line number Diff line Loading @@ -949,7 +949,7 @@ static int __devinit pci_sun4v_probe(struct of_device *op, struct device_node *dp; struct iommu *iommu; u32 devhandle; int i; int i, err; dp = op->node; Loading @@ -970,9 +970,10 @@ static int __devinit pci_sun4v_probe(struct of_device *op, } regs = of_get_property(dp, "reg", NULL); err = -ENODEV; if (!regs) { printk(KERN_ERR PFX "Could not find config registers\n"); return -ENODEV; goto out_err; } devhandle = (regs->phys_addr >> 32UL) & 0x0fffffff; Loading @@ -982,11 +983,12 @@ static int __devinit pci_sun4v_probe(struct of_device *op, } } err = -ENOMEM; for_each_possible_cpu(i) { unsigned long page = get_zeroed_page(GFP_ATOMIC); if (!page) return -ENOMEM; goto out_err; per_cpu(iommu_batch, i).pglist = (u64 *) page; } Loading @@ -994,13 +996,13 @@ static int __devinit pci_sun4v_probe(struct of_device *op, p = kzalloc(sizeof(struct pci_controller_info), GFP_ATOMIC); if (!p) { printk(KERN_ERR PFX "Could not allocate pci_controller_info\n"); goto out_free; goto out_err; } iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC); if (!iommu) { printk(KERN_ERR PFX "Could not allocate pbm A iommu\n"); goto out_free; goto out_free_controller; } p->pbm_A.iommu = iommu; Loading @@ -1008,22 +1010,21 @@ static int __devinit pci_sun4v_probe(struct of_device *op, iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC); if (!iommu) { printk(KERN_ERR PFX "Could not allocate pbm B iommu\n"); goto out_free; goto out_free_iommu_A; } p->pbm_B.iommu = iommu; return pci_sun4v_pbm_init(p, dp, devhandle); out_free: if (p) { if (p->pbm_A.iommu) out_free_iommu_A: kfree(p->pbm_A.iommu); if (p->pbm_B.iommu) kfree(p->pbm_B.iommu); out_free_controller: kfree(p); } return -ENOMEM; out_err: return err; } static struct of_device_id __initdata pci_sun4v_match[] = { Loading