|
@@ -2371,6 +2371,7 @@ static int esp_slave_alloc(struct scsi_device *dev)
|
|
|
dev->hostdata = lp;
|
|
|
|
|
|
tp->starget = dev->sdev_target;
|
|
|
+ tp->starget_ref++;
|
|
|
|
|
|
spi_min_period(tp->starget) = esp->min_period;
|
|
|
spi_max_offset(tp->starget) = 15;
|
|
@@ -2425,10 +2426,17 @@ static int esp_slave_configure(struct scsi_device *dev)
|
|
|
|
|
|
static void esp_slave_destroy(struct scsi_device *dev)
|
|
|
{
|
|
|
+ struct esp *esp = shost_priv(dev->host);
|
|
|
+ struct esp_target_data *tp = &esp->target[dev->id];
|
|
|
struct esp_lun_data *lp = dev->hostdata;
|
|
|
|
|
|
kfree(lp);
|
|
|
dev->hostdata = NULL;
|
|
|
+
|
|
|
+ BUG_ON(tp->starget_ref <= 0);
|
|
|
+
|
|
|
+ if (!--tp->starget_ref)
|
|
|
+ tp->starget = NULL;
|
|
|
}
|
|
|
|
|
|
static int esp_eh_abort_handler(struct scsi_cmnd *cmd)
|