aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/hotplug/rpaphp_core.c
diff options
context:
space:
mode:
authorLinas Vepstas <linas@austin.ibm.com>2007-04-13 18:34:09 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2007-05-02 22:02:38 -0400
commit31be7586d1122538747519d786408f142f59dd46 (patch)
tree2afc171419c60084a142164b1da6ca17aeded4ef /drivers/pci/hotplug/rpaphp_core.c
parentfa1891596ca252e48e8803738fd8ead5b3082217 (diff)
PCI: rpaphp: match up alloc and free in same routine
The routine that called an alloc should be the same routine that calles the mathcing free, if anything in the middle failed. Signed-off-by: Linas Vepstas <linas@austin.ibm.com> Cc: John Rose <johnrose@austin.ibm.com> Signed-off-by: Kristen Carlson Accardi <kristen.c.accardi@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/pci/hotplug/rpaphp_core.c')
-rw-r--r--drivers/pci/hotplug/rpaphp_core.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/pci/hotplug/rpaphp_core.c b/drivers/pci/hotplug/rpaphp_core.c
index 3afd154bf543..ca95e1515d6f 100644
--- a/drivers/pci/hotplug/rpaphp_core.c
+++ b/drivers/pci/hotplug/rpaphp_core.c
@@ -321,10 +321,15 @@ int rpaphp_add_slot(struct device_node *dn)
321 indexes[i + 1], name, type); 321 indexes[i + 1], name, type);
322 322
323 retval = rpaphp_register_pci_slot(slot); 323 retval = rpaphp_register_pci_slot(slot);
324 if (retval)
325 dealloc_slot_struct(slot);
326
324 name += strlen(name) + 1; 327 name += strlen(name) + 1;
325 type += strlen(type) + 1; 328 type += strlen(type) + 1;
326 } 329 }
327 dbg("%s - Exit: rc[%d]\n", __FUNCTION__, retval); 330 dbg("%s - Exit: rc[%d]\n", __FUNCTION__, retval);
331
332 /* XXX FIXME: reports a failure only if last entry in loop failed */
328 return retval; 333 return retval;
329} 334}
330 335