Searched refs:qentry (Results 1 – 9 of 9) sorted by relevance
| /linux/net/smc/ |
| H A D | smc_llc.c | 209 struct smc_llc_qentry *qentry = flow->qentry; in smc_llc_flow_qentry_clr() local 211 flow->qentry = NULL; in smc_llc_flow_qentry_clr() 212 return qentry; in smc_llc_flow_qentry_clr() 217 struct smc_llc_qentry *qentry; in smc_llc_flow_qentry_del() local 219 if (flow->qentry) { in smc_llc_flow_qentry_del() 220 qentry = flow->qentry; in smc_llc_flow_qentry_del() 221 flow->qentry = NULL; in smc_llc_flow_qentry_del() 222 kfree(qentry); in smc_llc_flow_qentry_del() 227 struct smc_llc_qentry *qentry) in smc_llc_flow_qentry_set() argument 229 flow->qentry = qentry; in smc_llc_flow_qentry_set() [all …]
|
| H A D | smc_llc.h | 103 int smc_llc_eval_conf_link(struct smc_llc_qentry *qentry, 106 void smc_llc_save_peer_uid(struct smc_llc_qentry *qentry); 114 int smc_llc_cli_add_link(struct smc_link *link, struct smc_llc_qentry *qentry);
|
| H A D | af_smc.c | 619 struct smc_llc_qentry *qentry; in smcr_clnt_conf_first_link() local 627 qentry = smc_llc_wait(link->lgr, NULL, 2 * SMC_LLC_WAIT_TIME, in smcr_clnt_conf_first_link() 629 if (!qentry) { in smcr_clnt_conf_first_link() 636 smc_llc_save_peer_uid(qentry); in smcr_clnt_conf_first_link() 637 rc = smc_llc_eval_conf_link(qentry, SMC_LLC_REQ); in smcr_clnt_conf_first_link() 671 qentry = smc_llc_wait(link->lgr, NULL, SMC_LLC_WAIT_TIME, in smcr_clnt_conf_first_link() 673 if (!qentry) { in smcr_clnt_conf_first_link() 683 smc_llc_cli_add_link(link, qentry); in smcr_clnt_conf_first_link() 1872 struct smc_llc_qentry *qentry; in smcr_serv_conf_first_link() local 1891 qentry = smc_llc_wait(link->lgr, link, SMC_LLC_WAIT_TIME, in smcr_serv_conf_first_link() [all …]
|
| /linux/drivers/net/ethernet/cavium/thunder/ |
| H A D | nicvf_queues.c | 20 static inline void nicvf_sq_add_gather_subdesc(struct snd_queue *sq, int qentry, 1120 int qentry; in nicvf_get_sq_desc() local 1122 qentry = sq->tail; in nicvf_get_sq_desc() 1130 return qentry; in nicvf_get_sq_desc() 1135 int qentry, int desc_cnt) in nicvf_rollback_sq_desc() argument 1137 sq->tail = qentry; in nicvf_rollback_sq_desc() 1152 static inline int nicvf_get_nxt_sqentry(struct snd_queue *sq, int qentry) in nicvf_get_nxt_sqentry() argument 1154 qentry++; in nicvf_get_nxt_sqentry() 1155 qentry &= (sq->dmem.q_len - 1); in nicvf_get_nxt_sqentry() 1156 return qentry; in nicvf_get_nxt_sqentry() [all …]
|
| /linux/drivers/net/ethernet/marvell/octeontx2/af/ |
| H A D | rvu_rep.c | 72 struct rep_evtq_ent *qentry; in rvu_rep_wq_handler() local 78 qentry = list_first_entry_or_null(&rvu->rep_evtq_head, in rvu_rep_wq_handler() 81 if (qentry) in rvu_rep_wq_handler() 82 list_del(&qentry->node); in rvu_rep_wq_handler() 85 if (!qentry) in rvu_rep_wq_handler() 88 event = &qentry->event; in rvu_rep_wq_handler() 91 kfree(qentry); in rvu_rep_wq_handler() 98 struct rep_evtq_ent *qentry; in rvu_mbox_handler_rep_event_notify() local 100 qentry = kmalloc_obj(*qentry, GFP_ATOMIC); in rvu_mbox_handler_rep_event_notify() 101 if (!qentry) in rvu_mbox_handler_rep_event_notify() [all …]
|
| H A D | rvu_cgx.c | 183 struct cgx_evq_entry *qentry; in rvu_cgx_send_link_info() local 187 qentry = kmalloc_obj(*qentry); in rvu_cgx_send_link_info() 188 if (!qentry) in rvu_cgx_send_link_info() 194 &qentry->link_event.link_uinfo); in rvu_cgx_send_link_info() 195 qentry->link_event.cgx_id = cgx_id; in rvu_cgx_send_link_info() 196 qentry->link_event.lmac_id = lmac_id; in rvu_cgx_send_link_info() 198 kfree(qentry); in rvu_cgx_send_link_info() 201 list_add_tail(&qentry->evq_node, &rvu->cgx_evq_head); in rvu_cgx_send_link_info() 214 struct cgx_evq_entry *qentry; in cgx_lmac_postevent() local 218 qentry = kmalloc_obj(*qentry, GFP_ATOMIC); in cgx_lmac_postevent() [all …]
|
| H A D | mcs_rvu_if.c | 91 struct mcs_intrq_entry *qentry; in mcs_add_intr_wq_entry() local 108 qentry = kmalloc_obj(*qentry, GFP_ATOMIC); in mcs_add_intr_wq_entry() 109 if (!qentry) in mcs_add_intr_wq_entry() 112 qentry->intr_event = *event; in mcs_add_intr_wq_entry() 114 list_add_tail(&qentry->node, &rvu->mcs_intrq_head); in mcs_add_intr_wq_entry() 156 struct mcs_intrq_entry *qentry; in mcs_intr_handler_task() local 162 qentry = list_first_entry_or_null(&rvu->mcs_intrq_head, in mcs_intr_handler_task() 165 if (qentry) in mcs_intr_handler_task() 166 list_del(&qentry->node); in mcs_intr_handler_task() 169 if (!qentry) in mcs_intr_handler_task() [all …]
|
| /linux/drivers/scsi/qla2xxx/ |
| H A D | qla_isr.c | 4515 struct qla_msix_entry *qentry; in qla24xx_enable_msix() local 4575 qentry = &ha->msix_entries[i]; in qla24xx_enable_msix() 4576 qentry->vector = pci_irq_vector(ha->pdev, i); in qla24xx_enable_msix() 4577 qentry->vector_base0 = i; in qla24xx_enable_msix() 4578 qentry->entry = i; in qla24xx_enable_msix() 4579 qentry->have_irq = 0; in qla24xx_enable_msix() 4580 qentry->in_use = 0; in qla24xx_enable_msix() 4581 qentry->handle = NULL; in qla24xx_enable_msix() 4586 qentry = &ha->msix_entries[i]; in qla24xx_enable_msix() 4587 qentry->handle = rsp; in qla24xx_enable_msix() [all …]
|
| /linux/drivers/nvme/host/ |
| H A D | pci.c | 3645 struct quirk_entry *qentry; in nvme_pci_alloc_dev() local 3677 qentry = detect_dynamic_quirks(pdev); in nvme_pci_alloc_dev() 3678 if (qentry) { in nvme_pci_alloc_dev() 3679 quirks |= qentry->enabled_quirks; in nvme_pci_alloc_dev() 3680 quirks &= ~qentry->disabled_quirks; in nvme_pci_alloc_dev()
|