Lines Matching defs:vports
820 struct lpfc_vport **vports;
822 vports = kcalloc(phba->max_vports + 1, sizeof(struct lpfc_vport *),
824 if (vports == NULL)
837 vports[index++] = port_iterator;
840 return vports;
844 lpfc_destroy_vport_work_array(struct lpfc_hba *phba, struct lpfc_vport **vports)
847 if (vports == NULL)
849 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++)
850 scsi_host_put(lpfc_shost_from_vport(vports[i]));
851 kfree(vports);