ieee1394: sbp2: fix rescan-scsi-bus
authorStefan Richter <stefanr@s5r6.in-berlin.de>
Sun, 17 Feb 2008 13:57:10 +0000 (14:57 +0100)
committerStefan Richter <stefanr@s5r6.in-berlin.de>
Tue, 19 Feb 2008 18:57:24 +0000 (19:57 +0100)
rescan-scsi-bus used to add SBP-2 targets which weren't there.

Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
drivers/ieee1394/sbp2.c

index accb2ad..9e2b196 100644 (file)
@@ -1974,6 +1974,9 @@ static int sbp2scsi_slave_alloc(struct scsi_device *sdev)
 {
        struct sbp2_lu *lu = (struct sbp2_lu *)sdev->host->hostdata[0];
 
+       if (sdev->lun != 0 || sdev->id != lu->ud->id || sdev->channel != 0)
+               return -ENODEV;
+
        lu->sdev = sdev;
        sdev->allow_restart = 1;