]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
hpsa: do not ignore return value of hpsa_register_scsi
authorStephen Cameron <stephenmcameron@gmail.com>
Thu, 23 Apr 2015 14:32:37 +0000 (09:32 -0500)
committerJames Bottomley <JBottomley@Odin.com>
Sun, 31 May 2015 18:26:20 +0000 (11:26 -0700)
add error handling for failure when registering with SCSI subsystem.

Reviewed-by: Scott Teel <scott.teel@pmcs.com>
Reviewed-by: Kevin Barnett <kevin.barnett@pmcs.com>
Reviewed-by: Tomas Henzl <thenzl@redhat.com>
Reviewed-by: Hannes Reinecke <hare@Suse.de>
Signed-off-by: Don Brace <don.brace@pmcs.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: James Bottomley <JBottomley@Odin.com>
drivers/scsi/hpsa.c

index 6bb8a3683b1e970628b540f146d3e99ee839827a..7eff9e0a02f558b21d1465d3abbbc22226861d82 100644 (file)
@@ -7408,7 +7408,9 @@ reinit_after_soft_reset:
        h->access.set_intr_mask(h, HPSA_INTR_ON);
 
        hpsa_hba_inquiry(h);
-       hpsa_register_scsi(h);  /* hook ourselves into SCSI subsystem */
+       rc = hpsa_register_scsi(h); /* hook ourselves into SCSI subsystem */
+       if (rc)
+               goto clean4;
 
        /* Monitor the controller for firmware lockups */
        h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;