diff options
author | James Smart <James.Smart@Emulex.Com> | 2009-07-19 10:01:32 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2009-08-22 17:51:59 -0500 |
commit | f1c3b0fcbb8104dac92d65d5016500a09beea287 (patch) | |
tree | f7c870106824c1b5294c96bc3fda6b8119383cc8 /drivers/scsi/lpfc/lpfc_init.c | |
parent | 1c6834a7e85715a4ac07c1cac25a1950040decb0 (diff) | |
download | linux-3.10-f1c3b0fcbb8104dac92d65d5016500a09beea287.tar.gz linux-3.10-f1c3b0fcbb8104dac92d65d5016500a09beea287.tar.bz2 linux-3.10-f1c3b0fcbb8104dac92d65d5016500a09beea287.zip |
[SCSI] lpfc 8.3.4: Add bsg (SGIOv4) support for ELS/CT support
Add bsg (SGIOv4) support for sending and receiving ELS, CT commands
This patch adds a new file, lpfc_bsg.c.
Signed-off-by: James Smart <James.Smart@emulex.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/lpfc/lpfc_init.c')
-rw-r--r-- | drivers/scsi/lpfc/lpfc_init.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/scsi/lpfc/lpfc_init.c b/drivers/scsi/lpfc/lpfc_init.c index 18bc5905c44..08112e7a834 100644 --- a/drivers/scsi/lpfc/lpfc_init.c +++ b/drivers/scsi/lpfc/lpfc_init.c @@ -4171,6 +4171,9 @@ lpfc_hba_alloc(struct pci_dev *pdev) return NULL; } + mutex_init(&phba->ct_event_mutex); + INIT_LIST_HEAD(&phba->ct_ev_waiters); + return phba; } |