diff options
author | James Bottomley <James.Bottomley@HansenPartnership.com> | 2009-07-31 20:41:22 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2009-08-22 18:52:13 -0400 |
commit | 43d8eb9cfd0aea93be32181c64e18191b69c211c (patch) | |
tree | 76725fe2ea080cb26c7503dbab8226181de1aa04 /drivers/misc/enclosure.c | |
parent | 163f52b6cf3a639df6a72c7937e0eb88b20f1ef3 (diff) |
[SCSI] ses: add support for enclosure component hot removal
Right at the moment, hot removal of a device within an enclosure does
nothing (because the intf_remove only copes with enclosure removal not
with component removal). Fix this by adding a function to remove the
component. Also needed to fix the prototype of
enclosure_remove_device, since we know the device we've removed but
not the internal component number
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/misc/enclosure.c')
-rw-r--r-- | drivers/misc/enclosure.c | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/drivers/misc/enclosure.c b/drivers/misc/enclosure.c index 789d12128c24..850706a5e553 100644 --- a/drivers/misc/enclosure.c +++ b/drivers/misc/enclosure.c | |||
@@ -332,19 +332,25 @@ EXPORT_SYMBOL_GPL(enclosure_add_device); | |||
332 | * Returns zero on success or an error. | 332 | * Returns zero on success or an error. |
333 | * | 333 | * |
334 | */ | 334 | */ |
335 | int enclosure_remove_device(struct enclosure_device *edev, int component) | 335 | int enclosure_remove_device(struct enclosure_device *edev, struct device *dev) |
336 | { | 336 | { |
337 | struct enclosure_component *cdev; | 337 | struct enclosure_component *cdev; |
338 | int i; | ||
338 | 339 | ||
339 | if (!edev || component >= edev->components) | 340 | if (!edev || !dev) |
340 | return -EINVAL; | 341 | return -EINVAL; |
341 | 342 | ||
342 | cdev = &edev->component[component]; | 343 | for (i = 0; i < edev->components; i++) { |
343 | 344 | cdev = &edev->component[i]; | |
344 | device_del(&cdev->cdev); | 345 | if (cdev->dev == dev) { |
345 | put_device(cdev->dev); | 346 | enclosure_remove_links(cdev); |
346 | cdev->dev = NULL; | 347 | device_del(&cdev->cdev); |
347 | return device_add(&cdev->cdev); | 348 | put_device(dev); |
349 | cdev->dev = NULL; | ||
350 | return device_add(&cdev->cdev); | ||
351 | } | ||
352 | } | ||
353 | return -ENODEV; | ||
348 | } | 354 | } |
349 | EXPORT_SYMBOL_GPL(enclosure_remove_device); | 355 | EXPORT_SYMBOL_GPL(enclosure_remove_device); |
350 | 356 | ||