]> git.karo-electronics.de Git - karo-tx-linux.git/commit
scsi: lpfc: Break up IO ctx list into a separate get and put list
authorJames Smart <jsmart2021@gmail.com>
Fri, 16 Jun 2017 05:56:45 +0000 (22:56 -0700)
committerMartin K. Petersen <martin.petersen@oracle.com>
Tue, 20 Jun 2017 01:40:10 +0000 (21:40 -0400)
commit966bb5b7119607cf3d9a0d668eb67af67c2bab45
treee5c220c32903cb65cf898ab2d71eb5b7de8c9b6f
parent810ffa4789c8453caf0b876619c428bf64fef304
scsi: lpfc: Break up IO ctx list into a separate get and put list

Since unsol rcv ISR and command cmpl ISR both access/lock this list,
separate get/put lists will reduce contention.

Replaced
struct list_head lpfc_nvmet_ctx_list;
with
struct list_head lpfc_nvmet_ctx_get_list;
struct list_head lpfc_nvmet_ctx_put_list;
and all correpsonding locks and counters.

Signed-off-by: Dick Kennedy <dick.kennedy@broadcom.com>
Signed-off-by: James Smart <james.smart@broadcom.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/lpfc/lpfc_attr.c
drivers/scsi/lpfc/lpfc_debugfs.c
drivers/scsi/lpfc/lpfc_init.c
drivers/scsi/lpfc/lpfc_nvmet.c
drivers/scsi/lpfc/lpfc_sli4.h