Home
last modified time | relevance | path

Searched refs:sglq_entry (Results 1 – 3 of 3) sorted by relevance

/Linux-v5.15/drivers/scsi/lpfc/
Dlpfc_init.c1035 struct lpfc_sglq *sglq_entry = NULL; in lpfc_hba_down_post_s4() local
1053 list_for_each_entry(sglq_entry, in lpfc_hba_down_post_s4()
1055 sglq_entry->state = SGL_FREED; in lpfc_hba_down_post_s4()
3891 struct lpfc_sglq *sglq_entry = NULL, *sglq_entry_next = NULL; in lpfc_sli4_els_sgl_update() local
3910 sglq_entry = kzalloc(sizeof(struct lpfc_sglq), in lpfc_sli4_els_sgl_update()
3912 if (sglq_entry == NULL) { in lpfc_sli4_els_sgl_update()
3920 sglq_entry->buff_type = GEN_BUFF_TYPE; in lpfc_sli4_els_sgl_update()
3921 sglq_entry->virt = lpfc_mbuf_alloc(phba, 0, in lpfc_sli4_els_sgl_update()
3922 &sglq_entry->phys); in lpfc_sli4_els_sgl_update()
3923 if (sglq_entry->virt == NULL) { in lpfc_sli4_els_sgl_update()
[all …]
Dlpfc_els.c11387 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL; in lpfc_sli4_vport_delete_els_xri_aborted() local
11391 list_for_each_entry_safe(sglq_entry, sglq_next, in lpfc_sli4_vport_delete_els_xri_aborted()
11393 if (sglq_entry->ndlp && sglq_entry->ndlp->vport == vport) { in lpfc_sli4_vport_delete_els_xri_aborted()
11394 lpfc_nlp_put(sglq_entry->ndlp); in lpfc_sli4_vport_delete_els_xri_aborted()
11395 sglq_entry->ndlp = NULL; in lpfc_sli4_vport_delete_els_xri_aborted()
11418 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL; in lpfc_sli4_els_xri_aborted() local
11426 list_for_each_entry_safe(sglq_entry, sglq_next, in lpfc_sli4_els_xri_aborted()
11428 if (sglq_entry->sli4_xritag == xri) { in lpfc_sli4_els_xri_aborted()
11429 list_del(&sglq_entry->list); in lpfc_sli4_els_xri_aborted()
11430 ndlp = sglq_entry->ndlp; in lpfc_sli4_els_xri_aborted()
[all …]
Dlpfc_sli.c7491 struct lpfc_sglq *sglq_entry = NULL; in lpfc_sli4_repost_sgl_list() local
7510 list_for_each_entry_safe(sglq_entry, sglq_entry_next, in lpfc_sli4_repost_sgl_list()
7512 list_del_init(&sglq_entry->list); in lpfc_sli4_repost_sgl_list()
7515 (sglq_entry->sli4_xritag != last_xritag + 1)) { in lpfc_sli4_repost_sgl_list()
7520 list_add_tail(&sglq_entry->list, &prep_sgl_list); in lpfc_sli4_repost_sgl_list()
7524 list_add_tail(&sglq_entry->list, &prep_sgl_list); in lpfc_sli4_repost_sgl_list()
7536 last_xritag = sglq_entry->sli4_xritag; in lpfc_sli4_repost_sgl_list()
7546 sglq_entry->phys, 0, in lpfc_sli4_repost_sgl_list()
7547 sglq_entry->sli4_xritag); in lpfc_sli4_repost_sgl_list()
7550 list_add_tail(&sglq_entry->list, in lpfc_sli4_repost_sgl_list()
[all …]