Home
last modified time | relevance | path

Searched full:reply (Results 1 – 25 of 2082) sorted by relevance

12345678910>>...84

/kernel/linux/linux-6.6/Documentation/netlink/specs/
Ddevlink.yaml270 reply: &get-reply
279 reply: *get-reply
297 reply:
303 reply:
325 reply: &sb-get-reply
331 reply: *sb-get-reply
352 reply: &sb-pool-get-reply
358 reply: *sb-pool-get-reply
380 reply: &sb-port-pool-get-reply
386 reply: *sb-port-pool-get-reply
[all …]
/kernel/linux/linux-5.10/sound/soc/sof/intel/
Dhda-ipc.c25 * interrupt and send reply msg to dsp in hda_dsp_ipc_host_done()
42 * set DONE bit - tell DSP we have received the reply msg in hda_dsp_ipc_dsp_done()
43 * from DSP, and processed it, don't send more reply to host in hda_dsp_ipc_dsp_done()
71 struct sof_ipc_reply reply; in hda_dsp_ipc_get_reply() local
76 * Sometimes, there is unexpected reply ipc arriving. The reply in hda_dsp_ipc_get_reply()
89 * memory windows are powered off before sending IPC reply, in hda_dsp_ipc_get_reply()
93 reply.error = 0; in hda_dsp_ipc_get_reply()
94 reply.hdr.cmd = SOF_IPC_GLB_REPLY; in hda_dsp_ipc_get_reply()
95 reply.hdr.size = sizeof(reply); in hda_dsp_ipc_get_reply()
96 memcpy(msg->reply_data, &reply, sizeof(reply)); in hda_dsp_ipc_get_reply()
[all …]
/kernel/linux/linux-5.10/sound/soc/sof/
Dprobe.c32 struct sof_ipc_reply reply; in sof_ipc_probe_init() local
46 &reply, sizeof(reply)); in sof_ipc_probe_init()
63 struct sof_ipc_reply reply; in sof_ipc_probe_deinit() local
69 &reply, sizeof(reply)); in sof_ipc_probe_deinit()
77 struct sof_ipc_probe_info_params *reply; in sof_ipc_probe_info() local
84 reply = kzalloc(SOF_IPC_MSG_MAX_SIZE, GFP_KERNEL); in sof_ipc_probe_info()
85 if (!reply) in sof_ipc_probe_info()
91 msg.rhdr.hdr.size, reply, SOF_IPC_MSG_MAX_SIZE); in sof_ipc_probe_info()
92 if (ret < 0 || reply->rhdr.error < 0) in sof_ipc_probe_info()
95 if (!reply->num_elems) in sof_ipc_probe_info()
[all …]
/kernel/linux/linux-5.10/net/openvswitch/
Dmeter.c235 static int ovs_meter_cmd_reply_stats(struct sk_buff *reply, u32 meter_id, in ovs_meter_cmd_reply_stats() argument
242 if (nla_put_u32(reply, OVS_METER_ATTR_ID, meter_id)) in ovs_meter_cmd_reply_stats()
245 if (nla_put(reply, OVS_METER_ATTR_STATS, in ovs_meter_cmd_reply_stats()
249 if (nla_put_u64_64bit(reply, OVS_METER_ATTR_USED, meter->used, in ovs_meter_cmd_reply_stats()
253 nla = nla_nest_start_noflag(reply, OVS_METER_ATTR_BANDS); in ovs_meter_cmd_reply_stats()
262 band_nla = nla_nest_start_noflag(reply, OVS_BAND_ATTR_UNSPEC); in ovs_meter_cmd_reply_stats()
263 if (!band_nla || nla_put(reply, OVS_BAND_ATTR_STATS, in ovs_meter_cmd_reply_stats()
267 nla_nest_end(reply, band_nla); in ovs_meter_cmd_reply_stats()
269 nla_nest_end(reply, nla); in ovs_meter_cmd_reply_stats()
281 struct sk_buff *reply; in ovs_meter_cmd_features() local
[all …]
/kernel/linux/linux-6.6/net/openvswitch/
Dmeter.c232 static int ovs_meter_cmd_reply_stats(struct sk_buff *reply, u32 meter_id, in ovs_meter_cmd_reply_stats() argument
239 if (nla_put_u32(reply, OVS_METER_ATTR_ID, meter_id)) in ovs_meter_cmd_reply_stats()
242 if (nla_put(reply, OVS_METER_ATTR_STATS, in ovs_meter_cmd_reply_stats()
246 if (nla_put_u64_64bit(reply, OVS_METER_ATTR_USED, meter->used, in ovs_meter_cmd_reply_stats()
250 nla = nla_nest_start_noflag(reply, OVS_METER_ATTR_BANDS); in ovs_meter_cmd_reply_stats()
259 band_nla = nla_nest_start_noflag(reply, OVS_BAND_ATTR_UNSPEC); in ovs_meter_cmd_reply_stats()
260 if (!band_nla || nla_put(reply, OVS_BAND_ATTR_STATS, in ovs_meter_cmd_reply_stats()
264 nla_nest_end(reply, band_nla); in ovs_meter_cmd_reply_stats()
266 nla_nest_end(reply, nla); in ovs_meter_cmd_reply_stats()
278 struct sk_buff *reply; in ovs_meter_cmd_features() local
[all …]
/kernel/linux/linux-5.10/drivers/gpu/drm/vmwgfx/
Dvmwgfx_msg.c198 * @reply: Pointer to buffer holding reply.
199 * @reply_len: Length of the reply.
204 static unsigned long vmw_port_hb_in(struct rpc_channel *channel, char *reply, in vmw_port_hb_in() argument
214 di = (uintptr_t) reply; in vmw_port_hb_in()
243 memcpy(reply, &ebx, bytes); in vmw_port_hb_in()
245 reply += bytes; in vmw_port_hb_in()
316 char *reply; in vmw_recv_msg() local
338 DRM_ERROR("Failed to get reply size for host message.\n"); in vmw_recv_msg()
342 /* No reply available. This is okay. */ in vmw_recv_msg()
347 reply = kzalloc(reply_len + 1, GFP_KERNEL); in vmw_recv_msg()
[all …]
/kernel/linux/linux-6.6/net/bridge/
Dbr_arp_nd_proxy.c184 /* its our local ip, so don't proxy reply in br_do_proxy_suppress_arp()
255 struct sk_buff *reply; in br_nd_send() local
270 reply = alloc_skb(len, GFP_ATOMIC); in br_nd_send()
271 if (!reply) in br_nd_send()
274 reply->protocol = htons(ETH_P_IPV6); in br_nd_send()
275 reply->dev = dev; in br_nd_send()
276 skb_reserve(reply, LL_RESERVED_SPACE(dev)); in br_nd_send()
277 skb_push(reply, sizeof(struct ethhdr)); in br_nd_send()
278 skb_set_mac_header(reply, 0); in br_nd_send()
287 kfree_skb(reply); in br_nd_send()
[all …]
/kernel/linux/linux-5.10/net/bridge/
Dbr_arp_nd_proxy.c184 /* its our local ip, so don't proxy reply in br_do_proxy_suppress_arp()
255 struct sk_buff *reply; in br_nd_send() local
270 reply = alloc_skb(len, GFP_ATOMIC); in br_nd_send()
271 if (!reply) in br_nd_send()
274 reply->protocol = htons(ETH_P_IPV6); in br_nd_send()
275 reply->dev = dev; in br_nd_send()
276 skb_reserve(reply, LL_RESERVED_SPACE(dev)); in br_nd_send()
277 skb_push(reply, sizeof(struct ethhdr)); in br_nd_send()
278 skb_set_mac_header(reply, 0); in br_nd_send()
287 kfree_skb(reply); in br_nd_send()
[all …]
/kernel/linux/linux-6.6/drivers/thunderbolt/
Dicm.c54 * @reply: Reply from ICM firmware is placed here
59 struct icm_usb4_switch_op_response reply; member
458 struct icm_fr_pkg_driver_ready_response reply; in icm_fr_driver_ready() local
464 memset(&reply, 0, sizeof(reply)); in icm_fr_driver_ready()
465 ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), in icm_fr_driver_ready()
471 *security_level = reply.security_level & ICM_FR_SLEVEL_MASK; in icm_fr_driver_ready()
479 struct icm_fr_pkg_approve_device reply; in icm_fr_approve_switch() local
488 memset(&reply, 0, sizeof(reply)); in icm_fr_approve_switch()
490 ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), in icm_fr_approve_switch()
495 if (reply.hdr.flags & ICM_FLAGS_ERROR) { in icm_fr_approve_switch()
[all …]
/kernel/linux/linux-6.6/sound/soc/sof/amd/
Dacp-ipc.c99 struct sof_ipc_reply reply; in acp_dsp_ipc_get_reply() local
105 * Sometimes, there is unexpected reply ipc arriving. The reply in acp_dsp_ipc_get_reply()
117 * memory windows are powered off before sending IPC reply, in acp_dsp_ipc_get_reply()
121 reply.error = 0; in acp_dsp_ipc_get_reply()
122 reply.hdr.cmd = SOF_IPC_GLB_REPLY; in acp_dsp_ipc_get_reply()
123 reply.hdr.size = sizeof(reply); in acp_dsp_ipc_get_reply()
124 memcpy(msg->reply_data, &reply, sizeof(reply)); in acp_dsp_ipc_get_reply()
127 /* get IPC reply from DSP in the mailbox */ in acp_dsp_ipc_get_reply()
128 acp_mailbox_read(sdev, offset, &reply, sizeof(reply)); in acp_dsp_ipc_get_reply()
129 if (reply.error < 0) { in acp_dsp_ipc_get_reply()
[all …]
/kernel/linux/linux-5.10/tools/testing/selftests/net/forwarding/
Drouter_broadcast.sh174 log_info "ping $dip, expected reply from $from"
188 log_test "h1 -> net2: reply from r1 (not forwarding)"
190 log_test "h1 -> net3: reply from r1 (not forwarding)"
192 log_test "h1 -> net1: reply from r1 (not dropping)"
194 log_test "h1 -> 255.255.255.255: reply from r1 (not forwarding)"
197 log_test "h2 -> net1: reply from r1 (not forwarding)"
199 log_test "h2 -> net3: reply from r1 (not forwarding)"
201 log_test "h2 -> net2: reply from r1 (not dropping)"
203 log_test "h2 -> 255.255.255.255: reply from r1 (not forwarding)"
209 log_test "h1 -> net2: reply from h2 (forwarding)"
[all …]
/kernel/linux/linux-6.6/tools/testing/selftests/net/forwarding/
Drouter_broadcast.sh174 log_info "ping $dip, expected reply from $from"
188 log_test "h1 -> net2: reply from r1 (not forwarding)"
190 log_test "h1 -> net3: reply from r1 (not forwarding)"
192 log_test "h1 -> net1: reply from r1 (not dropping)"
194 log_test "h1 -> 255.255.255.255: reply from r1 (not forwarding)"
197 log_test "h2 -> net1: reply from r1 (not forwarding)"
199 log_test "h2 -> net3: reply from r1 (not forwarding)"
201 log_test "h2 -> net2: reply from r1 (not dropping)"
203 log_test "h2 -> 255.255.255.255: reply from r1 (not forwarding)"
209 log_test "h1 -> net2: reply from h2 (forwarding)"
[all …]
/kernel/linux/linux-5.10/sound/soc/intel/catpt/
Dipc.c45 struct catpt_ipc_msg *reply) in catpt_ipc_msg_init() argument
50 ipc->rx.size = reply ? reply->size : 0; in catpt_ipc_msg_init()
79 /* wait for delayed reply */ in catpt_wait_msg_completion()
87 struct catpt_ipc_msg *reply, int timeout) in catpt_dsp_do_send_msg() argument
96 (reply && reply->size > ipc->config.outbox_size)) in catpt_dsp_do_send_msg()
100 catpt_ipc_msg_init(ipc, reply); in catpt_dsp_do_send_msg()
114 if (reply) { in catpt_dsp_do_send_msg()
115 reply->header = ipc->rx.header; in catpt_dsp_do_send_msg()
117 if (!ret && reply->data) in catpt_dsp_do_send_msg()
118 memcpy(reply->data, ipc->rx.data, reply->size); in catpt_dsp_do_send_msg()
[all …]
/kernel/linux/linux-6.6/sound/soc/intel/catpt/
Dipc.c45 struct catpt_ipc_msg *reply) in catpt_ipc_msg_init() argument
50 ipc->rx.size = reply ? reply->size : 0; in catpt_ipc_msg_init()
79 /* wait for delayed reply */ in catpt_wait_msg_completion()
87 struct catpt_ipc_msg *reply, int timeout) in catpt_dsp_do_send_msg() argument
96 (reply && reply->size > ipc->config.outbox_size)) in catpt_dsp_do_send_msg()
100 catpt_ipc_msg_init(ipc, reply); in catpt_dsp_do_send_msg()
114 if (reply) { in catpt_dsp_do_send_msg()
115 reply->header = ipc->rx.header; in catpt_dsp_do_send_msg()
117 if (!ret && reply->data) in catpt_dsp_do_send_msg()
118 memcpy(reply->data, ipc->rx.data, reply->size); in catpt_dsp_do_send_msg()
[all …]
/kernel/linux/linux-6.6/drivers/net/ethernet/netronome/nfp/bpf/
Dcmsg.c60 struct cmsg_reply_map_simple *reply) in nfp_bpf_ctrl_rc_to_errno() argument
74 rc = be32_to_cpu(reply->rc); in nfp_bpf_ctrl_rc_to_errno()
86 struct cmsg_reply_map_alloc_tbl *reply; in nfp_bpf_ctrl_alloc_map() local
104 sizeof(*reply)); in nfp_bpf_ctrl_alloc_map()
108 reply = (void *)skb->data; in nfp_bpf_ctrl_alloc_map()
109 err = nfp_bpf_ctrl_rc_to_errno(bpf, &reply->reply_hdr); in nfp_bpf_ctrl_alloc_map()
113 tid = be32_to_cpu(reply->tid); in nfp_bpf_ctrl_alloc_map()
124 struct cmsg_reply_map_free_tbl *reply; in nfp_bpf_ctrl_free_map() local
139 sizeof(*reply)); in nfp_bpf_ctrl_free_map()
145 reply = (void *)skb->data; in nfp_bpf_ctrl_free_map()
[all …]
/kernel/linux/linux-5.10/drivers/net/ethernet/netronome/nfp/bpf/
Dcmsg.c58 struct cmsg_reply_map_simple *reply) in nfp_bpf_ctrl_rc_to_errno() argument
72 rc = be32_to_cpu(reply->rc); in nfp_bpf_ctrl_rc_to_errno()
84 struct cmsg_reply_map_alloc_tbl *reply; in nfp_bpf_ctrl_alloc_map() local
102 sizeof(*reply)); in nfp_bpf_ctrl_alloc_map()
106 reply = (void *)skb->data; in nfp_bpf_ctrl_alloc_map()
107 err = nfp_bpf_ctrl_rc_to_errno(bpf, &reply->reply_hdr); in nfp_bpf_ctrl_alloc_map()
111 tid = be32_to_cpu(reply->tid); in nfp_bpf_ctrl_alloc_map()
122 struct cmsg_reply_map_free_tbl *reply; in nfp_bpf_ctrl_free_map() local
137 sizeof(*reply)); in nfp_bpf_ctrl_free_map()
143 reply = (void *)skb->data; in nfp_bpf_ctrl_free_map()
[all …]
/kernel/linux/linux-5.10/drivers/thunderbolt/
Dicm.c442 struct icm_fr_pkg_driver_ready_response reply; in icm_fr_driver_ready() local
448 memset(&reply, 0, sizeof(reply)); in icm_fr_driver_ready()
449 ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), in icm_fr_driver_ready()
455 *security_level = reply.security_level & ICM_FR_SLEVEL_MASK; in icm_fr_driver_ready()
463 struct icm_fr_pkg_approve_device reply; in icm_fr_approve_switch() local
472 memset(&reply, 0, sizeof(reply)); in icm_fr_approve_switch()
474 ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply), in icm_fr_approve_switch()
479 if (reply.hdr.flags & ICM_FLAGS_ERROR) { in icm_fr_approve_switch()
490 struct icm_fr_pkg_add_device_key_response reply; in icm_fr_add_switch_key() local
500 memset(&reply, 0, sizeof(reply)); in icm_fr_add_switch_key()
[all …]
/kernel/linux/linux-6.6/Documentation/userspace-api/media/cec/
Dcec-ioc-receive.rst55 3. the reply to an earlier non-blocking transmit (the ``sequence`` field will
64 of 2-byte messages). Note that the CEC kernel framework will also reply
71 If a non-blocking transmit also specified waiting for a reply, then
72 the reply will arrive in a later message. The ``sequence`` field can
115 filled in by the driver with the length of the reply message if ``reply`` was set.
122 then it will be replaced by 1000 if the ``reply`` is non-zero or
123 ignored if ``reply`` is 0.
131 In addition, if a non-blocking transmit will wait for a reply (ii.e. ``timeout``
132 was not 0), then the ``sequence`` field of the reply will be set to the sequence
143 the payload of the reply message if ``timeout`` was set.
[all …]
/kernel/linux/linux-5.10/net/sunrpc/xprtrdma/
Dsvc_rdma_sendto.c48 * RPC server when an RPC Reply is ready to be transmitted to a client.
51 * XDR-encoded RPC Reply message. sendto must construct the RPC-over-RDMA
52 * transport header, post all Write WRs needed for this Reply, then post
56 * svc_rdma_sendto must fully transmit the Reply before returning, as
64 * The I/O that performs Reply transmission is asynchronous, and may
79 * The ownership of all of the Reply's pages are transferred into that
83 * Send completion handler finally releases the Reply's pages.
94 * handler releases the Reply's pages.
96 * the Reply's pages.
345 * svc_rdma_encode_read_list - Encode RPC Reply's Read chunk list
[all …]
/kernel/linux/linux-5.10/drivers/mfd/
Drave-sp.c93 * struct rave_sp_reply - Reply as per RAVE device protocol
95 * @length: Expected reply length
96 * @data: Buffer to store reply payload in
97 * @code: Expected reply code
98 * @ackid: Expected reply ACK ID
99 * @received: Successful reply reception completion
177 * @ackid: ACK ID used in last reply sent to the device
179 * @reply_lock: Lock protecting @reply
180 * @reply: Pointer to memory to store reply payload
194 struct rave_sp_reply *reply; member
[all …]
/kernel/linux/linux-6.6/drivers/mfd/
Drave-sp.c93 * struct rave_sp_reply - Reply as per RAVE device protocol
95 * @length: Expected reply length
96 * @data: Buffer to store reply payload in
97 * @code: Expected reply code
98 * @ackid: Expected reply ACK ID
99 * @received: Successful reply reception completion
177 * @ackid: ACK ID used in last reply sent to the device
179 * @reply_lock: Lock protecting @reply
180 * @reply: Pointer to memory to store reply payload
194 struct rave_sp_reply *reply; member
[all …]
/kernel/linux/linux-6.6/drivers/net/wireless/ath/wil6210/
Dwmi.c2042 u16 reply_id, void *reply, u16 reply_size, int to_msec) in wmi_call() argument
2053 wil->reply_buf = reply; in wmi_call()
2137 } __packed reply = { in wmi_led_cfg() local
2155 WMI_LED_CFG_DONE_EVENTID, &reply, sizeof(reply), in wmi_led_cfg()
2160 if (reply.evt.status) { in wmi_led_cfg()
2162 led_id, le32_to_cpu(reply.evt.status)); in wmi_led_cfg()
2182 } __packed reply = { in wmi_rbufcap_cfg() local
2187 WMI_RBUFCAP_CFG_EVENTID, &reply, sizeof(reply), in wmi_rbufcap_cfg()
2192 if (reply.evt.status != WMI_FW_STATUS_SUCCESS) { in wmi_rbufcap_cfg()
2194 reply.evt.status); in wmi_rbufcap_cfg()
[all …]
/kernel/linux/linux-5.10/drivers/net/wireless/ath/wil6210/
Dwmi.c2041 u16 reply_id, void *reply, u16 reply_size, int to_msec) in wmi_call() argument
2052 wil->reply_buf = reply; in wmi_call()
2136 } __packed reply = { in wmi_led_cfg() local
2154 WMI_LED_CFG_DONE_EVENTID, &reply, sizeof(reply), in wmi_led_cfg()
2159 if (reply.evt.status) { in wmi_led_cfg()
2161 led_id, le32_to_cpu(reply.evt.status)); in wmi_led_cfg()
2181 } __packed reply = { in wmi_rbufcap_cfg() local
2186 WMI_RBUFCAP_CFG_EVENTID, &reply, sizeof(reply), in wmi_rbufcap_cfg()
2191 if (reply.evt.status != WMI_FW_STATUS_SUCCESS) { in wmi_rbufcap_cfg()
2193 reply.evt.status); in wmi_rbufcap_cfg()
[all …]
/kernel/linux/linux-6.6/drivers/s390/crypto/
Dzcrypt_msgtype6.c30 #define CEXXC_MAX_ICA_RESPONSE_SIZE 0x77c /* max size type86 v2 reply */
545 * Copy results from a type 86 ICA reply message back to user space.
548 * @reply: reply AP message.
570 struct ap_message *reply, in convert_type86_ica() argument
574 struct type86x_reply *msg = reply->msg; in convert_type86_ica()
615 * Copy results from a type 86 XCRB reply message back to user space.
618 * @reply: reply AP message.
624 struct ap_message *reply, in convert_type86_xcrb() argument
627 struct type86_fmt2_msg *msg = reply->msg; in convert_type86_xcrb()
628 char *data = reply->msg; in convert_type86_xcrb()
[all …]
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/
Dcec-funcs.h46 int reply) in cec_msg_request_active_source() argument
51 msg->reply = reply ? CEC_MSG_ACTIVE_SOURCE : 0; in cec_msg_request_active_source()
68 int reply, in cec_msg_routing_change() argument
79 msg->reply = reply ? CEC_MSG_ROUTING_INFORMATION : 0; in cec_msg_routing_change()
106 static inline void cec_msg_record_off(struct cec_msg *msg, int reply) in cec_msg_record_off() argument
110 msg->reply = reply ? CEC_MSG_RECORD_STATUS : 0; in cec_msg_record_off()
254 int reply, in cec_msg_record_on() argument
278 msg->reply = reply ? CEC_MSG_RECORD_STATUS : 0; in cec_msg_record_on()
317 int reply) in cec_msg_record_tv_screen() argument
321 msg->reply = reply ? CEC_MSG_RECORD_ON : 0; in cec_msg_record_tv_screen()
[all …]

12345678910>>...84