Home
last modified time | relevance | path

Searched refs:ureq (Results 1 – 15 of 15) sorted by relevance

/linux-5.19.10/drivers/usb/gadget/function/
Duvc_video.c132 struct uvc_request *ureq = req->context; in uvc_video_encode_isoc_sg() local
139 sg = ureq->sgt.sgl; in uvc_video_encode_isoc_sg()
140 sg_init_table(sg, ureq->sgt.nents); in uvc_video_encode_isoc_sg()
143 header_len = uvc_video_encode_header(video, buf, ureq->header, in uvc_video_encode_isoc_sg()
145 sg_set_buf(sg, ureq->header, header_len); in uvc_video_encode_isoc_sg()
157 for_each_sg(sg, iter, ureq->sgt.nents - 1, i) { in uvc_video_encode_isoc_sg()
177 req->sg = ureq->sgt.sgl; in uvc_video_encode_isoc_sg()
189 ureq->last_buf = buf; in uvc_video_encode_isoc_sg()
248 struct uvc_request *ureq = req->context; in uvc_video_complete() local
249 struct uvc_video *video = ureq->video; in uvc_video_complete()
[all …]
Duvc.h104 struct uvc_request *ureq; member
/linux-5.19.10/drivers/usb/renesas_usbhs/
Dmod_host.c159 struct usbhsh_request *ureq; in usbhsh_ureq_alloc() local
161 ureq = kzalloc(sizeof(struct usbhsh_request), mem_flags); in usbhsh_ureq_alloc()
162 if (!ureq) in usbhsh_ureq_alloc()
165 usbhs_pkt_init(&ureq->pkt); in usbhsh_ureq_alloc()
166 ureq->urb = urb; in usbhsh_ureq_alloc()
167 usbhsh_urb_to_ureq(urb) = ureq; in usbhsh_ureq_alloc()
169 return ureq; in usbhsh_ureq_alloc()
173 struct usbhsh_request *ureq) in usbhsh_ureq_free() argument
175 usbhsh_urb_to_ureq(ureq->urb) = NULL; in usbhsh_ureq_free()
176 ureq->urb = NULL; in usbhsh_ureq_free()
[all …]
Dmod_gadget.c119 struct usbhsg_request *ureq, in __usbhsg_queue_pop() argument
130 ureq->req.status = status; in __usbhsg_queue_pop()
132 usb_gadget_giveback_request(&uep->ep, &ureq->req); in __usbhsg_queue_pop()
137 struct usbhsg_request *ureq, in usbhsg_queue_pop() argument
145 __usbhsg_queue_pop(uep, ureq, status); in usbhsg_queue_pop()
153 struct usbhsg_request *ureq = usbhsg_pkt_to_ureq(pkt); in usbhsg_queue_done() local
156 ureq->req.actual = pkt->actual; in usbhsg_queue_done()
160 __usbhsg_queue_pop(uep, ureq, 0); in usbhsg_queue_done()
165 struct usbhsg_request *ureq) in usbhsg_queue_push() argument
170 struct usbhs_pkt *pkt = usbhsg_ureq_to_pkt(ureq); in usbhsg_queue_push()
[all …]
/linux-5.19.10/drivers/infiniband/core/
Duser_mad.c681 struct ib_user_mad_reg_req ureq; in ib_umad_reg_agent() local
696 if (copy_from_user(&ureq, arg, sizeof ureq)) { in ib_umad_reg_agent()
701 if (ureq.qpn != 0 && ureq.qpn != 1) { in ib_umad_reg_agent()
704 ureq.qpn); in ib_umad_reg_agent()
720 if (ureq.mgmt_class) { in ib_umad_reg_agent()
722 req.mgmt_class = ureq.mgmt_class; in ib_umad_reg_agent()
723 req.mgmt_class_version = ureq.mgmt_class_version; in ib_umad_reg_agent()
724 memcpy(req.oui, ureq.oui, sizeof req.oui); in ib_umad_reg_agent()
727 u32 *umm = (u32 *) ureq.method_mask; in ib_umad_reg_agent()
734 memcpy(req.method_mask, ureq.method_mask, in ib_umad_reg_agent()
[all …]
/linux-5.19.10/drivers/gpu/drm/nouveau/nvkm/subdev/i2c/
Dauxgm200.c44 const u32 ureq = unksel ? 0x00100000 : 0x00200000; in gm200_i2c_aux_init() local
60 nvkm_mask(device, 0x00d954 + (aux->ch * 0x50), 0x00700000, ureq); in gm200_i2c_aux_init()
Dauxg94.c44 const u32 ureq = unksel ? 0x00100000 : 0x00200000; in g94_i2c_aux_init() local
60 nvkm_mask(device, 0x00e4e4 + (aux->ch * 0x50), 0x00300000, ureq); in g94_i2c_aux_init()
/linux-5.19.10/drivers/usb/dwc2/
Dgadget.c872 struct usb_request *ureq = NULL; in dwc2_gadget_config_nonisoc_xfer_ddma() local
879 ureq = &hs_ep->req->req; in dwc2_gadget_config_nonisoc_xfer_ddma()
882 if (!ureq || !ureq->num_sgs) { in dwc2_gadget_config_nonisoc_xfer_ddma()
889 for_each_sg(ureq->sg, sg, ureq->num_sgs, i) { in dwc2_gadget_config_nonisoc_xfer_ddma()
1054 struct usb_request *ureq = &hs_req->req; in dwc2_hsotg_start_req() local
1095 length = ureq->length - ureq->actual; in dwc2_hsotg_start_req()
1097 ureq->length, ureq->actual); in dwc2_hsotg_start_req()
1134 if (dir_in && ureq->zero && !continuing) { in dwc2_hsotg_start_req()
1136 if ((ureq->length >= hs_ep->ep.maxpacket) && in dwc2_hsotg_start_req()
1137 !(ureq->length % hs_ep->ep.maxpacket)) in dwc2_hsotg_start_req()
[all …]
/linux-5.19.10/drivers/infiniband/hw/qedr/
Dverbs.c267 struct qedr_alloc_ucontext_req ureq = {}; in qedr_alloc_ucontext() local
276 rc = ib_copy_from_udata(&ureq, udata, in qedr_alloc_ucontext()
277 min(sizeof(ureq), udata->inlen)); in qedr_alloc_ucontext()
282 ctx->edpm_mode = !!(ureq.context_flags & in qedr_alloc_ucontext()
284 ctx->db_rec = !!(ureq.context_flags & QEDR_ALLOC_UCTX_DB_REC); in qedr_alloc_ucontext()
327 if (ureq.context_flags & QEDR_SUPPORT_DPM_SIZES) { in qedr_alloc_ucontext()
918 struct qedr_create_cq_ureq ureq = {}; in qedr_create_cq() local
951 if (ib_copy_from_udata(&ureq, udata, min(sizeof(ureq), in qedr_create_cq()
958 if (!ureq.len) { in qedr_create_cq()
966 rc = qedr_init_user_queue(udata, dev, &cq->q, ureq.addr, in qedr_create_cq()
[all …]
/linux-5.19.10/drivers/infiniband/sw/siw/
Dsiw_verbs.c1287 struct siw_ureq_reg_mr ureq; in siw_reg_user_mr() local
1339 if (udata->inlen < sizeof(ureq)) { in siw_reg_user_mr()
1343 rv = ib_copy_from_udata(&ureq, udata, sizeof(ureq)); in siw_reg_user_mr()
1347 mr->base_mr.lkey |= ureq.stag_key; in siw_reg_user_mr()
1348 mr->base_mr.rkey |= ureq.stag_key; in siw_reg_user_mr()
1349 mem->stag |= ureq.stag_key; in siw_reg_user_mr()
/linux-5.19.10/drivers/infiniband/hw/ocrdma/
Docrdma_verbs.c976 struct ocrdma_create_cq_ureq ureq; in ocrdma_create_cq() local
982 if (ib_copy_from_udata(&ureq, udata, sizeof(ureq))) in ocrdma_create_cq()
985 ureq.dpp_cq = 0; in ocrdma_create_cq()
995 status = ocrdma_mbx_create_cq(dev, cq, entries, ureq.dpp_cq, pd_id); in ocrdma_create_cq()
1301 struct ocrdma_create_qp_ureq ureq; in ocrdma_create_qp() local
1311 memset(&ureq, 0, sizeof(ureq)); in ocrdma_create_qp()
1313 if (ib_copy_from_udata(&ureq, udata, sizeof(ureq))) in ocrdma_create_qp()
1322 status = ocrdma_mbx_create_qp(qp, attrs, ureq.enable_dpp_cq, in ocrdma_create_qp()
1323 ureq.dpp_cq_id, in ocrdma_create_qp()
/linux-5.19.10/drivers/infiniband/hw/bnxt_re/
Dib_verbs.c915 struct bnxt_re_qp_req ureq; in bnxt_re_init_user_qp() local
923 if (ib_copy_from_udata(&ureq, udata, sizeof(ureq))) in bnxt_re_init_user_qp()
940 umem = ib_umem_get(&rdev->ibdev, ureq.qpsva, bytes, in bnxt_re_init_user_qp()
949 qplib_qp->qp_handle = ureq.qp_handle; in bnxt_re_init_user_qp()
954 umem = ib_umem_get(&rdev->ibdev, ureq.qprva, bytes, in bnxt_re_init_user_qp()
1577 struct bnxt_re_srq_req ureq; in bnxt_re_init_user_srq() local
1584 if (ib_copy_from_udata(&ureq, udata, sizeof(ureq))) in bnxt_re_init_user_srq()
1589 umem = ib_umem_get(&rdev->ibdev, ureq.srqva, bytes, in bnxt_re_init_user_srq()
1598 qplib_srq->srq_handle = ureq.srq_handle; in bnxt_re_init_user_srq()
/linux-5.19.10/drivers/infiniband/hw/irdma/
Dverbs.c1132 struct irdma_modify_qp_req ureq = {}; in irdma_modify_qp_roce() local
1378 if (ib_copy_from_udata(&ureq, udata, in irdma_modify_qp_roce()
1379 min(sizeof(ureq), udata->inlen))) in irdma_modify_qp_roce()
1383 (ureq.sq_flush ? IRDMA_FLUSH_SQ : 0) | in irdma_modify_qp_roce()
1384 (ureq.rq_flush ? IRDMA_FLUSH_RQ : 0) | in irdma_modify_qp_roce()
1477 struct irdma_modify_qp_req ureq = {}; in irdma_modify_qp() local
1569 if (ib_copy_from_udata(&ureq, udata, in irdma_modify_qp()
1570 min(sizeof(ureq), udata->inlen))) in irdma_modify_qp()
1574 (ureq.sq_flush ? IRDMA_FLUSH_SQ : 0) | in irdma_modify_qp()
1575 (ureq.rq_flush ? IRDMA_FLUSH_RQ : 0) | in irdma_modify_qp()
/linux-5.19.10/net/wireless/
Dreg.c3557 struct regulatory_request *ureq; in restore_regulatory_settings() local
3560 ureq = list_last_entry(&reg_requests_list, in restore_regulatory_settings()
3563 list_del(&ureq->list); in restore_regulatory_settings()
3566 notify_self_managed_wiphys(ureq); in restore_regulatory_settings()
3567 reg_update_last_request(ureq); in restore_regulatory_settings()
/linux-5.19.10/drivers/s390/net/
Dqeth_core_main.c4616 struct qeth_snmp_ureq __user *ureq; in qeth_snmp_command() local
4631 ureq = (struct qeth_snmp_ureq __user *) udata; in qeth_snmp_command()
4632 if (get_user(qinfo.udata_len, &ureq->hdr.data_len) || in qeth_snmp_command()
4633 get_user(req_len, &ureq->hdr.req_len)) in qeth_snmp_command()
4645 &ureq->cmd, req_len)) { in qeth_snmp_command()