/linux-6.1.9/fs/ksmbd/ |
D | smb2pdu.c | 48 *rsp = smb2_get_msg(work->response_buf); in __wbuf() 134 err_rsp = smb2_get_msg(work->response_buf); in smb2_set_err_rsp() 142 inc_rfc1001_len(work->response_buf, SMB2_ERROR_STRUCTURE_SIZE2); in smb2_set_err_rsp() 178 struct smb2_hdr *hdr = smb2_get_msg(work->response_buf); in is_smb2_rsp() 220 rsp_hdr = smb2_get_msg(work->response_buf); in set_smb2_rsp_status() 241 *(__be32 *)work->response_buf = in init_smb2_neg_rsp() 244 rsp_hdr = smb2_get_msg(work->response_buf); in init_smb2_neg_rsp() 258 rsp = smb2_get_msg(work->response_buf); in init_smb2_neg_rsp() 281 inc_rfc1001_len(work->response_buf, in init_smb2_neg_rsp() 386 len = get_rfc1002_len(work->response_buf) - work->next_smb2_rsp_hdr_off; in init_chained_smb2_rsp() [all …]
|
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()
|
D | connection.c | 175 if (!work->response_buf) { in ksmbd_conn_write() 187 iov[iov_idx] = (struct kvec) { work->response_buf, work->resp_hdr_sz }; in ksmbd_conn_write() 195 iov[iov_idx].iov_len = get_rfc1002_len(work->response_buf) + 4; in ksmbd_conn_write() 196 iov[iov_idx].iov_base = work->response_buf; in ksmbd_conn_write()
|
D | oplock.c | 592 work->response_buf = kzalloc(MAX_CIFS_SMALL_BUFFER_SIZE, GFP_KERNEL); in allocate_oplock_break_buf() 593 if (!work->response_buf) in allocate_oplock_break_buf() 628 rsp_hdr = smb2_get_msg(work->response_buf); in __smb2_oplock_break_noti() 630 *(__be32 *)work->response_buf = in __smb2_oplock_break_noti() 644 rsp = smb2_get_msg(work->response_buf); in __smb2_oplock_break_noti() 658 inc_rfc1001_len(work->response_buf, 24); in __smb2_oplock_break_noti() 741 rsp_hdr = smb2_get_msg(work->response_buf); in __smb2_lease_break_noti() 743 *(__be32 *)work->response_buf = in __smb2_lease_break_noti() 757 rsp = smb2_get_msg(work->response_buf); in __smb2_lease_break_noti() 773 inc_rfc1001_len(work->response_buf, 44); in __smb2_lease_break_noti()
|
D | ksmbd_work.c | 38 kvfree(work->response_buf); in ksmbd_free_work_struct()
|
D | server.c | 97 rsp_hdr = work->response_buf; in check_conn_state()
|
D | smb_common.c | 443 struct smb_negotiate_rsp *neg_rsp = work->response_buf; in smb_handle_negotiate()
|
/linux-6.1.9/drivers/iio/imu/bno055/ |
D | bno055_ser_core.c | 126 u8 *response_buf; member 317 priv->response_buf = val; in bno055_ser_read_reg() 323 priv->response_buf = NULL; in bno055_ser_read_reg() 460 if (priv->response_buf && in bno055_ser_receive_buf() 470 memcpy(priv->response_buf + priv->rx.databuf_count, in bno055_ser_receive_buf()
|
/linux-6.1.9/drivers/gpu/drm/i915/gt/uc/ |
D | intel_guc.h | 277 u32 *response_buf, u32 response_buf_size) in intel_guc_send_and_receive() argument 280 response_buf, response_buf_size, 0); in intel_guc_send_and_receive() 359 u32 *response_buf, u32 response_buf_size);
|
D | intel_guc_ct.c | 84 u32 *response_buf; member 644 u32 *response_buf, in ct_send() argument 659 GEM_BUG_ON(!response_buf && response_buf_size); in ct_send() 695 request.response_buf = response_buf; in ct_send() 738 if (response_buf) { in ct_send() 765 u32 *response_buf, u32 response_buf_size, u32 flags) in intel_guc_ct_send() argument 784 ret = ct_send(ct, action, len, response_buf, response_buf_size, &status); in intel_guc_ct_send() 963 memcpy(req->response_buf, data, 4 * datalen); in ct_handle_response()
|
D | intel_guc_ct.h | 115 u32 *response_buf, u32 response_buf_size, u32 flags);
|
D | intel_guc.c | 475 u32 *response_buf, u32 response_buf_size) in intel_guc_send_mmio() argument 557 if (response_buf) { in intel_guc_send_mmio() 562 response_buf[0] = header; in intel_guc_send_mmio() 565 response_buf[i] = intel_uncore_read(uncore, in intel_guc_send_mmio()
|
/linux-6.1.9/drivers/soundwire/ |
D | cadence_master.h | 117 u32 response_buf[0x80]; member
|
D | cadence_master.c | 527 if (!(cdns->response_buf[i] & CDNS_MCP_RESP_ACK)) { in cdns_fill_msg_resp() 531 if (cdns->response_buf[i] & CDNS_MCP_RESP_NACK) { in cdns_fill_msg_resp() 551 cdns->response_buf[i]); in cdns_fill_msg_resp() 643 if (!(cdns->response_buf[i] & CDNS_MCP_RESP_ACK)) { in cdns_program_scp_addr() 646 if (cdns->response_buf[i] & CDNS_MCP_RESP_NACK) { in cdns_program_scp_addr() 782 cdns->response_buf[i] = cdns_readl(cdns, cmd_base); in cdns_read_response()
|
/linux-6.1.9/drivers/i2c/busses/ |
D | i2c-cros-ec-tunnel.c | 35 u8 response_buf[256]; member
|
/linux-6.1.9/fs/cifs/ |
D | cifssmb.c | 292 void **request_buf, void **response_buf) in __smb_init() argument 303 if (response_buf) in __smb_init() 304 *response_buf = *request_buf; in __smb_init() 318 void **request_buf, void **response_buf) in smb_init() argument 326 return __smb_init(smb_command, wct, tcon, request_buf, response_buf); in smb_init() 331 void **request_buf, void **response_buf) in smb_init_no_reconnect() argument 341 return __smb_init(smb_command, wct, tcon, request_buf, response_buf); in smb_init_no_reconnect()
|