/linux-6.3-rc2/drivers/gpu/drm/virtio/ |
A D | virtgpu_vq.c | 108 vbuf->resp_buf = resp_buf; in virtio_gpu_get_vbuf() 766 void *resp_buf; in virtio_gpu_cmd_get_display_info() local 770 if (!resp_buf) in virtio_gpu_cmd_get_display_info() 776 resp_buf); in virtio_gpu_cmd_get_display_info() 793 if (!resp_buf) in virtio_gpu_cmd_get_capset_info() 799 resp_buf); in virtio_gpu_cmd_get_capset_info() 874 resp_buf); in virtio_gpu_cmd_get_capset() 903 resp_buf); in virtio_gpu_cmd_get_edids() 1156 resp_buf = kzalloc(sizeof(*resp_buf), GFP_KERNEL); in virtio_gpu_cmd_resource_assign_uuid() 1209 resp_buf = kzalloc(sizeof(*resp_buf), GFP_KERNEL); in virtio_gpu_cmd_map() [all …]
|
/linux-6.3-rc2/drivers/scsi/qedf/ |
A D | qedf_els.c | 425 void *resp_buf, *fc_payload; in qedf_l2_els_compl() local 451 resp_buf = mp_req->resp_buf; in qedf_l2_els_compl() 490 memcpy(fc_payload, resp_buf, resp_len); in qedf_l2_els_compl() 545 void *resp_buf, *fc_payload; in qedf_srr_compl() local 585 resp_buf = mp_req->resp_buf; in qedf_srr_compl() 600 memcpy(fc_payload, resp_buf, resp_len); in qedf_srr_compl() 840 void *resp_buf, *fc_payload; in qedf_rec_compl() local 885 acc = resp_buf = mp_req->resp_buf; in qedf_rec_compl() 900 memcpy(fc_payload, resp_buf, resp_len); in qedf_rec_compl()
|
/linux-6.3-rc2/drivers/scsi/bnx2fc/ |
A D | bnx2fc_els.c | 129 void *resp_buf; in bnx2fc_l2_els_compl() local 157 resp_buf = mp_req->resp_buf; in bnx2fc_l2_els_compl() 171 memcpy(buf + hdr_len, resp_buf, resp_len); in bnx2fc_l2_els_compl() 273 void *resp_buf; in bnx2fc_srr_compl() local 327 resp_buf = mp_req->resp_buf; in bnx2fc_srr_compl() 336 memcpy(buf + hdr_len, resp_buf, resp_len); in bnx2fc_srr_compl() 388 void *resp_buf; in bnx2fc_rec_compl() local 451 acc = resp_buf = mp_req->resp_buf; in bnx2fc_rec_compl() 461 memcpy(buf + hdr_len, resp_buf, resp_len); in bnx2fc_rec_compl()
|
A D | bnx2fc_io.c | 571 if (mp_req->resp_buf) { in bnx2fc_free_mp_resc() 573 mp_req->resp_buf, in bnx2fc_free_mp_resc() 575 mp_req->resp_buf = NULL; in bnx2fc_free_mp_resc() 607 mp_req->resp_buf = dma_alloc_coherent(&hba->pcidev->dev, CNIC_PAGE_SIZE, in bnx2fc_init_mp_req() 610 if (!mp_req->resp_buf) { in bnx2fc_init_mp_req() 616 memset(mp_req->resp_buf, 0, CNIC_PAGE_SIZE); in bnx2fc_init_mp_req() 1556 rsp_buf = tm_req->resp_buf; in bnx2fc_process_tm_compl()
|
/linux-6.3-rc2/fs/cifs/ |
A D | transport.c | 97 cifs_buf_release(midEntry->resp_buf); in __release_mid() 99 cifs_small_buf_release(midEntry->resp_buf); in __release_mid() 926 dump_smb(mid->resp_buf, min_t(u32, 92, len)); in cifs_check_receive() 935 iov[0].iov_base = mid->resp_buf; in cifs_check_receive() 937 iov[1].iov_base = (char *)mid->resp_buf + 4; in cifs_check_receive() 1226 if (!midQ[i]->resp_buf || in compound_send_recv() 1233 buf = (char *)midQ[i]->resp_buf; in compound_send_recv() 1248 midQ[i]->resp_buf = NULL; in compound_send_recv() 1432 if (!midQ->resp_buf || !out_buf || in SendReceive() 1667 mid->resp_buf = server->smallbuf; in __cifs_readv_discard() [all …]
|
A D | cifs_debug.c | 70 mid_entry->resp_buf, in cifs_dump_mids() 76 if (mid_entry->resp_buf) { in cifs_dump_mids() 77 cifs_dump_detail(mid_entry->resp_buf, server); in cifs_dump_mids() 79 mid_entry->resp_buf, 62); in cifs_dump_mids()
|
A D | smb2transport.c | 809 iov[0].iov_base = (char *)mid->resp_buf; in smb2_check_receive() 812 dump_smb(mid->resp_buf, min_t(u32, 80, len)); in smb2_check_receive() 823 return map_smb2_to_linux_error(mid->resp_buf, log_error); in smb2_check_receive()
|
A D | smb2misc.c | 841 struct smb2_hdr *hdr = mid->resp_buf; in smb2_handle_cancelled_mid() 842 struct smb2_create_rsp *rsp = mid->resp_buf; in smb2_handle_cancelled_mid()
|
A D | smb1ops.c | 394 if (mid->resp_buf) { in cifs_check_trans2() 396 malformed = coalesce_t2(buf, mid->resp_buf); in cifs_check_trans2() 409 mid->resp_buf = buf; in cifs_check_trans2()
|
/linux-6.3-rc2/drivers/mailbox/ |
A D | zynqmp-ipi-mailbox.c | 70 void __iomem *resp_buf; member 301 memcpy_toio(mchan->resp_buf, msg->data, msg->len); in zynqmp_ipi_send_data() 521 mchan->resp_buf = devm_ioremap(mdev, res.start, in zynqmp_ipi_mbox_probe() 523 if (!mchan->resp_buf) { in zynqmp_ipi_mbox_probe() 558 mchan->resp_buf = devm_ioremap(mdev, res.start, in zynqmp_ipi_mbox_probe() 560 if (!mchan->resp_buf) { in zynqmp_ipi_mbox_probe()
|
/linux-6.3-rc2/drivers/char/tpm/ |
A D | tpm_ftpm_tee.h | 35 u8 resp_buf[MAX_RESPONSE_SIZE]; member
|
A D | tpm_ftpm_tee.c | 57 memcpy(buf, pvt_data->resp_buf, len); in ftpm_tee_tpm_op_recv() 162 memcpy(pvt_data->resp_buf, temp_buf, resp_len); in ftpm_tee_tpm_op_send()
|
/linux-6.3-rc2/sound/firewire/fireworks/ |
A D | fireworks.c | 242 efw->resp_buf = devm_kzalloc(&card->card_dev, snd_efw_resp_buf_size, GFP_KERNEL); in efw_probe() 243 if (!efw->resp_buf) { in efw_probe() 247 efw->pull_ptr = efw->push_ptr = efw->resp_buf; in efw_probe()
|
A D | fireworks_hwdep.c | 62 (unsigned int)(pull_ptr - efw->resp_buf); in hwdep_read_resp_buf() 73 if (pull_ptr >= efw->resp_buf + snd_efw_resp_buf_size) in hwdep_read_resp_buf()
|
A D | fireworks_transaction.c | 143 (unsigned int)(efw->push_ptr - efw->resp_buf); in copy_resp_to_buf() 149 if (efw->push_ptr >= efw->resp_buf + snd_efw_resp_buf_size) in copy_resp_to_buf()
|
A D | fireworks.h | 104 u8 *resp_buf; member
|
/linux-6.3-rc2/drivers/scsi/qedi/ |
A D | qedi_iscsi.c | 82 if (qedi_conn->gen_pdu.resp_buf) { in qedi_conn_free_login_resources() 85 qedi_conn->gen_pdu.resp_buf, in qedi_conn_free_login_resources() 87 qedi_conn->gen_pdu.resp_buf = NULL; in qedi_conn_free_login_resources() 113 qedi_conn->gen_pdu.resp_buf = in qedi_conn_alloc_login_resources() 118 if (!qedi_conn->gen_pdu.resp_buf) in qedi_conn_alloc_login_resources() 122 qedi_conn->gen_pdu.resp_wr_ptr = qedi_conn->gen_pdu.resp_buf; in qedi_conn_alloc_login_resources() 150 qedi_conn->gen_pdu.resp_buf, in qedi_conn_alloc_login_resources() 152 qedi_conn->gen_pdu.resp_buf = NULL; in qedi_conn_alloc_login_resources()
|
A D | qedi_iscsi.h | 139 char *resp_buf; member
|
A D | qedi_fw.c | 118 qedi_conn->gen_pdu.resp_wr_ptr = qedi_conn->gen_pdu.resp_buf + pld_len; in qedi_process_text_resp() 142 qedi_conn->gen_pdu.resp_buf, in qedi_process_text_resp() 144 qedi_conn->gen_pdu.resp_buf)); in qedi_process_text_resp() 295 qedi_conn->gen_pdu.resp_wr_ptr = qedi_conn->gen_pdu.resp_buf + pld_len; in qedi_process_login_resp() 308 qedi_conn->gen_pdu.resp_buf, in qedi_process_login_resp() 310 qedi_conn->gen_pdu.resp_buf)); in qedi_process_login_resp()
|
/linux-6.3-rc2/drivers/scsi/bnx2i/ |
A D | bnx2i_iscsi.c | 951 if (bnx2i_conn->gen_pdu.resp_buf) { in bnx2i_conn_free_login_resources() 954 bnx2i_conn->gen_pdu.resp_buf, in bnx2i_conn_free_login_resources() 956 bnx2i_conn->gen_pdu.resp_buf = NULL; in bnx2i_conn_free_login_resources() 990 bnx2i_conn->gen_pdu.resp_buf = in bnx2i_conn_alloc_login_resources() 995 if (bnx2i_conn->gen_pdu.resp_buf == NULL) in bnx2i_conn_alloc_login_resources() 999 bnx2i_conn->gen_pdu.resp_wr_ptr = bnx2i_conn->gen_pdu.resp_buf; in bnx2i_conn_alloc_login_resources() 1024 bnx2i_conn->gen_pdu.resp_buf, in bnx2i_conn_alloc_login_resources() 1026 bnx2i_conn->gen_pdu.resp_buf = NULL; in bnx2i_conn_alloc_login_resources()
|
A D | bnx2i_hwi.c | 1470 bnx2i_conn->gen_pdu.resp_buf + pld_len; in bnx2i_process_login_resp() 1485 bnx2i_conn->gen_pdu.resp_buf, in bnx2i_process_login_resp() 1486 bnx2i_conn->gen_pdu.resp_wr_ptr - bnx2i_conn->gen_pdu.resp_buf); in bnx2i_process_login_resp() 1531 bnx2i_conn->gen_pdu.resp_wr_ptr = bnx2i_conn->gen_pdu.resp_buf + in bnx2i_process_text_resp() 1545 bnx2i_conn->gen_pdu.resp_buf, in bnx2i_process_text_resp() 1547 bnx2i_conn->gen_pdu.resp_buf); in bnx2i_process_text_resp()
|
/linux-6.3-rc2/drivers/net/wireless/marvell/libertas/ |
A D | dev.h | 136 u8 resp_buf[2][LBS_UPLD_SIZE]; member
|
/linux-6.3-rc2/drivers/net/wireless/ath/ath10k/ |
A D | usb.c | 554 u8 resp_val, u8 *resp_buf, in ath10k_usb_ctrl_msg_exchange() argument 566 if (resp_buf) { in ath10k_usb_ctrl_msg_exchange() 568 resp_buf, *resp_len); in ath10k_usb_ctrl_msg_exchange()
|
/linux-6.3-rc2/drivers/net/wireless/ath/ath6kl/ |
A D | usb.c | 940 u8 resp_val, u8 *resp_buf, u32 *resp_len) in ath6kl_usb_ctrl_msg_exchange() argument 951 if (resp_buf == NULL) { in ath6kl_usb_ctrl_msg_exchange() 958 resp_buf, *resp_len); in ath6kl_usb_ctrl_msg_exchange()
|
/linux-6.3-rc2/drivers/virt/coco/sev-guest/ |
A D | sev-guest.c | 322 u8 type, void *req_buf, size_t req_sz, void *resp_buf, in handle_guest_request() argument 407 rc = verify_and_dec_payload(snp_dev, resp_buf, resp_sz); in handle_guest_request()
|