Lines Matching defs:vports
768 struct lpfc_vport **vports;
770 vports = kcalloc(phba->max_vports + 1, sizeof(struct lpfc_vport *),
772 if (vports == NULL)
785 vports[index++] = port_iterator;
788 return vports;
792 lpfc_destroy_vport_work_array(struct lpfc_hba *phba, struct lpfc_vport **vports)
795 if (vports == NULL)
797 for (i = 0; i <= phba->max_vports && vports[i] != NULL; i++)
798 scsi_host_put(lpfc_shost_from_vport(vports[i]));
799 kfree(vports);