lpfc: Fix driver crash when module parameter lpfc_fcp_io_channel set to 16
authorJames Smart <james.smart@avagotech.com>
Wed, 16 Dec 2015 23:11:56 +0000 (18:11 -0500)
committerMartin K. Petersen <martin.petersen@oracle.com>
Tue, 22 Dec 2015 02:54:09 +0000 (21:54 -0500)
Fix driver crash when module parameter lpfc_fcp_io_channel set to 16

Signed-off-by: Dick Kennedy <dick.kennedy@avagotech.com>
Signed-off-by: James Smart <james.smart@avagotech.com>
Reviewed-by: Hannes Reinicke <hare@suse.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/lpfc/lpfc_init.c

index db9446c612dadf1ffebb3de4803eb4a59ec6442f..5915407d19aa9ef42dd8f06953779c2ade0a8701 100644 (file)
@@ -8833,9 +8833,12 @@ found:
                                 * already mapped to this phys_id.
                                 */
                                if (cpup->irq != LPFC_VECTOR_MAP_EMPTY) {
-                                       chann[saved_chann] =
-                                               cpup->channel_id;
-                                       saved_chann++;
+                                       if (saved_chann <=
+                                           LPFC_FCP_IO_CHAN_MAX) {
+                                               chann[saved_chann] =
+                                                       cpup->channel_id;
+                                               saved_chann++;
+                                       }
                                        goto out;
                                }
 
This page took 0.031442 seconds and 5 git commands to generate.