Lines Matching refs:blport
1179 struct bnx2fc_lport *blport, *tmp; in bnx2fc_free_vport() local
1182 list_for_each_entry_safe(blport, tmp, &hba->vports, list) { in bnx2fc_free_vport()
1183 if (blport->lport == lport) { in bnx2fc_free_vport()
1184 list_del(&blport->list); in bnx2fc_free_vport()
1185 kfree(blport); in bnx2fc_free_vport()
1500 struct bnx2fc_lport *blport; in bnx2fc_if_create() local
1504 blport = kzalloc(sizeof(struct bnx2fc_lport), GFP_KERNEL); in bnx2fc_if_create()
1505 if (!blport) { in bnx2fc_if_create()
1581 blport->lport = lport; in bnx2fc_if_create()
1582 list_add_tail(&blport->list, &hba->vports); in bnx2fc_if_create()
1592 kfree(blport); in bnx2fc_if_create()