| /linux/include/uapi/linux/ |
| H A D | cec-funcs.h | 14 static inline void cec_msg_active_source(struct cec_msg *msg, __u16 phys_addr) in cec_msg_active_source() argument 16 msg->len = 4; in cec_msg_active_source() 17 msg->msg[0] |= CEC_LOG_ADDR_BROADCAST; in cec_msg_active_source() 18 msg->msg[1] = CEC_MSG_ACTIVE_SOURCE; in cec_msg_active_source() 19 msg->msg[2] = phys_addr >> 8; in cec_msg_active_source() 20 msg->msg[3] = phys_addr & 0xff; in cec_msg_active_source() 23 static inline void cec_ops_active_source(const struct cec_msg *msg, in cec_ops_active_source() argument 26 *phys_addr = (msg->msg[2] << 8) | msg->msg[3]; in cec_ops_active_source() 29 static inline void cec_msg_image_view_on(struct cec_msg *msg) in cec_msg_image_view_on() argument 31 msg->len = 2; in cec_msg_image_view_on() [all …]
|
| /linux/drivers/gpu/drm/msm/adreno/ |
| H A D | a6xx_hfi.c | 231 struct a6xx_hfi_msg_gmu_init_cmd msg = { 0 }; in a6xx_hfi_send_gmu_init() local 233 msg.dbg_buffer_addr = (u32) gmu->debug.iova; in a6xx_hfi_send_gmu_init() 234 msg.dbg_buffer_size = (u32) gmu->debug.size; in a6xx_hfi_send_gmu_init() 235 msg.boot_state = boot_state; in a6xx_hfi_send_gmu_init() 237 return a6xx_hfi_send_msg(gmu, HFI_H2F_MSG_INIT, &msg, sizeof(msg), in a6xx_hfi_send_gmu_init() 243 struct a6xx_hfi_msg_fw_version msg = { 0 }; in a6xx_hfi_get_fw_version() local 246 msg.supported_version = (1 << 28) | (1 << 19) | (1 << 17); in a6xx_hfi_get_fw_version() 248 return a6xx_hfi_send_msg(gmu, HFI_H2F_MSG_FW_VERSION, &msg, sizeof(msg), in a6xx_hfi_get_fw_version() 254 struct a6xx_hfi_msg_perf_table_v1 msg = { 0 }; in a6xx_hfi_send_perf_table_v1() local 257 msg.num_gpu_levels = gmu->nr_gpu_freqs; in a6xx_hfi_send_perf_table_v1() [all …]
|
| /linux/drivers/accel/habanalabs/include/gaudi2/ |
| H A D | gaudi2_async_ids_map_extended.h | 26 int msg; member 32 { .fc_id = 0, .cpu_id = 0, .valid = 0, .msg = 0, .reset = EVENT_RESET_TYPE_NONE, 34 { .fc_id = 1, .cpu_id = 1, .valid = 0, .msg = 0, .reset = EVENT_RESET_TYPE_NONE, 36 { .fc_id = 2, .cpu_id = 2, .valid = 0, .msg = 0, .reset = EVENT_RESET_TYPE_NONE, 38 { .fc_id = 3, .cpu_id = 3, .valid = 0, .msg = 0, .reset = EVENT_RESET_TYPE_NONE, 40 { .fc_id = 4, .cpu_id = 4, .valid = 0, .msg = 0, .reset = EVENT_RESET_TYPE_NONE, 42 { .fc_id = 5, .cpu_id = 5, .valid = 0, .msg = 0, .reset = EVENT_RESET_TYPE_NONE, 44 { .fc_id = 6, .cpu_id = 6, .valid = 0, .msg = 0, .reset = EVENT_RESET_TYPE_NONE, 46 { .fc_id = 7, .cpu_id = 7, .valid = 0, .msg = 0, .reset = EVENT_RESET_TYPE_NONE, 48 { .fc_id = 8, .cpu_id = 8, .valid = 0, .msg = 0, .reset = EVENT_RESET_TYPE_NONE, [all …]
|
| /linux/drivers/s390/crypto/ |
| H A D | zcrypt_msgtype6.c | 206 } __packed * msg = ap_msg->msg; in icamex_msg_to_type6mex_msgx() local 218 msg->length = mex->inputdatalength + 2; in icamex_msg_to_type6mex_msgx() 219 if (copy_from_user(msg->text, mex->inputdata, mex->inputdatalength)) in icamex_msg_to_type6mex_msgx() 223 size = zcrypt_type6_mex_key_en(mex, msg->text + mex->inputdatalength); in icamex_msg_to_type6mex_msgx() 226 size += sizeof(*msg) + mex->inputdatalength; in icamex_msg_to_type6mex_msgx() 229 msg->hdr = static_type6_hdrX; in icamex_msg_to_type6mex_msgx() 230 msg->hdr.tocardlen1 = size - sizeof(msg->hdr); in icamex_msg_to_type6mex_msgx() 231 msg->hdr.fromcardlen1 = CEXXC_MAX_ICA_RESPONSE_SIZE - sizeof(msg->hdr); in icamex_msg_to_type6mex_msgx() 233 msg->cprbx = static_cprbx; in icamex_msg_to_type6mex_msgx() 234 msg->cprbx.domain = AP_QID_QUEUE(zq->queue->qid); in icamex_msg_to_type6mex_msgx() [all …]
|
| /linux/drivers/platform/chrome/ |
| H A D | cros_ec_proto.c | 60 struct cros_ec_command *msg) in prepare_tx() argument 67 if (msg->outsize + sizeof(*request) > ec_dev->dout_size) in prepare_tx() 74 request->command = msg->command; in prepare_tx() 75 request->command_version = msg->version; in prepare_tx() 77 request->data_len = msg->outsize; in prepare_tx() 83 memcpy(out + sizeof(*request), msg->data, msg->outsize); in prepare_tx() 84 for (i = 0; i < msg->outsize; i++) in prepare_tx() 85 csum += msg->data[i]; in prepare_tx() 89 return sizeof(*request) + msg->outsize; in prepare_tx() 93 struct cros_ec_command *msg) in prepare_tx_legacy() argument [all …]
|
| H A D | cros_ec_sysfs.c | 55 struct cros_ec_command *msg; in reboot_store() local 62 msg = kmalloc(sizeof(*msg) + sizeof(*param), GFP_KERNEL); in reboot_store() 63 if (!msg) in reboot_store() 66 param = (struct ec_params_reboot_ec *)msg->data; in reboot_store() 99 msg->version = 0; in reboot_store() 100 msg->command = EC_CMD_REBOOT_EC + ec->cmd_offset; in reboot_store() 101 msg->outsize = sizeof(*param); in reboot_store() 102 msg->insize = 0; in reboot_store() 103 ret = cros_ec_cmd_xfer_status(ec->ec_dev, msg); in reboot_store() 107 kfree(msg); in reboot_store() [all …]
|
| /linux/drivers/media/platform/allegro-dvt/ |
| H A D | allegro-mail.c | 44 allegro_enc_init(u32 *dst, struct mcu_msg_init_request *msg) in allegro_enc_init() argument 47 enum mcu_msg_version version = msg->header.version; in allegro_enc_init() 49 dst[i++] = msg->reserved0; in allegro_enc_init() 50 dst[i++] = msg->suballoc_dma; in allegro_enc_init() 51 dst[i++] = msg->suballoc_size; in allegro_enc_init() 52 dst[i++] = msg->encoder_buffer_size; in allegro_enc_init() 53 dst[i++] = msg->encoder_buffer_color_depth; in allegro_enc_init() 54 dst[i++] = msg->num_cores; in allegro_enc_init() 56 dst[i++] = msg->clk_rate; in allegro_enc_init() 233 allegro_enc_create_channel(u32 *dst, struct mcu_msg_create_channel *msg) in allegro_enc_create_channel() argument [all …]
|
| /linux/drivers/infiniband/hw/cxgb4/ |
| H A D | restrack.c | 39 static int fill_sq(struct sk_buff *msg, struct t4_wq *wq) in fill_sq() argument 42 if (rdma_nl_put_driver_u32(msg, "sqid", wq->sq.qid)) in fill_sq() 44 if (rdma_nl_put_driver_u32(msg, "flushed", wq->flushed)) in fill_sq() 46 if (rdma_nl_put_driver_u32(msg, "memsize", wq->sq.memsize)) in fill_sq() 48 if (rdma_nl_put_driver_u32(msg, "cidx", wq->sq.cidx)) in fill_sq() 50 if (rdma_nl_put_driver_u32(msg, "pidx", wq->sq.pidx)) in fill_sq() 52 if (rdma_nl_put_driver_u32(msg, "wq_pidx", wq->sq.wq_pidx)) in fill_sq() 54 if (rdma_nl_put_driver_u32(msg, "flush_cidx", wq->sq.flush_cidx)) in fill_sq() 56 if (rdma_nl_put_driver_u32(msg, "in_use", wq->sq.in_use)) in fill_sq() 58 if (rdma_nl_put_driver_u32(msg, "size", wq->sq.size)) in fill_sq() [all …]
|
| /linux/drivers/platform/x86/amd/hsmp/ |
| H A D | hsmp.c | 53 static int __hsmp_send_message(struct hsmp_socket *sock, struct hsmp_message *msg) in __hsmp_send_message() argument 73 while (index < msg->num_args) { in __hsmp_send_message() 75 &msg->args[index], HSMP_WR); in __hsmp_send_message() 84 ret = sock->amd_hsmp_rdwr(sock, mbinfo->msg_id_off, &msg->msg_id, HSMP_WR); in __hsmp_send_message() 86 dev_err(sock->dev, "Error %d writing message ID %u\n", ret, msg->msg_id); in __hsmp_send_message() 121 msg->msg_id, mbox_status); in __hsmp_send_message() 125 msg->msg_id, mbox_status); in __hsmp_send_message() 129 msg->msg_id, mbox_status); in __hsmp_send_message() 133 msg->msg_id, mbox_status); in __hsmp_send_message() 137 msg->msg_id, mbox_status); in __hsmp_send_message() [all …]
|
| /linux/drivers/media/cec/core/ |
| H A D | cec-adap.c | 28 struct cec_msg *msg, 209 static void cec_queue_msg_fh(struct cec_fh *fh, const struct cec_msg *msg) in cec_queue_msg_fh() argument 223 entry->msg = *msg; in cec_queue_msg_fh() 263 const struct cec_msg *msg, in cec_queue_msg_monitor() argument 273 cec_queue_msg_fh(fh, msg); in cec_queue_msg_monitor() 282 const struct cec_msg *msg) in cec_queue_msg_followers() argument 289 cec_queue_msg_fh(fh, msg); in cec_queue_msg_followers() 341 cec_queue_msg_fh(data->fh, &data->msg); in cec_data_completed() 365 if (!(data->msg.tx_status & CEC_TX_STATUS_OK)) in cec_data_cancel() 370 if (data->msg.tx_status & CEC_TX_STATUS_OK) { in cec_data_cancel() [all …]
|
| /linux/sound/soc/fsl/ |
| H A D | imx-pcm-rpmsg.c | 36 static int imx_rpmsg_pcm_send_message(struct rpmsg_msg *msg, in imx_rpmsg_pcm_send_message() argument 49 dev_dbg(&rpdev->dev, "send cmd %d\n", msg->s_msg.header.cmd); in imx_rpmsg_pcm_send_message() 51 if (!(msg->s_msg.header.type == MSG_TYPE_C)) in imx_rpmsg_pcm_send_message() 54 ret = rpmsg_send(rpdev->ept, (void *)&msg->s_msg, in imx_rpmsg_pcm_send_message() 63 if (msg->s_msg.header.type == MSG_TYPE_C) { in imx_rpmsg_pcm_send_message() 73 msg->s_msg.header.cmd); in imx_rpmsg_pcm_send_message() 78 memcpy(&msg->r_msg, &info->r_msg, sizeof(struct rpmsg_r_msg)); in imx_rpmsg_pcm_send_message() 79 memcpy(&info->msg[msg->r_msg.header.cmd].r_msg, in imx_rpmsg_pcm_send_message() 80 &msg->r_msg, sizeof(struct rpmsg_r_msg)); in imx_rpmsg_pcm_send_message() 89 switch (msg->s_msg.header.cmd) { in imx_rpmsg_pcm_send_message() [all …]
|
| /linux/sound/virtio/ |
| H A D | virtio_ctl_msg.c | 33 void virtsnd_ctl_msg_ref(struct virtio_snd_msg *msg) in virtsnd_ctl_msg_ref() argument 35 refcount_inc(&msg->ref_count); in virtsnd_ctl_msg_ref() 46 void virtsnd_ctl_msg_unref(struct virtio_snd_msg *msg) in virtsnd_ctl_msg_unref() argument 48 if (refcount_dec_and_test(&msg->ref_count)) in virtsnd_ctl_msg_unref() 49 kfree(msg); in virtsnd_ctl_msg_unref() 58 void *virtsnd_ctl_msg_request(struct virtio_snd_msg *msg) in virtsnd_ctl_msg_request() argument 60 return sg_virt(&msg->sg_request); in virtsnd_ctl_msg_request() 69 void *virtsnd_ctl_msg_response(struct virtio_snd_msg *msg) in virtsnd_ctl_msg_response() argument 71 return sg_virt(&msg->sg_response); in virtsnd_ctl_msg_response() 88 struct virtio_snd_msg *msg; in virtsnd_ctl_msg_alloc() local [all …]
|
| /linux/drivers/net/wireless/silabs/wfx/ |
| H A D | key.c | 33 static u8 fill_wep_pair(struct wfx_hif_wep_pairwise_key *msg, in fill_wep_pair() argument 36 WARN(key->keylen > sizeof(msg->key_data), "inconsistent data"); in fill_wep_pair() 37 msg->key_length = key->keylen; in fill_wep_pair() 38 memcpy(msg->key_data, key->key, key->keylen); in fill_wep_pair() 39 ether_addr_copy(msg->peer_address, peer_addr); in fill_wep_pair() 43 static u8 fill_wep_group(struct wfx_hif_wep_group_key *msg, in fill_wep_group() argument 46 WARN(key->keylen > sizeof(msg->key_data), "inconsistent data"); in fill_wep_group() 47 msg->key_id = key->keyidx; in fill_wep_group() 48 msg->key_length = key->keylen; in fill_wep_group() 49 memcpy(msg->key_data, key->key, key->keylen); in fill_wep_group() [all …]
|
| /linux/drivers/gpu/drm/hyperv/ |
| H A D | hyperv_drm_proto.c | 194 static inline int hyperv_sendpacket(struct hv_device *hdev, struct synthvid_msg *msg) in hyperv_sendpacket() argument 200 msg->pipe_hdr.type = PIPE_MSG_DATA; in hyperv_sendpacket() 201 msg->pipe_hdr.size = msg->vid_hdr.size; in hyperv_sendpacket() 203 ret = vmbus_sendpacket(hdev->channel, msg, in hyperv_sendpacket() 204 msg->vid_hdr.size + sizeof(struct pipe_msg_hdr), in hyperv_sendpacket() 217 struct synthvid_msg *msg = (struct synthvid_msg *)hv->init_buf; in hyperv_negotiate_version() local 221 memset(msg, 0, sizeof(struct synthvid_msg)); in hyperv_negotiate_version() 222 msg->vid_hdr.type = SYNTHVID_VERSION_REQUEST; in hyperv_negotiate_version() 223 msg->vid_hdr.size = sizeof(struct synthvid_msg_hdr) + in hyperv_negotiate_version() 225 msg->ver_req.version = ver; in hyperv_negotiate_version() [all …]
|
| /linux/drivers/connector/ |
| H A D | cn_proc.c | 88 static inline void send_msg(struct cn_msg *msg) in send_msg() argument 94 msg->seq = __this_cpu_inc_return(local_event.count) - 1; in send_msg() 95 ((struct proc_event *)msg->data)->cpu = smp_processor_id(); in send_msg() 103 filter_data[0] = ((struct proc_event *)msg->data)->what; in send_msg() 106 ((struct proc_event *)msg->data)->event_data.exit.exit_code; in send_msg() 111 cn_netlink_send_mult(msg, msg->len, 0, CN_IDX_PROC, GFP_NOWAIT, in send_msg() 119 struct cn_msg *msg; in proc_fork_connector() local 127 msg = buffer_to_cn_msg(buffer); in proc_fork_connector() 128 ev = (struct proc_event *)msg->data; in proc_fork_connector() 140 memcpy(&msg->id, &cn_proc_event_id, sizeof(msg->id)); in proc_fork_connector() [all …]
|
| /linux/drivers/gpu/drm/amd/display/modules/hdcp/ |
| H A D | hdcp_log.c | 29 void mod_hdcp_dump_binary_message(uint8_t *msg, uint32_t msg_size, in mod_hdcp_dump_binary_message() argument 47 sprintf(&buf[buf_pos], "%02X ", msg[i]); in mod_hdcp_dump_binary_message() 57 HDCP_DDC_READ_TRACE(hdcp, "BKSV", hdcp->auth.msg.hdcp1.bksv, in mod_hdcp_log_ddc_trace() 58 sizeof(hdcp->auth.msg.hdcp1.bksv)); in mod_hdcp_log_ddc_trace() 59 HDCP_DDC_READ_TRACE(hdcp, "BCAPS", &hdcp->auth.msg.hdcp1.bcaps, in mod_hdcp_log_ddc_trace() 60 sizeof(hdcp->auth.msg.hdcp1.bcaps)); in mod_hdcp_log_ddc_trace() 62 (uint8_t *)&hdcp->auth.msg.hdcp1.bstatus, in mod_hdcp_log_ddc_trace() 63 sizeof(hdcp->auth.msg.hdcp1.bstatus)); in mod_hdcp_log_ddc_trace() 64 HDCP_DDC_WRITE_TRACE(hdcp, "AN", hdcp->auth.msg.hdcp1.an, in mod_hdcp_log_ddc_trace() 65 sizeof(hdcp->auth.msg.hdcp1.an)); in mod_hdcp_log_ddc_trace() [all …]
|
| /linux/net/tipc/ |
| H A D | netlink_compat.c | 69 int (*format)(struct tipc_nl_compat_msg *msg, struct nlattr **attrs); 75 struct sk_buff *skb, struct tipc_nl_compat_msg *msg); 179 struct tipc_nl_compat_msg *msg, in __tipc_nl_compat_dumpit() argument 199 buf->sk = msg->dst_sk; in __tipc_nl_compat_dumpit() 200 if (__tipc_dump_start(&cb, msg->net)) { in __tipc_nl_compat_dumpit() 234 err = (*cmd->format)(msg, attrbuf); in __tipc_nl_compat_dumpit() 238 if (tipc_skb_tailroom(msg->rep) <= 1) { in __tipc_nl_compat_dumpit() 260 if ((TIPC_SKB_MAX - msg->rep->len) <= 1) { in __tipc_nl_compat_dumpit() 261 char *tail = skb_tail_pointer(msg->rep); in __tipc_nl_compat_dumpit() 275 struct tipc_nl_compat_msg *msg) in tipc_nl_compat_dumpit() argument [all …]
|
| /linux/sound/soc/sof/ |
| H A D | sof-client-probes-ipc3.c | 66 struct sof_ipc_probe_dma_add_params *msg; in ipc3_probes_init() local 67 size_t size = struct_size(msg, dma, 1); in ipc3_probes_init() 70 msg = kmalloc(size, GFP_KERNEL); in ipc3_probes_init() 71 if (!msg) in ipc3_probes_init() 73 msg->hdr.size = size; in ipc3_probes_init() 74 msg->hdr.cmd = SOF_IPC_GLB_PROBE | SOF_IPC_PROBE_INIT; in ipc3_probes_init() 75 msg->num_elems = 1; in ipc3_probes_init() 76 msg->dma[0].stream_tag = stream_tag; in ipc3_probes_init() 77 msg->dma[0].dma_buffer_size = buffer_size; in ipc3_probes_init() 79 ret = sof_client_ipc_tx_message_no_reply(cdev, msg); in ipc3_probes_init() [all …]
|
| /linux/drivers/char/ipmi/ |
| H A D | ipmi_msghandler.c | 42 static void ipmi_set_recv_msg_user(struct ipmi_recv_msg *msg, 49 struct ipmi_smi_msg *msg); 571 struct ipmi_recv_msg *msg); 707 struct ipmi_recv_msg *msg, *msg2; in free_recv_msg_list() local 709 list_for_each_entry_safe(msg, msg2, q, link) { in free_recv_msg_list() 710 list_del(&msg->link); in free_recv_msg_list() 711 ipmi_free_recv_msg(msg); in free_recv_msg_list() 717 struct ipmi_smi_msg *msg, *msg2; in free_smi_msg_list() local 719 list_for_each_entry_safe(msg, msg2, q, link) { in free_smi_msg_list() 720 list_del(&msg->link); in free_smi_msg_list() [all …]
|
| /linux/drivers/firmware/arm_scmi/transports/ |
| H A D | virtio.c | 184 struct scmi_vio_msg *msg; in scmi_virtio_get_free_msg() local 192 msg = list_first_entry(&vioch->free_list, typeof(*msg), list); in scmi_virtio_get_free_msg() 193 list_del_init(&msg->list); in scmi_virtio_get_free_msg() 197 msg->poll_status = VIO_MSG_NOT_POLLED; in scmi_virtio_get_free_msg() 198 refcount_set(&msg->users, 1); in scmi_virtio_get_free_msg() 200 return msg; in scmi_virtio_get_free_msg() 203 static inline bool scmi_vio_msg_acquire(struct scmi_vio_msg *msg) in scmi_vio_msg_acquire() argument 205 return refcount_inc_not_zero(&msg->users); in scmi_vio_msg_acquire() 210 struct scmi_vio_msg *msg) in scmi_vio_msg_release() argument 214 ret = refcount_dec_and_test(&msg->users); in scmi_vio_msg_release() [all …]
|
| /linux/drivers/iio/common/ssp_sensors/ |
| H A D | ssp_spi.c | 78 struct ssp_msg *msg; in ssp_create_msg() local 80 msg = kzalloc_obj(*msg); in ssp_create_msg() 81 if (!msg) in ssp_create_msg() 89 msg->buffer = kzalloc(SSP_HEADER_SIZE_ALIGNED + len, in ssp_create_msg() 91 if (!msg->buffer) { in ssp_create_msg() 92 kfree(msg); in ssp_create_msg() 96 msg->length = len; in ssp_create_msg() 97 msg->options = opt; in ssp_create_msg() 99 memcpy(msg->buffer, &h, SSP_HEADER_SIZE); in ssp_create_msg() 101 return msg; in ssp_create_msg() [all …]
|
| /linux/net/devlink/ |
| H A D | dev.c | 13 struct sk_buff *msg; member 58 static int devlink_reload_stat_put(struct sk_buff *msg, in devlink_reload_stat_put() argument 63 reload_stats_entry = nla_nest_start(msg, DEVLINK_ATTR_RELOAD_STATS_ENTRY); in devlink_reload_stat_put() 67 if (nla_put_u8(msg, DEVLINK_ATTR_RELOAD_STATS_LIMIT, limit) || in devlink_reload_stat_put() 68 nla_put_u32(msg, DEVLINK_ATTR_RELOAD_STATS_VALUE, value)) in devlink_reload_stat_put() 70 nla_nest_end(msg, reload_stats_entry); in devlink_reload_stat_put() 74 nla_nest_cancel(msg, reload_stats_entry); in devlink_reload_stat_put() 79 devlink_reload_stats_put(struct sk_buff *msg, struct devlink *devlink, bool is_remote) in devlink_reload_stats_put() argument 86 reload_stats_attr = nla_nest_start(msg, DEVLINK_ATTR_RELOAD_STATS); in devlink_reload_stats_put() 88 reload_stats_attr = nla_nest_start(msg, DEVLINK_ATTR_REMOTE_RELOAD_STATS); in devlink_reload_stats_put() [all …]
|
| /linux/drivers/usb/serial/ |
| H A D | keyspan.c | 861 struct keyspan_usa26_portStatusMessage *msg; in usa26_instat_callback() local 880 msg = (struct keyspan_usa26_portStatusMessage *)data; in usa26_instat_callback() 883 if (msg->port >= serial->num_ports) { in usa26_instat_callback() 884 dev_dbg(&urb->dev->dev, "%s - Unexpected port number %d\n", __func__, msg->port); in usa26_instat_callback() 887 port = serial->port[msg->port]; in usa26_instat_callback() 894 p_priv->cts_state = ((msg->hskia_cts) ? 1 : 0); in usa26_instat_callback() 895 p_priv->dsr_state = ((msg->dsr) ? 1 : 0); in usa26_instat_callback() 896 p_priv->dcd_state = ((msg->gpia_dcd) ? 1 : 0); in usa26_instat_callback() 897 p_priv->ri_state = ((msg->ri) ? 1 : 0); in usa26_instat_callback() 979 struct keyspan_usa28_portStatusMessage *msg; in usa28_instat_callback() local [all …]
|
| /linux/drivers/net/ethernet/hisilicon/hns3/hns3pf/ |
| H A D | hclge_err.c | 11 .msg = "imp_itcm0_ecc_mbit_err", 15 .msg = "imp_itcm1_ecc_mbit_err", 19 .msg = "imp_itcm2_ecc_mbit_err", 23 .msg = "imp_itcm3_ecc_mbit_err", 27 .msg = "imp_dtcm0_mem0_ecc_mbit_err", 31 .msg = "imp_dtcm0_mem1_ecc_mbit_err", 35 .msg = "imp_dtcm1_mem0_ecc_mbit_err", 39 .msg = "imp_dtcm1_mem1_ecc_mbit_err", 43 .msg = "imp_itcm4_ecc_mbit_err", 53 .msg = "cmdq_nic_rx_depth_ecc_mbit_err", [all …]
|
| /linux/include/linux/ |
| H A D | skmsg.h | 126 int sk_msg_alloc(struct sock *sk, struct sk_msg *msg, int len, 130 void sk_msg_trim(struct sock *sk, struct sk_msg *msg, int len); 131 int sk_msg_free(struct sock *sk, struct sk_msg *msg); 132 int sk_msg_free_nocharge(struct sock *sk, struct sk_msg *msg); 133 void sk_msg_free_partial(struct sock *sk, struct sk_msg *msg, u32 bytes); 134 void sk_msg_free_partial_nocharge(struct sock *sk, struct sk_msg *msg, 137 void sk_msg_return(struct sock *sk, struct sk_msg *msg, int bytes); 138 void sk_msg_return_zero(struct sock *sk, struct sk_msg *msg, int bytes); 141 struct sk_msg *msg, u32 bytes); 143 struct sk_msg *msg, u32 bytes); [all …]
|