Searched refs:msg_type (Results 1 - 102 of 102) sorted by relevance

/linux-4.1.27/include/linux/usb/
H A Drndis_host.h37 __le32 msg_type; /* RNDIS_MSG_* */ member in struct:rndis_msg_hdr
55 __le32 msg_type; /* RNDIS_MSG_PACKET */ member in struct:rndis_data_hdr
72 __le32 msg_type; /* RNDIS_MSG_INIT */ member in struct:rndis_init
82 __le32 msg_type; /* RNDIS_MSG_INIT_C */ member in struct:rndis_init_c
99 __le32 msg_type; /* RNDIS_MSG_HALT */ member in struct:rndis_halt
106 __le32 msg_type; /* RNDIS_MSG_QUERY */ member in struct:rndis_query
117 __le32 msg_type; /* RNDIS_MSG_QUERY_C */ member in struct:rndis_query_c
127 __le32 msg_type; /* RNDIS_MSG_SET */ member in struct:rndis_set
138 __le32 msg_type; /* RNDIS_MSG_SET_C */ member in struct:rndis_set_c
146 __le32 msg_type; /* RNDIS_MSG_RESET */ member in struct:rndis_reset
153 __le32 msg_type; /* RNDIS_MSG_RESET_C */ member in struct:rndis_reset_c
161 __le32 msg_type; /* RNDIS_MSG_INDICATE */ member in struct:rndis_indicate
173 __le32 msg_type; /* RNDIS_MSG_KEEPALIVE */ member in struct:rndis_keepalive
180 __le32 msg_type; /* RNDIS_MSG_KEEPALIVE_C */ member in struct:rndis_keepalive_c
/linux-4.1.27/drivers/media/common/siano/
H A Dsmsendian.c35 switch (msg->x_msg_header.msg_type) { smsendian_handle_tx_message()
62 switch (msg->x_msg_header.msg_type) { smsendian_handle_rx_message()
98 phdr->msg_type = le16_to_cpu(phdr->msg_type); smsendian_handle_message_header()
H A Dsmsdvb-main.c526 switch (phdr->msg_type) { smsdvb_onresponse()
664 pid_msg.x_msg_header.msg_type = MSG_SMS_ADD_PID_FILTER_REQ; smsdvb_start_feed()
686 pid_msg.x_msg_header.msg_type = MSG_SMS_REMOVE_PID_FILTER_REQ; smsdvb_stop_feed()
732 msg.msg_type = MSG_SMS_GET_STATISTICS_EX_REQ; smsdvb_send_statistics_request()
734 msg.msg_type = MSG_SMS_GET_STATISTICS_REQ; smsdvb_send_statistics_request()
737 msg.msg_type = MSG_SMS_GET_STATISTICS_REQ; smsdvb_send_statistics_request()
877 msg.msg.msg_type = MSG_SMS_RF_TUNE_REQ; smsdvb_dvbt_set_frontend()
942 msg.msg.msg_type = MSG_SMS_ISDBT_TUNE_REQ; smsdvb_isdbt_set_frontend()
H A Dsmscoreapi.c846 mtu_msg.x_msg_header.msg_type = MSG_SMS_SET_MAX_TX_MSG_LEN_REQ; smscore_configure_board()
1506 if ((phdr->msg_type == MSG_SMS_HO_PER_SLICES_IND) || smscore_onresponse()
1507 (phdr->msg_type == MSG_SMS_TRANSMISSION_IND)) { smscore_onresponse()
1513 client = smscore_find_client(coredev, phdr->msg_type, phdr->msg_dst_id); smscore_onresponse()
1521 switch (phdr->msg_type) { smscore_onresponse()
1617 smscore_translate_msg(phdr->msg_type), smscore_onresponse()
1618 phdr->msg_type); smscore_onresponse()
1839 msg.hdr.msg_type = MSG_SMS_GPIO_CONFIG_EX_REQ; smscore_configure_gpio()
1886 msg.hdr.msg_type = MSG_SMS_GPIO_SET_LEVEL_REQ; smscore_set_gpio()
1987 p_msg->x_msg_header.msg_type = MSG_SMS_GPIO_CONFIG_REQ; smscore_gpio_configure()
2004 p_msg->x_msg_header.msg_type = MSG_SMS_GPIO_CONFIG_EX_REQ; smscore_gpio_configure()
2055 p_msg->x_msg_header.msg_type = MSG_SMS_GPIO_SET_LEVEL_REQ; smscore_gpio_set_level()
2103 p_msg->x_msg_header.msg_type = MSG_SMS_GPIO_GET_LEVEL_REQ; smscore_gpio_get_level()
H A Dsmscoreapi.h584 (ptr)->msg_type = type; \
622 u16 msg_type; member in struct:sms_msg_hdr
/linux-4.1.27/fs/ocfs2/cluster/
H A Dtcp.h44 __be16 msg_type; member in struct:o2net_msg
99 int o2net_send_message(u32 msg_type, u32 key, void *data, u32 len,
101 int o2net_send_message_vec(u32 msg_type, u32 key, struct kvec *vec,
104 int o2net_register_handler(u32 msg_type, u32 key, u32 max_len,
H A Dtcp.c91 be16_to_cpu(__hdr->msg_type), be32_to_cpu(__hdr->status), \
754 static int o2net_handler_cmp(struct o2net_msg_handler *nmh, u32 msg_type, o2net_handler_cmp() argument
760 ret = memcmp(&nmh->nh_msg_type, &msg_type, sizeof(msg_type)); o2net_handler_cmp()
766 o2net_handler_tree_lookup(u32 msg_type, u32 key, struct rb_node ***ret_p, o2net_handler_tree_lookup() argument
777 cmp = o2net_handler_cmp(nmh, msg_type, key); o2net_handler_tree_lookup()
812 int o2net_register_handler(u32 msg_type, u32 key, u32 max_len, o2net_register_handler() argument
828 if (!msg_type) { o2net_register_handler()
829 mlog(0, "no message type provided: %u, %p\n", msg_type, func); o2net_register_handler()
836 msg_type, func); o2net_register_handler()
850 nmh->nh_msg_type = msg_type; o2net_register_handler()
859 if (o2net_handler_tree_lookup(msg_type, key, &p, &parent)) o2net_register_handler()
867 func, msg_type, key); o2net_register_handler()
869 mlog_bug_on_msg(o2net_handler_tree_lookup(msg_type, key, &p, o2net_register_handler()
872 "for type %u key %08x\n", msg_type, key); o2net_register_handler() local
902 static struct o2net_msg_handler *o2net_handler_get(u32 msg_type, u32 key) o2net_handler_get() argument
907 nmh = o2net_handler_tree_lookup(msg_type, key, NULL, NULL); o2net_handler_get()
975 static void o2net_init_msg(struct o2net_msg *msg, u16 data_len, u16 msg_type, u32 key) o2net_init_msg() argument
980 msg->msg_type = cpu_to_be16(msg_type); o2net_init_msg()
1029 int o2net_send_message_vec(u32 msg_type, u32 key, struct kvec *caller_vec, o2net_send_message_vec() argument
1043 o2net_init_nst(&nst, msg_type, key, current, target_node); o2net_send_message_vec()
1094 o2net_init_msg(msg, caller_bytes, msg_type, key); o2net_send_message_vec()
1147 int o2net_send_message(u32 msg_type, u32 key, void *data, u32 len, o2net_send_message() argument
1154 return o2net_send_message_vec(msg_type, key, &vec, 1, o2net_send_message()
1221 nmh = o2net_handler_get(be16_to_cpu(hdr->msg_type), o2net_process_message()
1225 be16_to_cpu(hdr->msg_type), be32_to_cpu(hdr->key)); o2net_process_message()
1240 sc->sc_msg_type = be16_to_cpu(hdr->msg_type); o2net_process_message()
/linux-4.1.27/drivers/net/usb/
H A Drndis_host.c111 u32 xid = 0, msg_len, request_id, msg_type, rsp, rndis_command() local
118 msg_type = le32_to_cpu(buf->msg_type); rndis_command()
121 if (likely(msg_type != RNDIS_MSG_HALT && msg_type != RNDIS_MSG_RESET)) { rndis_command()
152 rsp = le32_to_cpu(buf->msg_type) | RNDIS_MSG_COMPLETION; rndis_command()
163 msg_type = le32_to_cpu(buf->msg_type); rndis_command()
167 if (likely(msg_type == rsp)) { rndis_command()
183 } else switch (msg_type) { rndis_command()
190 msg->msg_type = cpu_to_le32(RNDIS_MSG_KEEPALIVE_C); rndis_command()
209 le32_to_cpu(buf->msg_type), msg_len); rndis_command()
255 u.get->msg_type = cpu_to_le32(RNDIS_MSG_QUERY); rndis_query()
328 u.init->msg_type = cpu_to_le32(RNDIS_MSG_INIT); generic_rndis_bind()
435 u.set->msg_type = cpu_to_le32(RNDIS_MSG_SET); generic_rndis_bind()
455 u.halt->msg_type = cpu_to_le32(RNDIS_MSG_HALT); generic_rndis_bind()
480 halt->msg_type = cpu_to_le32(RNDIS_MSG_HALT); rndis_unbind()
503 u32 msg_type, msg_len, data_offset, data_len; rndis_rx_fixup() local
505 msg_type = le32_to_cpu(hdr->msg_type); rndis_rx_fixup()
511 if (unlikely(msg_type != RNDIS_MSG_PACKET || skb->len < msg_len rndis_rx_fixup()
515 le32_to_cpu(hdr->msg_type), rndis_rx_fixup()
578 hdr->msg_type = cpu_to_le32(RNDIS_MSG_PACKET); rndis_tx_fixup()
/linux-4.1.27/drivers/infiniband/core/
H A Diwpm_msg.c357 const char *msg_type = "Register Pid response"; iwpm_register_pid_cb() local
360 resp_reg_policy, nltb, msg_type)) iwpm_register_pid_cb()
421 const char *msg_type; iwpm_add_mapping_cb() local
424 msg_type = "Add Mapping response"; iwpm_add_mapping_cb()
426 resp_add_policy, nltb, msg_type)) iwpm_add_mapping_cb()
494 const char *msg_type; iwpm_add_and_query_mapping_cb() local
498 msg_type = "Query Mapping response"; iwpm_add_and_query_mapping_cb()
500 resp_query_policy, nltb, msg_type)) iwpm_add_and_query_mapping_cb()
573 const char *msg_type; iwpm_remote_info_cb() local
577 msg_type = "Remote Mapping info"; iwpm_remote_info_cb()
579 resp_query_policy, nltb, msg_type)) iwpm_remote_info_cb()
646 const char *msg_type = "Mapping Info response"; iwpm_mapping_info_cb() local
654 resp_mapinfo_policy, nltb, msg_type)) { iwpm_mapping_info_cb()
699 const char *msg_type = "Mapping Info Ack"; iwpm_ack_mapping_info_cb() local
702 ack_mapinfo_policy, nltb, msg_type)) iwpm_ack_mapping_info_cb()
730 const char *msg_type = "Mapping Error Msg"; iwpm_mapping_error_cb() local
733 map_error_policy, nltb, msg_type)) iwpm_mapping_error_cb()
H A Diwpm_util.h239 * @msg_type: Type of netlink message
245 struct nlattr *nltb[], const char *msg_type);
H A Diwpm_util.c464 struct nlattr *nltb[], const char *msg_type) iwpm_parse_nlmsg()
488 __func__, err_str, msg_type, ret); iwpm_parse_nlmsg()
462 iwpm_parse_nlmsg(struct netlink_callback *cb, int policy_max, const struct nla_policy *nlmsg_policy, struct nlattr *nltb[], const char *msg_type) iwpm_parse_nlmsg() argument
/linux-4.1.27/arch/powerpc/platforms/powernv/
H A Dopal-power.c23 unsigned long msg_type, void *msg) opal_power_control_event()
22 opal_power_control_event(struct notifier_block *nb, unsigned long msg_type, void *msg) opal_power_control_event() argument
H A Dopal-memory-errors.c101 unsigned long msg_type, void *msg) opal_memory_err_event()
106 if (msg_type != OPAL_MSG_MEM_ERR) opal_memory_err_event()
100 opal_memory_err_event(struct notifier_block *nb, unsigned long msg_type, void *msg) opal_memory_err_event() argument
H A Dopal.c308 int opal_message_notifier_register(enum opal_msg_type msg_type, opal_message_notifier_register() argument
311 if (!nb || msg_type >= OPAL_MSG_TYPE_MAX) { opal_message_notifier_register()
312 pr_warning("%s: Invalid arguments, msg_type:%d\n", opal_message_notifier_register()
313 __func__, msg_type); opal_message_notifier_register()
318 &opal_msg_notifier_head[msg_type], nb); opal_message_notifier_register()
321 int opal_message_notifier_unregister(enum opal_msg_type msg_type, opal_message_notifier_unregister() argument
325 &opal_msg_notifier_head[msg_type], nb); opal_message_notifier_unregister()
328 static void opal_message_do_notify(uint32_t msg_type, void *msg) opal_message_do_notify() argument
331 atomic_notifier_call_chain(&opal_msg_notifier_head[msg_type], opal_message_do_notify()
332 msg_type, msg); opal_message_do_notify()
357 type = be32_to_cpu(msg.msg_type); opal_handle_message()
H A Dopal-async.c128 unsigned long msg_type, void *msg) opal_async_comp_event()
134 if (msg_type != OPAL_MSG_ASYNC_COMP) opal_async_comp_event()
127 opal_async_comp_event(struct notifier_block *nb, unsigned long msg_type, void *msg) opal_async_comp_event() argument
H A Dopal-hmi.c137 unsigned long msg_type, void *msg) opal_handle_hmi_event()
145 if (msg_type != OPAL_MSG_HMI_EVT) opal_handle_hmi_event()
136 opal_handle_hmi_event(struct notifier_block *nb, unsigned long msg_type, void *msg) opal_handle_hmi_event() argument
/linux-4.1.27/drivers/xen/xenbus/
H A Dxenbus_dev_frontend.c305 static int xenbus_write_transaction(unsigned msg_type, xenbus_write_transaction() argument
313 if (msg_type == XS_TRANSACTION_START) { xenbus_write_transaction()
328 if (msg_type == XS_TRANSACTION_START) { xenbus_write_transaction()
363 static int xenbus_write_watch(unsigned msg_type, struct xenbus_file_priv *u) xenbus_write_watch() argument
382 if (msg_type == XS_WATCH) { xenbus_write_watch()
418 .type = msg_type, xenbus_write_watch()
439 uint32_t msg_type; xenbus_file_write() local
505 msg_type = u->u.msg.type; xenbus_file_write()
507 switch (msg_type) { xenbus_file_write()
511 ret = xenbus_write_watch(msg_type, u); xenbus_file_write()
516 ret = xenbus_write_transaction(msg_type, u); xenbus_file_write()
/linux-4.1.27/drivers/staging/lustre/lnet/lnet/
H A Dlib-msg.c115 if (msg->msg_type == LNET_MSG_PUT) { lnet_build_msg_event()
124 LASSERT(msg->msg_type == LNET_MSG_GET); lnet_build_msg_event()
194 LASSERT(msg->msg_type == LNET_MSG_ACK); lnet_msg_decommit_tx()
195 msg->msg_type = LNET_MSG_PUT; /* fix type */ lnet_msg_decommit_tx()
200 if (msg->msg_type == LNET_MSG_PUT) lnet_msg_decommit_tx()
208 LASSERT(msg->msg_type == LNET_MSG_REPLY); lnet_msg_decommit_tx()
209 msg->msg_type = LNET_MSG_GET; /* fix type */ lnet_msg_decommit_tx()
239 LASSERT(msg->msg_type == LNET_MSG_ACK); lnet_msg_decommit_rx()
247 LASSERT(msg->msg_type == LNET_MSG_REPLY || lnet_msg_decommit_rx()
248 msg->msg_type == LNET_MSG_GET); lnet_msg_decommit_rx()
253 LASSERT(msg->msg_type == LNET_MSG_PUT); lnet_msg_decommit_rx()
259 LASSERT(msg->msg_type == LNET_MSG_GET || lnet_msg_decommit_rx()
260 msg->msg_type == LNET_MSG_REPLY); lnet_msg_decommit_rx()
449 lnet_msgtyp2str(msg->msg_type), libcfs_id2str(msg->msg_target), lnet_finalize()
H A Dlib-move.c625 msg->msg_type = type; lnet_prep_send()
1308 lnet_msgtyp2str(msg->msg_type), msg->msg_len); lnet_send()
1846 msg->msg_type = type; lnet_parse()
2190 msg->msg_type = LNET_MSG_GET; /* flag this msg as an "optimized" GET */ lnet_create_reply_msg()
2229 LASSERT(reply->msg_type == LNET_MSG_GET); lnet_set_reply_msg_len()
/linux-4.1.27/drivers/net/ethernet/stmicro/stmmac/
H A Denh_desc.c140 if (p->des4.erx.msg_type == RDES_EXT_SYNC) enh_desc_get_ext_status()
142 else if (p->des4.erx.msg_type == RDES_EXT_FOLLOW_UP) enh_desc_get_ext_status()
144 else if (p->des4.erx.msg_type == RDES_EXT_DELAY_REQ) enh_desc_get_ext_status()
146 else if (p->des4.erx.msg_type == RDES_EXT_DELAY_RESP) enh_desc_get_ext_status()
148 else if (p->des4.erx.msg_type == RDES_EXT_PDELAY_REQ) enh_desc_get_ext_status()
150 else if (p->des4.erx.msg_type == RDES_EXT_PDELAY_RESP) enh_desc_get_ext_status()
152 else if (p->des4.erx.msg_type == RDES_EXT_PDELAY_FOLLOW_UP) enh_desc_get_ext_status()
H A Ddescs.h179 u32 msg_type:4; member in struct:dma_extended_desc::__anon7345::__anon7346
/linux-4.1.27/drivers/net/hyperv/
H A Dnetvsc.c119 revoke_packet->hdr.msg_type = netvsc_destroy_buf()
179 revoke_packet->hdr.msg_type = netvsc_destroy_buf()
264 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_RECV_BUF; netvsc_init_buf()
348 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_SEND_BUF; netvsc_init_buf()
422 init_packet->hdr.msg_type = NVSP_MSG_TYPE_INIT; negotiate_nvsp_ver()
450 init_packet->hdr.msg_type = NVSP_MSG2_TYPE_SEND_NDIS_CONFIG; negotiate_nvsp_ver()
504 init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_NDIS_VER; netvsc_connect_vsp()
615 if ((nvsp_packet->hdr.msg_type == NVSP_MSG_TYPE_INIT_COMPLETE) || netvsc_send_completion()
616 (nvsp_packet->hdr.msg_type == netvsc_send_completion()
618 (nvsp_packet->hdr.msg_type == netvsc_send_completion()
620 (nvsp_packet->hdr.msg_type == netvsc_send_completion()
626 } else if (nvsp_packet->hdr.msg_type == netvsc_send_completion()
664 "%d received!!\n", nvsp_packet->hdr.msg_type); netvsc_send_completion()
747 nvmsg.hdr.msg_type = NVSP_MSG1_TYPE_SEND_RNDIS_PKT; netvsc_send_pkt()
944 recvcompMessage.hdr.msg_type = netvsc_send_recv_completion()
1007 if (nvsp_packet->hdr.msg_type != netvsc_receive()
1010 " %d\n", nvsp_packet->hdr.msg_type); netvsc_receive()
1064 if (nvmsg->hdr.msg_type != NVSP_MSG5_TYPE_SEND_INDIRECTION_TABLE) netvsc_send_table()
H A Drndis_filter.c77 u32 msg_type, get_rndis_request()
92 rndis_msg->ndis_msg_type = msg_type; get_rndis_request()
1121 init_packet->hdr.msg_type = NVSP_MSG5_TYPE_SUBCHANNEL; rndis_filter_device_add()
76 get_rndis_request(struct rndis_device *dev, u32 msg_type, u32 msg_len) get_rndis_request() argument
H A Dhyperv_net.h304 u32 msg_type; member in struct:nvsp_message_header
/linux-4.1.27/drivers/net/wireless/ath/ath10k/
H A Dhtt_tx.c151 cmd->hdr.msg_type = HTT_H2T_MSG_TYPE_VERSION_REQ; ath10k_htt_h2t_ver_req_msg()
179 cmd->hdr.msg_type = HTT_H2T_MSG_TYPE_STATS_REQ; ath10k_htt_h2t_stats_req()
234 cmd->hdr.msg_type = HTT_H2T_MSG_TYPE_RX_RING_CFG; ath10k_htt_send_rx_ring_cfg_ll()
318 cmd->hdr.msg_type = HTT_H2T_MSG_TYPE_AGGR_CFG; ath10k_htt_h2t_aggr_cfg_msg()
381 cmd->hdr.msg_type = HTT_H2T_MSG_TYPE_MGMT_TX; ath10k_htt_mgmt_tx()
533 skb_cb->htt.txbuf->cmd_hdr.msg_type = HTT_H2T_MSG_TYPE_TX_FRM; ath10k_htt_tx()
H A Dhtt.h58 u8 msg_type; member in struct:htt_cmd_hdr
199 * @msg_type: hardcoded %HTT_H2T_MSG_TYPE_STATS_REQ
310 * msg_type: see htt_t2h_msg_type
313 u8 msg_type; member in struct:htt_resp_hdr
H A Dhtt_rx.c1900 ath10k_dbg(ar, ATH10K_DBG_HTT, "htt rx, msg_type: 0x%0X\n", ath10k_htt_t2h_msg_handler()
1901 resp->hdr.msg_type); ath10k_htt_t2h_msg_handler()
1902 switch (resp->hdr.msg_type) { ath10k_htt_t2h_msg_handler()
2029 resp->hdr.msg_type); ath10k_htt_t2h_msg_handler()
/linux-4.1.27/drivers/staging/lustre/lnet/selftest/
H A Dframework.c688 LASSERT(msg->msg_type == SRPC_MSG_TEST_REQST); sfw_unpack_addtest_req()
1260 LASSERT(request->msg_type == srpc_service2request(sv->sv_id)); sfw_handle_server_rpc()
1427 if (msg->msg_type == SRPC_MSG_STAT_REQST) { sfw_unpack_message()
1436 if (msg->msg_type == SRPC_MSG_STAT_REPLY) { sfw_unpack_message()
1447 if (msg->msg_type == SRPC_MSG_MKSN_REQST) { sfw_unpack_message()
1456 if (msg->msg_type == SRPC_MSG_MKSN_REPLY) { sfw_unpack_message()
1465 if (msg->msg_type == SRPC_MSG_RMSN_REQST) { sfw_unpack_message()
1473 if (msg->msg_type == SRPC_MSG_RMSN_REPLY) { sfw_unpack_message()
1481 if (msg->msg_type == SRPC_MSG_DEBUG_REQST) { sfw_unpack_message()
1490 if (msg->msg_type == SRPC_MSG_DEBUG_REPLY) { sfw_unpack_message()
1499 if (msg->msg_type == SRPC_MSG_BATCH_REQST) { sfw_unpack_message()
1511 if (msg->msg_type == SRPC_MSG_BATCH_REPLY) { sfw_unpack_message()
1519 if (msg->msg_type == SRPC_MSG_TEST_REQST) { sfw_unpack_message()
1533 if (msg->msg_type == SRPC_MSG_TEST_REPLY) { sfw_unpack_message()
1541 if (msg->msg_type == SRPC_MSG_JOIN_REQST) { sfw_unpack_message()
1549 if (msg->msg_type == SRPC_MSG_JOIN_REPLY) { sfw_unpack_message()
H A Drpc.h255 __u32 msg_type; member in struct:srpc_msg
295 __swab32s(&msg->msg_type); srpc_unpack_msg_hdr()
H A Dping_test.c190 LASSERT(reqstmsg->msg_type == srpc_service2request(sv->sv_id)); ping_server_handle()
H A Drpc.c1244 if (reply->msg_type != type || srpc_send_rpc()
1249 reply->msg_type, type, srpc_send_rpc()
1391 msg->msg_type = srpc_service2reply(sv->sv_id); srpc_send_reply()
1510 (msg->msg_type != type && srpc_lnet_ev_handler()
1511 msg->msg_type != __swab32(type)) || srpc_lnet_ev_handler()
1517 msg->msg_type, msg->msg_magic); srpc_lnet_ev_handler()
H A Dbrw_test.c438 LASSERT(reqstmsg->msg_type == (__u32)srpc_service2request(sv->sv_id)); brw_server_handle()
H A Dselftest.h552 rpc->crpc_reqstmsg.msg_type = srpc_service2request(service); srpc_init_client_rpc()
/linux-4.1.27/arch/ia64/include/uapi/asm/
H A Dperfmon.h129 int msg_type; /* generic message header */ member in struct:__anon1685
139 int msg_type; /* generic message header */ member in struct:__anon1686
145 int msg_type; /* type of the message */ member in struct:__anon1687
/linux-4.1.27/net/batman-adv/
H A Dicmp_socket.c203 switch (icmp_header->msg_type) { batadv_socket_write()
247 icmp_header->msg_type = BATADV_PARAMETER_PROBLEM; batadv_socket_write()
260 icmp_header->msg_type = BATADV_DESTINATION_UNREACHABLE; batadv_socket_write()
H A Dpacket.h235 * @msg_type: ICMP packet type
249 uint8_t msg_type; /* see ICMP message types above */ member in struct:batadv_icmp_header
261 * @msg_type: ICMP packet type
272 uint8_t msg_type; /* see ICMP message types above */ member in struct:batadv_icmp_packet
287 * @msg_type: ICMP packet type
299 uint8_t msg_type; /* see ICMP message types above */ member in struct:batadv_icmp_packet_rr
H A Drouting.c198 switch (icmph->msg_type) { batadv_recv_my_icmp_packet()
227 icmph->msg_type = BATADV_ECHO_REPLY; batadv_recv_my_icmp_packet()
258 if (icmp_packet->msg_type != BATADV_ECHO_REQUEST) { batadv_recv_icmp_ttl_exceeded()
281 icmp_packet->msg_type = BATADV_TTL_EXCEEDED; batadv_recv_icmp_ttl_exceeded()
327 if ((icmph->msg_type == BATADV_ECHO_REPLY || batadv_recv_icmp_packet()
328 icmph->msg_type == BATADV_ECHO_REQUEST) && batadv_recv_icmp_packet()
/linux-4.1.27/drivers/iio/common/ssp_sensors/
H A Dssp_spi.c342 u8 msg_type; ssp_irq_msg() local
361 msg_type = SSP_GET_MESSAGE_TYPE(msg_options); ssp_irq_msg()
363 switch (msg_type) { ssp_irq_msg()
404 if (msg_type == SSP_AP2HUB_READ) ssp_irq_msg()
409 if (msg_type == SSP_AP2HUB_WRITE) { ssp_irq_msg()
/linux-4.1.27/drivers/net/wimax/i2400m/
H A Dcontrol.c517 unsigned msg_type; i2400m_report_hook() local
523 msg_type = le16_to_cpu(l3l4_hdr->type); i2400m_report_hook()
524 switch (msg_type) { i2400m_report_hook()
717 unsigned msg_type; i2400m_msg_to_dev() local
732 msg_type = le16_to_cpu(msg_l3l4_hdr->type); i2400m_msg_to_dev()
734 msg_type, buf_len); i2400m_msg_to_dev()
753 switch (msg_type) { i2400m_msg_to_dev()
772 msg_type); i2400m_msg_to_dev()
778 msg_type, result); i2400m_msg_to_dev()
804 msg_type, result); i2400m_msg_to_dev()
807 if (msg_type != le16_to_cpu(ack_l3l4_hdr->type)) { i2400m_msg_to_dev()
809 le16_to_cpu(ack_l3l4_hdr->type), msg_type); i2400m_msg_to_dev()
H A Drx.c364 unsigned msg_type; i2400m_rx_ctl() local
372 msg_type = le16_to_cpu(l3l4_hdr->type); i2400m_rx_ctl()
374 msg_type & I2400M_MT_REPORT_MASK ? "REPORT" : "CMD/SET/GET", i2400m_rx_ctl()
375 msg_type, size); i2400m_rx_ctl()
377 if (msg_type & I2400M_MT_REPORT_MASK) { i2400m_rx_ctl()
441 unsigned msg_type; i2400m_rx_trace() local
449 msg_type = le16_to_cpu(l3l4_hdr->type); i2400m_rx_trace()
451 msg_type & I2400M_MT_REPORT_MASK ? "REPORT" : "CMD/SET/GET", i2400m_rx_trace()
452 msg_type, size); i2400m_rx_trace()
/linux-4.1.27/drivers/input/serio/
H A Dhyperv-keyboard.c114 u32 msg_type = __le32_to_cpu(msg->header.type); hv_kbd_on_receive() local
118 switch (msg_type) { hv_kbd_on_receive()
186 "unhandled message type %d\n", msg_type); hv_kbd_on_receive()
/linux-4.1.27/drivers/net/ethernet/qlogic/qlcnic/
H A Dqlcnic_sriov.h25 u8 msg_type:4; member in struct:qlcnic_bc_hdr
39 u8 msg_type:4;
H A Dqlcnic_sriov_common.c744 u16 seq, u8 msg_type) qlcnic_sriov_prepare_bc_hdr()
753 if (msg_type == QLC_BC_COMMAND) { qlcnic_sriov_prepare_bc_hdr()
795 hdr[i].msg_type = msg_type; qlcnic_sriov_prepare_bc_hdr()
1264 u8 msg_type, i; qlcnic_sriov_handle_msg_event() local
1268 msg_type = hdr.msg_type; qlcnic_sriov_handle_msg_event()
1270 switch (msg_type) { qlcnic_sriov_handle_msg_event()
742 qlcnic_sriov_prepare_bc_hdr(struct qlcnic_bc_trans *trans, struct qlcnic_cmd_args *cmd, u16 seq, u8 msg_type) qlcnic_sriov_prepare_bc_hdr() argument
/linux-4.1.27/drivers/net/ethernet/broadcom/
H A Dcnic_if.h315 int (*iscsi_nl_msg_recv)(struct cnic_dev *dev, u32 msg_type,
360 int (*iscsi_nl_send_msg)(void *ulp_ctx, u32 msg_type,
H A Dcnic.c316 u32 msg_type = ISCSI_KEVENT_IF_DOWN; cnic_send_nlmsg() local
329 msg_type = ISCSI_KEVENT_PATH_REQ; cnic_send_nlmsg()
351 msg_type, buf, len); cnic_send_nlmsg()
353 if (rc == 0 || msg_type != ISCSI_KEVENT_PATH_REQ) cnic_send_nlmsg()
364 static int cnic_iscsi_nl_msg_recv(struct cnic_dev *dev, u32 msg_type, cnic_iscsi_nl_msg_recv() argument
369 switch (msg_type) { cnic_iscsi_nl_msg_recv()
/linux-4.1.27/kernel/
H A Daudit.c631 static int audit_netlink_ok(struct sk_buff *skb, u16 msg_type) audit_netlink_ok() argument
649 switch (msg_type) { audit_netlink_ok()
687 static int audit_log_common_recv_msg(struct audit_buffer **ab, u16 msg_type) audit_log_common_recv_msg() argument
693 if (!audit_enabled && msg_type != AUDIT_USER_AVC) { audit_log_common_recv_msg()
698 *ab = audit_log_start(NULL, GFP_KERNEL, msg_type); audit_log_common_recv_msg()
805 u16 msg_type = nlh->nlmsg_type; audit_receive_msg() local
810 err = audit_netlink_ok(skb, msg_type); audit_receive_msg()
827 switch (msg_type) { audit_receive_msg()
903 if (!audit_enabled && msg_type != AUDIT_USER_AVC) audit_receive_msg()
906 err = audit_filter_user(msg_type); audit_receive_msg()
909 if (msg_type == AUDIT_USER_TTY) { audit_receive_msg()
915 audit_log_common_recv_msg(&ab, msg_type); audit_receive_msg()
916 if (msg_type != AUDIT_USER_TTY) audit_receive_msg()
945 err = audit_rule_change(msg_type, NETLINK_CB(skb).portid, audit_receive_msg()
/linux-4.1.27/net/tipc/
H A Dmsg.h256 static inline u32 msg_type(struct tipc_msg *m) msg_type() function
268 return msg_type(m) == TIPC_NAMED_MSG; msg_named()
273 return msg_type(m) == TIPC_MCAST_MSG; msg_mcast()
278 return msg_type(m) == TIPC_CONN_MSG; msg_connected()
561 if (msg_type(m) != SYNCH_MSG) msg_dup()
H A Dlink.c176 (msg_type(msg) == FIRST_FRAGMENT)) { link_timeout()
1086 (msg_type(msg) == RESET_MSG || tipc_rcv()
1087 msg_type(msg) == ACTIVATE_MSG) && tipc_rcv()
1433 switch (msg_type(msg)) { tipc_link_proto_rcv()
1479 if (msg_type(msg) == ACTIVATE_MSG) tipc_link_proto_rcv()
1690 if (msg_type(msg) != FAILOVER_MSG) { tipc_link_failover_rcv()
H A Dname_distr.c401 mtype = msg_type(msg); tipc_named_rcv()
H A Ddiscover.c135 u32 mtyp = msg_type(msg); tipc_disc_rcv()
H A Dsocket.c782 if (msg_type(msg) == CONN_ACK) { tipc_sk_proto_rcv()
787 } else if (msg_type(msg) == CONN_PROBE) { tipc_sk_proto_rcv()
793 /* Do nothing if msg_type() == CONN_PROBE_REPLY */ tipc_sk_proto_rcv()
1177 dest_type = msg ? msg_type(msg) : TIPC_DIRECT_MSG; tipc_sk_anc_data_recv()
1653 if (msg_type(msg) > TIPC_DIRECT_MSG) filter_rcv()
H A Dmsg.c134 fragid = msg_type(msg); tipc_buf_append()
H A Dbcast.c453 if (msg_type(msg) != STATE_MSG) tipc_bclink_rcv()
/linux-4.1.27/drivers/block/
H A Dsx8.c259 unsigned int msg_type; member in struct:carm_request
603 crq->msg_type = CARM_MSG_ARRAY; carm_array_info()
657 crq->msg_type = ioc->type; carm_send_special()
898 crq->msg_type = CARM_MSG_WRITE; carm_rq_fn()
901 crq->msg_type = CARM_MSG_READ; carm_rq_fn()
1090 if (likely(crq->msg_type == CARM_MSG_READ || carm_handle_resp()
1091 crq->msg_type == CARM_MSG_WRITE)) { carm_handle_resp()
1098 switch (crq->msg_type) { carm_handle_resp()
1160 pci_name(host->pdev), crq->msg_type, crq->msg_subtype); carm_handle_resp()
/linux-4.1.27/fs/ocfs2/dlm/
H A Ddlmast.c451 struct dlm_lock *lock, int msg_type, dlm_send_proxy_ast_msg()
461 res->lockname.len, res->lockname.name, lock->ml.node, msg_type, dlm_send_proxy_ast_msg()
466 past.type = msg_type; dlm_send_proxy_ast_msg()
450 dlm_send_proxy_ast_msg(struct dlm_ctxt *dlm, struct dlm_lock_resource *res, struct dlm_lock *lock, int msg_type, int blocked_type, int flags) dlm_send_proxy_ast_msg() argument
H A Ddlmdomain.c578 static int dlm_send_one_domain_exit(struct dlm_ctxt *dlm, u32 msg_type, dlm_send_one_domain_exit() argument
585 msg_type, node); dlm_send_one_domain_exit()
590 status = o2net_send_message(msg_type, dlm->key, &leave_msg, dlm_send_one_domain_exit()
594 "to node %u on domain %s\n", status, msg_type, node, dlm_send_one_domain_exit()
H A Ddlmcommon.h934 int msg_type,
/linux-4.1.27/fs/ecryptfs/
H A Dmiscdev.c149 * @msg_type: Type of message
160 struct ecryptfs_msg_ctx *msg_ctx, u8 msg_type, ecryptfs_send_miscdev()
177 msg_ctx->type = msg_type; ecryptfs_send_miscdev()
159 ecryptfs_send_miscdev(char *data, size_t data_size, struct ecryptfs_msg_ctx *msg_ctx, u8 msg_type, u16 msg_flags, struct ecryptfs_daemon *daemon) ecryptfs_send_miscdev() argument
H A Dmessaging.c277 ecryptfs_send_message_locked(char *data, int data_len, u8 msg_type, ecryptfs_send_message_locked() argument
299 rc = ecryptfs_send_miscdev(data, data_len, *msg_ctx, msg_type, 0, ecryptfs_send_message_locked()
H A Decryptfs_kernel.h690 struct ecryptfs_msg_ctx *msg_ctx, u8 msg_type,
/linux-4.1.27/drivers/media/usb/siano/
H A Dsmsusb.c124 smscore_translate_msg(phdr->msg_type), smsusb_onresponse()
125 phdr->msg_type, phdr->msg_length); smsusb_onresponse()
212 smscore_translate_msg(phdr->msg_type), phdr->msg_type, smsusb_sendrequest()
/linux-4.1.27/arch/x86/include/asm/uv/
H A Duv_bau.h185 /* see msg_type: */
275 unsigned int msg_type:3; /* software type of the member in struct:uv1_bau_msg_header
344 unsigned int msg_type:3; /* software type of the member in struct:uv2_3_bau_msg_header
449 unsigned short msg_type:3; /* software message type */ member in struct:bau_pq_entry
/linux-4.1.27/drivers/gpu/drm/radeon/
H A Dradeon_uvd.c424 int32_t *msg, msg_type, handle; radeon_uvd_cs_msg() local
453 msg_type = msg[1]; radeon_uvd_cs_msg()
461 switch (msg_type) { radeon_uvd_cs_msg()
520 DRM_ERROR("Illegal UVD message type (%d)!\n", msg_type); radeon_uvd_cs_msg()
/linux-4.1.27/arch/powerpc/include/asm/
H A Dopal.h218 extern int opal_message_notifier_register(enum opal_msg_type msg_type,
220 extern int opal_message_notifier_unregister(enum opal_msg_type msg_type,
H A Dopal-api.h359 __be32 msg_type; member in struct:opal_msg
/linux-4.1.27/drivers/net/wireless/rsi/
H A Drsi_91x_mgmt.c1380 u16 msg_type = (msg[2]); rsi_mgmt_pkt_recv() local
1384 __func__, msg_len, msg_type); rsi_mgmt_pkt_recv()
1386 if (msg_type == TA_CONFIRM_TYPE) { rsi_mgmt_pkt_recv()
1388 } else if (msg_type == CARD_READY_IND) { rsi_mgmt_pkt_recv()
1402 } else if (msg_type == TX_STATUS_IND) { rsi_mgmt_pkt_recv()
1409 return rsi_mgmt_pkt_to_core(common, msg, msg_len, msg_type); rsi_mgmt_pkt_recv()
/linux-4.1.27/net/netfilter/
H A Dnf_tables_api.c109 static struct nft_trans *nft_trans_alloc(struct nft_ctx *ctx, int msg_type, nft_trans_alloc() argument
118 trans->msg_type = msg_type; nft_trans_alloc()
142 static int nft_trans_table_add(struct nft_ctx *ctx, int msg_type) nft_trans_table_add() argument
146 trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_table)); nft_trans_table_add()
150 if (msg_type == NFT_MSG_NEWTABLE) nft_trans_table_add()
169 static int nft_trans_chain_add(struct nft_ctx *ctx, int msg_type) nft_trans_chain_add() argument
173 trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_chain)); nft_trans_chain_add()
177 if (msg_type == NFT_MSG_NEWCHAIN) nft_trans_chain_add()
240 static struct nft_trans *nft_trans_rule_add(struct nft_ctx *ctx, int msg_type, nft_trans_rule_add() argument
245 trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_rule)); nft_trans_rule_add()
289 static int nft_trans_set_add(struct nft_ctx *ctx, int msg_type, nft_trans_set_add() argument
294 trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_set)); nft_trans_set_add()
298 if (msg_type == NFT_MSG_NEWSET && ctx->nla[NFTA_SET_ID] != NULL) { nft_trans_set_add()
2326 if (trans->msg_type == NFT_MSG_NEWSET && nf_tables_set_lookup_byid()
3243 int msg_type, nft_trans_elem_alloc()
3248 trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_elem)); nft_trans_elem_alloc()
3795 switch (trans->msg_type) { nf_tables_commit_release()
3834 switch (trans->msg_type) { nf_tables_commit()
3932 switch (trans->msg_type) { nf_tables_abort_release()
3960 switch (trans->msg_type) { nf_tables_abort()
3242 nft_trans_elem_alloc(struct nft_ctx *ctx, int msg_type, struct nft_set *set) nft_trans_elem_alloc() argument
/linux-4.1.27/drivers/misc/sgi-xp/
H A Dxpc_uv.c673 int msg_type) xpc_send_activate_IRQ_uv()
683 msg_hdr->type = msg_type; xpc_send_activate_IRQ_uv()
729 size_t msg_size, int msg_type) xpc_send_activate_IRQ_part_uv()
733 ret = xpc_send_activate_IRQ_uv(part, msg, msg_size, msg_type); xpc_send_activate_IRQ_part_uv()
740 void *msg, size_t msg_size, int msg_type) xpc_send_activate_IRQ_ch_uv()
745 ret = xpc_send_activate_IRQ_uv(part, msg, msg_size, msg_type); xpc_send_activate_IRQ_ch_uv()
672 xpc_send_activate_IRQ_uv(struct xpc_partition *part, void *msg, size_t msg_size, int msg_type) xpc_send_activate_IRQ_uv() argument
728 xpc_send_activate_IRQ_part_uv(struct xpc_partition *part, void *msg, size_t msg_size, int msg_type) xpc_send_activate_IRQ_part_uv() argument
739 xpc_send_activate_IRQ_ch_uv(struct xpc_channel *ch, unsigned long *irq_flags, void *msg, size_t msg_size, int msg_type) xpc_send_activate_IRQ_ch_uv() argument
/linux-4.1.27/arch/x86/platform/uv/
H A Dtlb_uv.c239 (msg2->msg_type != MSG_NOOP)) { bau_process_retry_msg()
298 if (msg->msg_type == MSG_RETRY && bcp == bcp->uvhub_master) bau_process_message()
381 (msg->msg_type != MSG_NOOP)) { do_reset()
906 uv1_hdr->msg_type = MSG_REGULAR; uv_flush_send_and_wait()
908 uv2_3_hdr->msg_type = MSG_REGULAR; uv_flush_send_and_wait()
912 uv1_hdr->msg_type = MSG_RETRY; uv_flush_send_and_wait()
914 uv2_3_hdr->msg_type = MSG_RETRY; uv_flush_send_and_wait()
1814 /* in effect, all msg_type's are set to MSG_NOOP */
/linux-4.1.27/drivers/net/wireless/ath/wcn36xx/
H A Dsmd.c279 msg_body.header.msg_type = type; \
2093 switch (msg_header->msg_type) { wcn36xx_smd_rsp_process()
2149 msg_header->msg_type); wcn36xx_smd_rsp_process()
2160 msg_header->msg_type); wcn36xx_smd_rsp_process()
2178 switch (msg_header->msg_type) { wcn36xx_ind_smd_work()
2196 msg_header->msg_type); wcn36xx_ind_smd_work()
H A Dhal.h770 enum wcn36xx_hal_host_msg_type msg_type:16; member in struct:wcn36xx_hal_msg_header
2398 u16 msg_type; member in struct:wcn36xx_hal_stats_rsp_msg
/linux-4.1.27/drivers/scsi/dpt/
H A Ddpti_i2o.h114 u8 msg_type; member in struct:i2o_sys_tbl_entry
/linux-4.1.27/include/linux/
H A Drndis.h16 * Codes for "msg_type" field of rndis messages;
H A Dhyperv.h1227 u8 msg_type; member in struct:hyperv_service_callback
/linux-4.1.27/include/uapi/linux/
H A Di2o-dev.h235 __u8 msg_type; member in struct:_i2o_status_block
/linux-4.1.27/drivers/net/wireless/
H A Dray_cs.c87 UCHAR msg_type, unsigned char *data);
878 UCHAR msg_type) ray_hw_xmit()
906 if (msg_type == DATA_TYPE) { ray_hw_xmit()
913 ray_build_header(local, ptx, msg_type, data); ray_hw_xmit()
986 UCHAR msg_type, unsigned char *data) ray_build_header()
988 writeb(PROTOCOL_VER | msg_type, &ptx->mac.frame_ctl_1); ray_build_header()
877 ray_hw_xmit(unsigned char *data, int len, struct net_device *dev, UCHAR msg_type) ray_hw_xmit() argument
985 ray_build_header(ray_dev_t *local, struct tx_msg __iomem *ptx, UCHAR msg_type, unsigned char *data) ray_build_header() argument
H A Drndis_wlan.c733 u.get->msg_type = cpu_to_le32(RNDIS_MSG_QUERY); rndis_query_oid()
817 u.set->msg_type = cpu_to_le32(RNDIS_MSG_SET); rndis_set_oid()
859 reset->msg_type = cpu_to_le32(RNDIS_MSG_RESET); rndis_reset()
/linux-4.1.27/arch/x86/include/asm/
H A Dapic.h240 extern int setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask);
/linux-4.1.27/scripts/
H A Dcheckpatch.pl2366 my $msg_type = \&WARN;
2367 $msg_type = \&CHK if ($file);
2368 if (&{$msg_type}("TYPO_SPELLING",
2403 my $msg_type = \&ERROR;
2404 $msg_type = \&CHK if ($file);
2405 &{$msg_type}("FSF_MAILING_ADDRESS",
3858 my $msg_type = \&ERROR;
3859 $msg_type = \&CHK if (($op eq '?:' || $op eq '?' || $op eq ':') && $ctx =~ /VxV/);
3861 if (&{$msg_type}("SPACING",
/linux-4.1.27/drivers/md/
H A Dmd-cluster.c71 enum msg_type { enum
789 static int resync_send(struct mddev *mddev, enum msg_type type, resync_send()
/linux-4.1.27/drivers/staging/i2o/
H A Diop.c879 systab->iops[count].msg_type = sb->msg_type; i2o_systab_build()
H A Di2o.h592 u8 msg_type; member in struct:i2o_sys_tbl_entry
H A Di2o_proc.c611 switch (sb->msg_type) { i2o_seq_show_status()
/linux-4.1.27/include/net/netfilter/
H A Dnf_tables.h969 * @msg_type: message type
975 int msg_type; member in struct:nft_trans
/linux-4.1.27/drivers/scsi/aic7xxx/
H A Daic7xxx_core.c1192 ahc->msg_type = MSG_TYPE_INITIATOR_MSGOUT; ahc_handle_seqint()
1252 if (ahc->msg_type == MSG_TYPE_NONE) { ahc_handle_seqint()
1285 ahc->msg_type = ahc_handle_seqint()
1293 ahc->msg_type = ahc_handle_seqint()
1705 if (ahc->msg_type != MSG_TYPE_NONE) ahc_handle_scsiint()
2954 ahc->msg_type = MSG_TYPE_INITIATOR_MSGOUT; ahc_setup_initiator_msgout()
3124 ahc->msg_type = MSG_TYPE_NONE; ahc_clear_msg_state()
3221 ahc->msg_type = MSG_TYPE_INITIATOR_MSGOUT; ahc_handle_proto_violation()
3246 switch (ahc->msg_type) { ahc_handle_message_phase()
3280 ahc->msg_type = MSG_TYPE_INITIATOR_MSGIN; ahc_handle_message_phase()
3354 ahc->msg_type = MSG_TYPE_INITIATOR_MSGOUT; ahc_handle_message_phase()
3432 ahc->msg_type = MSG_TYPE_TARGET_MSGOUT; ahc_handle_message_phase()
3503 ahc->msg_type = MSG_TYPE_TARGET_MSGIN; ahc_handle_message_phase()
4395 ahc->msg_type = MSG_TYPE_TARGET_MSGIN; ahc_setup_target_msgin()
H A Daic79xx_core.c2032 ahd->msg_type = MSG_TYPE_INITIATOR_MSGOUT; ahd_handle_seqint()
2077 if (ahd->msg_type == MSG_TYPE_NONE) { ahd_handle_seqint()
2105 ahd->msg_type = ahd_handle_seqint()
2113 ahd->msg_type = ahd_handle_seqint()
2161 ahd->msg_type = MSG_TYPE_INITIATOR_MSGOUT; ahd_handle_seqint()
3405 ahd->msg_type = MSG_TYPE_INITIATOR_MSGOUT; ahd_handle_proto_violation()
3997 if (ahd->msg_type != MSG_TYPE_NONE) { ahd_set_syncrate()
4419 ahd->msg_type = MSG_TYPE_INITIATOR_MSGOUT; ahd_setup_initiator_msgout()
4430 ahd->msg_type = MSG_TYPE_INITIATOR_MSGOUT; ahd_setup_initiator_msgout()
4514 ahd->msg_type = MSG_TYPE_INITIATOR_MSGOUT; ahd_setup_initiator_msgout()
4695 ahd->msg_type = MSG_TYPE_NONE; ahd_clear_msg_state()
4728 switch (ahd->msg_type) { ahd_handle_message_phase()
4762 ahd->msg_type = MSG_TYPE_INITIATOR_MSGIN; ahd_handle_message_phase()
4848 ahd->msg_type = MSG_TYPE_INITIATOR_MSGOUT; ahd_handle_message_phase()
4931 ahd->msg_type = MSG_TYPE_TARGET_MSGOUT; ahd_handle_message_phase()
5007 ahd->msg_type = MSG_TYPE_TARGET_MSGIN; ahd_handle_message_phase()
6005 ahd->msg_type = MSG_TYPE_TARGET_MSGIN; ahd_setup_target_msgin()
H A Daic79xx.h1197 ahd_msg_type msg_type; member in struct:ahd_softc
H A Daic7xxx.h1035 ahc_msg_type msg_type; member in struct:ahc_softc
/linux-4.1.27/arch/mips/include/asm/sn/sn0/
H A Dhubmd.h586 msg_type: 8, /* 47-40: type of request */ member in struct:proto_error_reg
/linux-4.1.27/drivers/scsi/
H A Dscsi_transport_iscsi.c2798 struct iscsi_uevent *ev, int msg_type) iscsi_if_ep_connect()
2808 if (msg_type == ISCSI_UEVENT_TRANSPORT_EP_CONNECT_THROUGH_HOST) { iscsi_if_ep_connect()
2859 struct iscsi_uevent *ev, int msg_type) iscsi_if_transport_ep()
2864 switch (msg_type) { iscsi_if_transport_ep()
2867 rc = iscsi_if_ep_connect(transport, ev, msg_type); iscsi_if_transport_ep()
2797 iscsi_if_ep_connect(struct iscsi_transport *transport, struct iscsi_uevent *ev, int msg_type) iscsi_if_ep_connect() argument
2858 iscsi_if_transport_ep(struct iscsi_transport *transport, struct iscsi_uevent *ev, int msg_type) iscsi_if_transport_ep() argument
H A Ddpt_i2o.c3147 sys_tbl->iops[count].msg_type = pHba->status_block->msg_type; adpt_i2o_build_sys_table()
H A Dadvansys.c491 uchar msg_type; member in struct:ext_msg
6490 sdtr_buf.msg_type = EXTENDED_MESSAGE; AscMsgOutSDTR()
6620 if (ext_msg.msg_type == EXTENDED_MESSAGE && AscIsrChipHalted()
6700 } else if (ext_msg.msg_type == EXTENDED_MESSAGE && AscIsrChipHalted()
6718 ext_msg.msg_type = MESSAGE_REJECT; AscIsrChipHalted()
6794 if ((out_msg.msg_type == EXTENDED_MESSAGE) && AscIsrChipHalted()
/linux-4.1.27/drivers/net/wireless/ath/ath6kl/
H A Dwmi.h2235 u8 msg_type; member in struct:wmi_tx_complete_event
2540 u8 msg_type, u32 flags,
H A Dwmi.c235 u8 msg_type, u32 flags, ath6kl_wmi_data_hdr_add()
256 data_hdr->info = msg_type << WMI_DATA_HDR_MSG_TYPE_SHIFT; ath6kl_wmi_data_hdr_add()
488 evt->num_msg, evt->msg_len, evt->msg_type); ath6kl_wmi_tx_complete_event_rx()
234 ath6kl_wmi_data_hdr_add(struct wmi *wmi, struct sk_buff *skb, u8 msg_type, u32 flags, enum wmi_data_hdr_data_type data_type, u8 meta_ver, void *tx_meta_info, u8 if_idx) ath6kl_wmi_data_hdr_add() argument
/linux-4.1.27/arch/x86/kernel/apic/
H A Dapic.c421 int setup_APIC_eilvt(u8 offset, u8 vector, u8 msg_type, u8 mask) setup_APIC_eilvt() argument
426 new = (mask << 16) | (msg_type << 8) | vector; setup_APIC_eilvt()
/linux-4.1.27/drivers/staging/lustre/include/linux/lnet/
H A Dlib-types.h181 __u32 msg_type; member in struct:lnet_msg
/linux-4.1.27/drivers/scsi/bnx2i/
H A Dbnx2i_hwi.c2680 static int bnx2i_send_nl_mesg(void *context, u32 msg_type, bnx2i_send_nl_mesg() argument
2690 msg_type, buf, buflen); bnx2i_send_nl_mesg()
/linux-4.1.27/drivers/scsi/bfa/
H A Dbfa_ioc.c6248 bfa_fru_write_send(void *cbarg, enum bfi_fru_h2i_msgs msg_type) bfa_fru_write_send() argument
6266 bfi_h2i_set(msg->mh, BFI_MC_FRU, msg_type, bfa_ioc_portid(fru->ioc)); bfa_fru_write_send()
6282 bfa_fru_read_send(void *cbarg, enum bfi_fru_h2i_msgs msg_type) bfa_fru_read_send() argument
6293 bfi_h2i_set(msg->mh, BFI_MC_FRU, msg_type, bfa_ioc_portid(fru->ioc)); bfa_fru_read_send()
/linux-4.1.27/arch/ia64/kernel/
H A Dperfmon.c805 DPRINT(("ctx=%p head=%d tail=%d type=%d\n", ctx, ctx->ctx_msgq_head, ctx->ctx_msgq_tail, msg->pfm_gen_msg.msg_type)); pfm_get_next_msg()
1626 DPRINT(("fd=%d type=%d\n", msg->pfm_gen_msg.msg_ctx_fd, msg->pfm_gen_msg.msg_type)); pfm_read()
5127 msg->pfm_ovfl_msg.msg_type = PFM_MSG_OVFL; pfm_ovfl_notify_user()
5159 msg->pfm_end_msg.msg_type = PFM_MSG_END; pfm_end_notify_user()
/linux-4.1.27/drivers/staging/lustre/lnet/klnds/socklnd/
H A Dsocklnd_cb.c926 int type = lntmsg->msg_type; ksocknal_send()
/linux-4.1.27/drivers/crypto/caam/
H A Dcaamalg.c139 static inline void aead_append_src_dst(u32 *desc, u32 msg_type) aead_append_src_dst() argument
143 KEY_VLF | msg_type | FIFOLD_TYPE_LASTBOTH); aead_append_src_dst()
/linux-4.1.27/drivers/staging/lustre/lnet/klnds/o2iblnd/
H A Do2iblnd_cb.c1460 int type = lntmsg->msg_type; kiblnd_send()

Completed in 9391 milliseconds