Commit 77f3f879 authored by Tejun Heo's avatar Tejun Heo

[PATCH] libata: fix ata_device_add() error path

In the error path, ata_device_add()

* dereferences null host_set->ports[] element.
* calls scsi_remove_host() on not-yet-added shost.

This patch fixes both bugs.  The first problem was spotted and initial
patch submitted by Dave Jones <davej@redhat.com>.  The second problem
was mentioned and fixed by Jeff Garzik <jgarzik@pobox.com> in a larger
cleanup patch.

Cc: Dave Jones <davej@redhat.com>
Cc: Jeff Garzik <jgarzik@pobox.com>
Signed-off-by: default avatarTejun Heo <htejun@gmail.com>
parent 6543bc07
...@@ -5511,10 +5511,10 @@ int ata_device_add(const struct ata_probe_ent *ent) ...@@ -5511,10 +5511,10 @@ int ata_device_add(const struct ata_probe_ent *ent)
err_out: err_out:
for (i = 0; i < count; i++) { for (i = 0; i < count; i++) {
struct ata_port *ap = host_set->ports[i]; struct ata_port *ap = host_set->ports[i];
if (ap) {
scsi_remove_host(ap->host); ap->ops->port_stop(ap);
ap->ops->port_stop(ap); scsi_host_put(ap->host);
scsi_host_put(ap->host); }
} }
err_free_ret: err_free_ret:
kfree(host_set); kfree(host_set);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment