/linux/fs/ksmbd/ |
A D | smb2pdu.c | 47 *rsp = smb2_get_msg(work->response_buf); in __wbuf() 240 *(__be32 *)work->response_buf = in init_smb2_neg_rsp() 257 rsp = smb2_get_msg(work->response_buf); in init_smb2_neg_rsp() 280 inc_rfc1001_len(work->response_buf, in init_smb2_neg_rsp() 388 inc_rfc1001_len(work->response_buf, in init_chained_smb2_rsp() 489 *(__be32 *)work->response_buf = in init_smb2_rsp_hdr() 547 if (!work->response_buf) in smb2_allocate_rsp_buf() 4735 work->response_buf); in smb2_get_info_file() 4849 rsp, work->response_buf, in smb2_get_info_file() 5073 rsp, work->response_buf, in smb2_get_info_filesystem() [all …]
|
A D | ksmbd_work.h | 32 void *response_buf; member 95 return work->response_buf + work->next_smb2_rsp_hdr_off + 4; in ksmbd_resp_buf_next()
|
A D | connection.c | 167 if (!work->response_buf) { in ksmbd_conn_write() 179 iov[iov_idx] = (struct kvec) { work->response_buf, work->resp_hdr_sz }; in ksmbd_conn_write() 187 iov[iov_idx].iov_len = get_rfc1002_len(work->response_buf) + 4; in ksmbd_conn_write() 188 iov[iov_idx].iov_base = work->response_buf; in ksmbd_conn_write()
|
A D | oplock.c | 591 work->response_buf = kzalloc(MAX_CIFS_SMALL_BUFFER_SIZE, GFP_KERNEL); in allocate_oplock_break_buf() 592 if (!work->response_buf) in allocate_oplock_break_buf() 632 rsp_hdr = smb2_get_msg(work->response_buf); in __smb2_oplock_break_noti() 634 *(__be32 *)work->response_buf = in __smb2_oplock_break_noti() 648 rsp = smb2_get_msg(work->response_buf); in __smb2_oplock_break_noti() 662 inc_rfc1001_len(work->response_buf, 24); in __smb2_oplock_break_noti() 739 rsp_hdr = smb2_get_msg(work->response_buf); in __smb2_lease_break_noti() 741 *(__be32 *)work->response_buf = in __smb2_lease_break_noti() 755 rsp = smb2_get_msg(work->response_buf); in __smb2_lease_break_noti() 771 inc_rfc1001_len(work->response_buf, 44); in __smb2_lease_break_noti()
|
A D | ksmbd_work.c | 38 kvfree(work->response_buf); in ksmbd_free_work_struct()
|
A D | server.c | 97 rsp_hdr = work->response_buf; in check_conn_state()
|
A D | smb_common.c | 436 struct smb_negotiate_rsp *neg_rsp = work->response_buf; in smb_handle_negotiate()
|
/linux/drivers/gpu/drm/i915/gt/uc/ |
A D | intel_guc.h | 198 u32 *response_buf, u32 response_buf_size) in intel_guc_send_and_receive() argument 201 response_buf, response_buf_size, 0); in intel_guc_send_and_receive() 280 u32 *response_buf, u32 response_buf_size);
|
A D | intel_guc_ct.c | 83 u32 *response_buf; member 641 u32 *response_buf, in ct_send() argument 655 GEM_BUG_ON(!response_buf && response_buf_size); in ct_send() 688 request.response_buf = response_buf; in ct_send() 717 if (response_buf) { in ct_send() 741 u32 *response_buf, u32 response_buf_size, u32 flags) in intel_guc_ct_send() argument 760 ret = ct_send(ct, action, len, response_buf, response_buf_size, &status); in intel_guc_ct_send() 923 memcpy(req->response_buf, data, 4 * datalen); in ct_handle_response()
|
A D | intel_guc.c | 398 u32 *response_buf, u32 response_buf_size) in intel_guc_send_mmio() argument 480 if (response_buf) { in intel_guc_send_mmio() 485 response_buf[0] = header; in intel_guc_send_mmio() 488 response_buf[i] = intel_uncore_read(uncore, in intel_guc_send_mmio()
|
A D | intel_guc_ct.h | 115 u32 *response_buf, u32 response_buf_size, u32 flags);
|
/linux/drivers/soundwire/ |
A D | cadence_master.h | 122 u32 response_buf[0x80]; member
|
A D | cadence_master.c | 528 if (!(cdns->response_buf[i] & CDNS_MCP_RESP_ACK)) { in cdns_fill_msg_resp() 532 if (cdns->response_buf[i] & CDNS_MCP_RESP_NACK) { in cdns_fill_msg_resp() 550 msg->buf[i + offset] = FIELD_GET(CDNS_MCP_RESP_RDATA, cdns->response_buf[i]); in cdns_fill_msg_resp() 641 if (!(cdns->response_buf[i] & CDNS_MCP_RESP_ACK)) { in cdns_program_scp_addr() 644 if (cdns->response_buf[i] & CDNS_MCP_RESP_NACK) { in cdns_program_scp_addr() 775 cdns->response_buf[i] = cdns_readl(cdns, cmd_base); in cdns_read_response()
|
/linux/drivers/i2c/busses/ |
A D | i2c-cros-ec-tunnel.c | 35 u8 response_buf[256]; member
|
/linux/fs/cifs/ |
A D | cifssmb.c | 299 void **request_buf, void **response_buf) in __smb_init() argument 310 if (response_buf) in __smb_init() 311 *response_buf = *request_buf; in __smb_init() 325 void **request_buf, void **response_buf) in smb_init() argument 333 return __smb_init(smb_command, wct, tcon, request_buf, response_buf); in smb_init() 338 void **request_buf, void **response_buf) in smb_init_no_reconnect() argument 343 return __smb_init(smb_command, wct, tcon, request_buf, response_buf); in smb_init_no_reconnect()
|