Lines Matching refs:req
67 /* TODO we can get rid of the extra copy into the req by just
155 * into the req msg
160 struct msm_ccmd_gem_submit_req *req = malloc(req_len);
162 req->hdr = MSM_CCMD(GEM_SUBMIT, req_len);
163 req->flags = virtio_pipe->pipe;
164 req->queue_id = virtio_pipe->queue_id;
165 req->nr_bos = fd_submit->nr_bos;
166 req->nr_cmds = nr_cmds;
167 req->fence = kfence;
169 memcpy(req->payload, submit_bos, bos_len);
170 memcpy(req->payload + bos_len, cmds, cmd_len);
197 req->flags |= MSM_SUBMIT_NO_IMPLICIT;
200 virtio_execbuf_fenced(dev, &req->hdr, guest_handles, req->nr_bos,
204 free(req);