The documented call sequence for removing a host is to call the
transport xxx_remove_host() prior to scsi_remove_host(). The SRP
transport used to crash when that order was followed, but as it is now
fixed, use the documented order.
Signed-off-by: David Dillow <[email protected]>
Acked-by: FUJITA Tomonori <[email protected]>
Signed-off-by: Roland Dreier <[email protected]>
list_for_each_entry_safe(target, tmp_target,
&host->target_list, list) {
- scsi_remove_host(target->scsi_host);
srp_remove_host(target->scsi_host);
+ scsi_remove_host(target->scsi_host);
srp_disconnect_target(target);
ib_destroy_cm_id(target->cm_id);
srp_free_target_ib(target);