Home
last modified time | relevance | path

Searched refs:in_msg (Results 1 – 20 of 20) sorted by relevance

/linux/drivers/platform/chrome/
H A Dcros_ec_ishtp.c165 u8 *in_msg, size_t in_size) in ish_send() argument
177 client_data->response.data = in_msg; in ish_send()
224 struct cros_ish_in_msg *in_msg = in process_recv() local
254 in_msg->hdr.channel, in_msg->hdr.status); in process_recv()
256 switch (in_msg->hdr.channel) { in process_recv()
264 if (client_data->response.token != in_msg->hdr.token) { in process_recv()
267 in_msg->hdr.token); in process_recv()
287 if (in_msg->hdr.status) { in process_recv()
289 in_msg->hdr.status); in process_recv()
331 dev_err(dev, "Invalid channel=%02d\n", in_msg->hdr.channel); in process_recv()
[all …]
/linux/drivers/hv/
H A Dhv_kvp.c261 static int process_ob_ipinfo(void *in_msg, void *out_msg, int op) in process_ob_ipinfo() argument
263 struct hv_kvp_msg *in = in_msg; in process_ob_ipinfo()
321 static void process_ib_ipinfo(void *in_msg, void *out_msg, int op) in process_ib_ipinfo() argument
323 struct hv_kvp_ip_msg *in = in_msg; in process_ib_ipinfo()
377 struct hv_kvp_msg *in_msg; in kvp_send_key() local
394 in_msg = kvp_transaction.kvp_msg; in kvp_send_key()
409 process_ib_ipinfo(in_msg, message, KVP_OP_SET_IP_INFO); in kvp_send_key()
416 process_ib_ipinfo(in_msg, message, KVP_OP_GET_IP_INFO); in kvp_send_key()
419 switch (in_msg->body.kvp_set.data.value_type) { in kvp_send_key()
426 (wchar_t *)in_msg->body.kvp_set.data.value, in kvp_send_key()
[all …]
/linux/drivers/gpu/drm/amd/display/modules/hdcp/
H A Dhdcp_psp.c268 hdcp_cmd->in_msg.hdcp1_create_session.display_handle = display->index; in mod_hdcp_hdcp1_create_session()
301 hdcp_cmd->in_msg.hdcp1_destroy_session.session_handle = hdcp->auth.id; in mod_hdcp_hdcp1_destroy_session()
333 hdcp_cmd->in_msg.hdcp1_first_part_authentication.session_handle = hdcp->auth.id; in mod_hdcp_hdcp1_validate_rx()
335 memcpy(hdcp_cmd->in_msg.hdcp1_first_part_authentication.bksv_primary, hdcp->auth.msg.hdcp1.bksv, in mod_hdcp_hdcp1_validate_rx()
338 hdcp_cmd->in_msg.hdcp1_first_part_authentication.r0_prime_primary = hdcp->auth.msg.hdcp1.r0p; in mod_hdcp_hdcp1_validate_rx()
339 hdcp_cmd->in_msg.hdcp1_first_part_authentication.bcaps = hdcp->auth.msg.hdcp1.bcaps; in mod_hdcp_hdcp1_validate_rx()
375 hdcp_cmd->in_msg.hdcp1_enable_encryption.session_handle = hdcp->auth.id; in mod_hdcp_hdcp1_enable_encryption()
401 hdcp_cmd->in_msg.hdcp1_second_part_authentication.session_handle = hdcp->auth.id; in mod_hdcp_hdcp1_validate_ksvlist_vp()
403 …hdcp_cmd->in_msg.hdcp1_second_part_authentication.ksv_list_size = hdcp->auth.msg.hdcp1.ksvlist_siz… in mod_hdcp_hdcp1_validate_ksvlist_vp()
404 memcpy(hdcp_cmd->in_msg.hdcp1_second_part_authentication.ksv_list, hdcp->auth.msg.hdcp1.ksvlist, in mod_hdcp_hdcp1_validate_ksvlist_vp()
[all …]
H A Dhdcp_psp.h520 union ta_hdcp_cmd_input in_msg; member
/linux/drivers/xen/xenbus/
H A Dxenbus_comms.c214 bool in_msg; in process_msg() member
222 if (!state.in_msg) { in process_msg()
223 state.in_msg = true; in process_msg()
240 state.in_msg = false; in process_msg()
318 state.in_msg = false; in process_msg()
324 state.in_msg = false; in process_msg()
/linux/net/ceph/
H A Dmessenger.c513 if (con->in_msg) { in ceph_con_reset_protocol()
514 WARN_ON(con->in_msg->con != con); in ceph_con_reset_protocol()
515 ceph_msg_put(con->in_msg); in ceph_con_reset_protocol()
516 con->in_msg = NULL; in ceph_con_reset_protocol()
558 WARN_ON(con->in_msg); in ceph_con_reset_session()
1403 struct ceph_msg *msg = con->in_msg; in ceph_con_process_message()
1405 BUG_ON(con->in_msg->con != con); in ceph_con_process_message()
1406 con->in_msg = NULL; in ceph_con_process_message()
1820 if (con->in_msg == msg) { in ceph_msg_revoke_incoming()
1827 ceph_msg_put(con->in_msg); in ceph_msg_revoke_incoming()
[all …]
H A Dmessenger_v1.c593 BUG_ON(con->in_msg != NULL); in prepare_read_message()
997 struct ceph_msg_data_cursor *cursor = &con->in_msg->cursor; in read_partial_sparse_msg_extent()
1032 struct ceph_msg_data_cursor *cursor = &con->in_msg->cursor; in read_partial_sparse_msg_data()
1069 struct ceph_msg_data_cursor *cursor = &con->in_msg->cursor; in read_partial_msg_data()
1106 struct ceph_msg_data_cursor *cursor = &con->in_msg->cursor; in read_partial_msg_data_bounce()
1149 struct ceph_msg *m = con->in_msg; in read_partial_message()
1204 if (!con->in_msg) { in read_partial_message()
1213 BUG_ON((!con->in_msg) ^ skip); in read_partial_message()
1224 BUG_ON(!con->in_msg); in read_partial_message()
1225 BUG_ON(con->in_msg->con != con); in read_partial_message()
[all …]
H A Dmessenger_v2.c661 if (front_len(con->in_msg)) { in verify_epilogue_crcs()
662 con->in_front_crc = crc32c(-1, con->in_msg->front.iov_base, in verify_epilogue_crcs()
663 front_len(con->in_msg)); in verify_epilogue_crcs()
665 WARN_ON(!middle_len(con->in_msg) && !data_len(con->in_msg)); in verify_epilogue_crcs()
669 if (middle_len(con->in_msg)) in verify_epilogue_crcs()
671 con->in_msg->middle->vec.iov_base, in verify_epilogue_crcs()
672 middle_len(con->in_msg)); in verify_epilogue_crcs()
673 else if (data_len(con->in_msg)) in verify_epilogue_crcs()
678 if (!data_len(con->in_msg)) in verify_epilogue_crcs()
681 dout("%s con %p msg %p crcs %u %u %u\n", __func__, con, con->in_msg, in verify_epilogue_crcs()
[all …]
H A Dosd_client.c5773 req = lookup_request(&o->o_requests, le64_to_cpu(con->in_msg->hdr.tid)); in prep_next_sparse_read()
/linux/drivers/net/ethernet/intel/igbvf/
H A Dvf.c384 u32 in_msg = 0; in e1000_check_for_link_vf() local
405 if (mbx->ops.read(hw, &in_msg, 1)) in e1000_check_for_link_vf()
409 if (!(in_msg & E1000_VT_MSGTYPE_CTS)) { in e1000_check_for_link_vf()
411 if (in_msg & E1000_VT_MSGTYPE_NACK) in e1000_check_for_link_vf()
/linux/drivers/net/ethernet/intel/ixgbevf/
H A Dvf.c709 u32 in_msg = 0; in ixgbevf_check_mac_link_vf() local
753 if (mbx->ops.read(hw, &in_msg, 1)) { in ixgbevf_check_mac_link_vf()
759 if (!(in_msg & IXGBE_VT_MSGTYPE_CTS)) { in ixgbevf_check_mac_link_vf()
761 if (in_msg & IXGBE_VT_MSGTYPE_FAILURE) in ixgbevf_check_mac_link_vf()
/linux/drivers/media/cec/usb/extron-da-hd-4k-plus/
H A Dcec-splitter.c146 const struct cec_msg *in_msg) in cec_out_passthrough() argument
158 msg.len = in_msg->len; in cec_out_passthrough()
159 memcpy(msg.msg + 1, in_msg->msg + 1, msg.len - 1); in cec_out_passthrough()
/linux/drivers/net/ethernet/marvell/prestera/
H A Dprestera_pci.c382 void *in_msg, size_t in_size, in prestera_fw_cmd_send() argument
404 memcpy_toio(prestera_fw_cmdq_buf(fw, qid), in_msg, in_size); in prestera_fw_cmd_send()
435 void *in_msg, size_t in_size, void *out_msg, in prestera_fw_send_req() argument
444 ret = prestera_fw_cmd_send(fw, qid, in_msg, in_size, out_msg, out_size, in prestera_fw_send_req()
H A Dprestera.h179 int (*send_req)(struct prestera_device *dev, int qid, void *in_msg,
/linux/drivers/hid/intel-ish-hid/
H A Dishtp-fw-loader.c285 u8 *in_msg, size_t in_size) in loader_cl_send() argument
299 client_data->response.data = in_msg; in loader_cl_send()
/linux/drivers/gpu/drm/amd/display/amdgpu_dm/
H A Damdgpu_dm_hdcp.c116 memcpy(hdcp_cmd->in_msg.hdcp_set_srm.srm_buf, srm, srm_size); in psp_set_srm()
117 hdcp_cmd->in_msg.hdcp_set_srm.srm_buf_size = srm_size; in psp_set_srm()
/linux/drivers/net/ethernet/mellanox/mlx5/core/
H A Dcmd.c1285 if (!dbg->in_msg || !dbg->out_msg) in dbg_write()
1299 err = mlx5_cmd_exec(dev, dbg->in_msg, dbg->inlen, dbg->out_msg, dbg->outlen); in dbg_write()
1476 kfree(dbg->in_msg); in data_write()
1477 dbg->in_msg = NULL; in data_write()
1482 dbg->in_msg = ptr; in data_write()
/linux/include/linux/ceph/
H A Dmessenger.h497 struct ceph_msg *in_msg; member
/linux/include/linux/mlx5/
H A Ddriver.h255 void *in_msg; member
/linux/fs/ceph/
H A Dmds_client.c6414 if (con->in_msg) in mds_alloc_msg()
6415 return con->in_msg; in mds_alloc_msg()