Searched refs:reply (Results 1 - 25 of 296) sorted by relevance

1234567891011>>

/linux-master/sound/soc/sof/
H A Dsof-client-probes-ipc3.c107 struct sof_ipc_probe_info_params *reply; local
114 reply = kzalloc(max_msg_size, GFP_KERNEL);
115 if (!reply)
120 ret = sof_client_ipc_tx_message(cdev, &msg, reply, max_msg_size);
121 if (ret < 0 || reply->rhdr.error < 0)
124 if (!reply->num_elems)
128 bytes = sizeof(reply->dma[0]);
130 bytes = sizeof(reply->desc[0]);
131 bytes *= reply->num_elems;
132 *params = kmemdup(&reply
[all...]
/linux-master/net/openvswitch/
H A Dmeter.c232 static int ovs_meter_cmd_reply_stats(struct sk_buff *reply, u32 meter_id, argument
239 if (nla_put_u32(reply, OVS_METER_ATTR_ID, meter_id))
242 if (nla_put(reply, OVS_METER_ATTR_STATS,
246 if (nla_put_u64_64bit(reply, OVS_METER_ATTR_USED, meter->used,
250 nla = nla_nest_start_noflag(reply, OVS_METER_ATTR_BANDS);
259 band_nla = nla_nest_start_noflag(reply, OVS_BAND_ATTR_UNSPEC);
260 if (!band_nla || nla_put(reply, OVS_BAND_ATTR_STATS,
264 nla_nest_end(reply, band_nla);
266 nla_nest_end(reply, nla);
278 struct sk_buff *reply; local
410 struct sk_buff *reply; local
489 struct sk_buff *reply; local
542 struct sk_buff *reply; local
[all...]
/linux-master/net/bridge/
H A Dbr_arp_nd_proxy.c184 /* its our local ip, so don't proxy reply
255 struct sk_buff *reply; local
270 reply = alloc_skb(len, GFP_ATOMIC);
271 if (!reply)
274 reply->protocol = htons(ETH_P_IPV6);
275 reply->dev = dev;
276 skb_reserve(reply, LL_RESERVED_SPACE(dev));
277 skb_push(reply, sizeof(struct ethhdr));
278 skb_set_mac_header(reply, 0);
287 kfree_skb(reply);
[all...]
/linux-master/sound/soc/intel/catpt/
H A Dipc.c45 struct catpt_ipc_msg *reply)
50 ipc->rx.size = reply ? reply->size : 0;
79 /* wait for delayed reply */
87 struct catpt_ipc_msg *reply, int timeout)
96 (reply && reply->size > ipc->config.outbox_size))
100 catpt_ipc_msg_init(ipc, reply);
114 if (reply) {
115 reply
44 catpt_ipc_msg_init(struct catpt_ipc *ipc, struct catpt_ipc_msg *reply) argument
85 catpt_dsp_do_send_msg(struct catpt_dev *cdev, struct catpt_ipc_msg request, struct catpt_ipc_msg *reply, int timeout) argument
124 catpt_dsp_send_msg_timeout(struct catpt_dev *cdev, struct catpt_ipc_msg request, struct catpt_ipc_msg *reply, int timeout) argument
138 catpt_dsp_send_msg(struct catpt_dev *cdev, struct catpt_ipc_msg request, struct catpt_ipc_msg *reply) argument
[all...]
H A Dmessages.c17 struct catpt_ipc_msg request = {{0}}, reply; local
21 reply.size = sizeof(*version);
22 reply.data = version;
24 ret = catpt_dsp_send_msg(cdev, request, &reply);
58 struct catpt_ipc_msg request, reply; local
94 reply.size = sizeof(*sinfo);
95 reply.data = sinfo;
97 ret = catpt_dsp_send_msg(cdev, request, &reply);
146 struct catpt_ipc_msg request, reply; local
152 reply
166 struct catpt_ipc_msg request = {{0}}, reply; local
[all...]
/linux-master/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
H A Dvendor.c26 struct sk_buff *reply; local
81 reply = cfg80211_vendor_cmd_alloc_reply_skb(wiphy, payload);
82 if (NULL == reply) {
87 if (nla_put(reply, BRCMF_NLATTR_DATA, msglen, wr_pointer) ||
88 nla_put_u16(reply, BRCMF_NLATTR_LEN, msglen)) {
89 kfree_skb(reply);
94 ret = cfg80211_vendor_cmd_reply(reply);
/linux-master/drivers/net/ethernet/netronome/nfp/bpf/
H A Dcmsg.c58 struct cmsg_reply_map_simple *reply)
72 rc = be32_to_cpu(reply->rc);
84 struct cmsg_reply_map_alloc_tbl *reply; local
102 sizeof(*reply));
106 reply = (void *)skb->data;
107 err = nfp_bpf_ctrl_rc_to_errno(bpf, &reply->reply_hdr);
111 tid = be32_to_cpu(reply->tid);
122 struct cmsg_reply_map_free_tbl *reply; local
137 sizeof(*reply));
143 reply
57 nfp_bpf_ctrl_rc_to_errno(struct nfp_app_bpf *bpf, struct cmsg_reply_map_simple *reply) argument
166 nfp_bpf_ctrl_reply_key(struct nfp_app_bpf *bpf, struct cmsg_reply_map_op *reply, unsigned int n) argument
173 nfp_bpf_ctrl_reply_val(struct nfp_app_bpf *bpf, struct cmsg_reply_map_op *reply, unsigned int n) argument
205 struct cmsg_reply_map_op *reply; local
299 struct cmsg_reply_map_op *reply; local
[all...]
/linux-master/tools/net/ynl/
H A Dethtool.py39 def print_field(reply, *desc):
41 Pretty-print a set of fields from the reply. desc specifies the
45 return print_field(reply, *zip(reply.keys(), reply.keys()))
54 value = reply.get(field, None)
90 reply = ynl.dump(op_name, { 'header': {} } | extra)
91 if not reply:
94 for msg in reply:
223 reply
[all...]
/linux-master/tools/usb/usbip/src/
H A Dusbip_attach.c124 struct op_import_reply reply; local
129 memset(&reply, 0, sizeof(reply));
148 /* receive a reply */
156 rc = usbip_net_recv(sockfd, (void *) &reply, sizeof(reply));
162 PACK_OP_IMPORT_REPLY(0, &reply);
164 /* check the reply */
165 if (strncmp(reply.udev.busid, busid, SYSFS_BUS_ID_SIZE)) {
166 err("recv different busid %s", reply
[all...]
H A Dusbip_network.h31 uint32_t status; /* op_code status (for reply) */
74 #define PACK_OP_IMPORT_REPLY(pack, reply) do {\
75 usbip_net_pack_usb_device(pack, &(reply)->udev);\
97 #define PACK_OP_EXPORT_REPLY(pack, reply) do {\
118 #define PACK_OP_UNEXPORT_REPLY(pack, reply) do {\
159 #define PACK_OP_DEVLIST_REPLY(pack, reply) do {\
160 (reply)->ndev = usbip_net_pack_uint32_t(pack, (reply)->ndev);\
/linux-master/arch/um/drivers/
H A Dmconsole_user.c40 static int mconsole_reply_v0(struct mc_request *req, char *reply) argument
45 iov.iov_base = reply;
46 iov.iov_len = strlen(reply);
134 struct mconsole_reply reply; local
138 reply.err = err;
145 if (len == total) reply.more = more;
146 else reply.more = 1;
148 memcpy(reply.data, str, len);
149 reply.data[len] = '\0';
152 reply
[all...]
/linux-master/net/ethtool/
H A Deeprom.c54 struct eeprom_reply_data *reply)
56 struct net_device *dev = reply->base.dev;
78 reply->data = data;
79 reply->length = eeprom.len;
107 struct eeprom_reply_data *reply = MODULE_EEPROM_REPDATA(reply_base); local
130 reply->length = ret;
131 reply->data = page_data.data;
142 return eeprom_fallback(request, reply);
203 struct eeprom_reply_data *reply = MODULE_EEPROM_REPDATA(reply_base); local
205 return nla_put(skb, ETHTOOL_A_MODULE_EEPROM_DATA, reply
53 eeprom_fallback(struct eeprom_req_info *request, struct eeprom_reply_data *reply) argument
210 struct eeprom_reply_data *reply = MODULE_EEPROM_REPDATA(reply_base); local
[all...]
/linux-master/drivers/thunderbolt/
H A Dicm.c54 * @reply: Reply from ICM firmware is placed here
59 struct icm_usb4_switch_op_response reply; member in struct:usb4_switch_nvm_auth
458 struct icm_fr_pkg_driver_ready_response reply; local
464 memset(&reply, 0, sizeof(reply));
465 ret = icm_request(tb, &request, sizeof(request), &reply, sizeof(reply),
471 *security_level = reply.security_level & ICM_FR_SLEVEL_MASK;
479 struct icm_fr_pkg_approve_device reply; local
488 memset(&reply,
506 struct icm_fr_pkg_add_device_key_response reply; local
534 struct icm_fr_pkg_challenge_device_response reply; local
564 struct icm_fr_pkg_approve_xdomain_response reply; local
1015 struct icm_tr_pkg_driver_ready_response reply; local
1044 struct icm_tr_pkg_approve_device reply; local
1070 struct icm_tr_pkg_add_device_key_response reply; local
1099 struct icm_tr_pkg_challenge_device_response reply; local
1131 struct icm_tr_pkg_approve_xdomain_response reply; local
1160 struct icm_tr_pkg_disconnect_xdomain_response reply; local
1491 struct icm_ar_pkg_driver_ready_response reply; local
1516 struct icm_ar_pkg_get_route_response reply; local
1538 struct icm_ar_pkg_preboot_acl_response reply; local
1576 struct icm_ar_pkg_preboot_acl_response reply; local
1621 struct icm_tr_pkg_driver_ready_response reply; local
2262 struct icm_usb4_switch_op_response reply; local
[all...]
/linux-master/samples/bpf/
H A Dtcp_synrto_kern.c35 skops->reply = -1;
61 skops->reply = rv;
H A Dtcp_rwnd_kern.c35 skops->reply = -1;
61 skops->reply = rv;
/linux-master/drivers/gpu/drm/xe/compat-i915-headers/
H A Dintel_pcode.h35 u32 request, u32 reply_mask, u32 reply,
38 return xe_pcode_request(__compat_uncore_to_gt(uncore), mbox, request, reply_mask, reply,
34 skl_pcode_request(struct intel_uncore *uncore, u32 mbox, u32 request, u32 reply_mask, u32 reply, int timeout_base_ms) argument
/linux-master/net/atm/
H A Dsignaling.h25 const struct sockaddr_atmsvc *svc,const struct atm_qos *qos,int reply);
/linux-master/sound/soc/sof/amd/
H A Dacp-ipc.c99 struct sof_ipc_reply reply; local
105 * Sometimes, there is unexpected reply ipc arriving. The reply
117 * memory windows are powered off before sending IPC reply,
121 reply.error = 0;
122 reply.hdr.cmd = SOF_IPC_GLB_REPLY;
123 reply.hdr.size = sizeof(reply);
124 memcpy(msg->reply_data, &reply, sizeof(reply));
[all...]
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/
H A Dmemx.c48 u32 reply[2]; local
51 ret = nvkm_pmu_send(pmu, reply, PROC_MEMX, MEMX_MSG_INFO,
60 memx->base = reply[0];
61 memx->size = reply[1];
78 u32 finish, reply[2]; local
87 /* call MEMX process to execute the script, and wait for reply */
89 nvkm_pmu_send(pmu, reply, PROC_MEMX, MEMX_MSG_EXEC,
92 reply[0], reply[1]);
169 u32 reply[ local
[all...]
/linux-master/drivers/net/wireless/ath/wil6210/
H A Dwmi.c2040 u16 reply_id, void *reply, u16 reply_size, int to_msec)
2051 wil->reply_buf = reply;
2135 } __packed reply = { local
2153 WMI_LED_CFG_DONE_EVENTID, &reply, sizeof(reply),
2158 if (reply.evt.status) {
2160 led_id, le32_to_cpu(reply.evt.status));
2180 } __packed reply = { local
2185 WMI_RBUFCAP_CFG_EVENTID, &reply, sizeof(reply),
2039 wmi_call(struct wil6210_priv *wil, u16 cmdid, u8 mid, void *buf, u16 len, u16 reply_id, void *reply, u16 reply_size, int to_msec) argument
2222 } __packed reply = { local
2298 } __packed reply; local
2337 } __packed reply; local
2367 } __packed reply = { local
2390 } __packed reply = { local
2414 } __packed reply = { local
2587 } __packed reply = { local
2687 } __packed reply; local
2719 } __packed reply; local
2757 } __packed reply; local
2856 } __packed reply = { local
2912 } __packed reply = { local
2947 } __packed reply = { local
2982 } __packed reply = { local
3014 } __packed reply; local
3108 } __packed reply = { local
3195 } __packed reply = { local
3225 } __packed reply = { local
3278 } __packed reply = { local
3551 } __packed reply = { local
3592 } __packed reply = { local
3730 } __packed reply = { local
3771 } __packed reply = { local
3811 } __packed reply = { local
3852 } __packed reply = { local
3903 } __packed reply = { local
3948 } __packed reply = { local
3989 } __packed reply = { local
4030 } __packed reply = { local
[all...]
/linux-master/net/netfilter/
H A Dnf_conntrack_sane.c71 struct sane_reply_net_start *reply; local
109 /* We're interested in the next reply */
116 /* Is it a reply to an uninteresting command? */
120 /* It's a reply to SANE_NET_START. */
124 pr_debug("NET_START reply too short\n");
130 reply = skb_header_pointer(skb, dataoff, datalen, &buf.repl);
131 if (!reply)
134 if (reply->status != htonl(SANE_STATUS_SUCCESS)) {
137 ntohl(reply->status));
141 /* Invalid saned reply
[all...]
/linux-master/sound/soc/intel/common/
H A Dsst-ipc.c46 struct ipc_message *msg, struct sst_ipc_message *reply)
65 if (reply) {
66 reply->header = msg->rx.header;
67 if (reply->data)
68 memcpy(reply->data, msg->rx.data, msg->rx.size);
80 struct sst_ipc_message *reply, int wait)
96 msg->rx.size = reply ? reply->size : 0;
110 return tx_wait_done(ipc, msg, reply);
181 struct sst_ipc_message request, struct sst_ipc_message *reply)
45 tx_wait_done(struct sst_generic_ipc *ipc, struct ipc_message *msg, struct sst_ipc_message *reply) argument
78 ipc_tx_message(struct sst_generic_ipc *ipc, struct sst_ipc_message request, struct sst_ipc_message *reply, int wait) argument
180 sst_ipc_tx_message_wait(struct sst_generic_ipc *ipc, struct sst_ipc_message request, struct sst_ipc_message *reply) argument
211 sst_ipc_tx_message_nopm(struct sst_generic_ipc *ipc, struct sst_ipc_message request, struct sst_ipc_message *reply) argument
[all...]
/linux-master/drivers/nfc/
H A Dmei_phy.c96 struct mei_nfc_reply *reply = NULL; local
117 reply = kzalloc(if_version_length, GFP_KERNEL);
118 if (!reply)
121 bytes_recv = mei_cldev_recv(phy->cldev, (u8 *)reply, if_version_length);
128 version = (struct mei_nfc_if_version *)reply->data;
135 kfree(reply);
141 struct mei_nfc_cmd *cmd, *reply; local
158 reply = kzalloc(connect_resp_length, GFP_KERNEL);
159 if (!reply) {
164 connect_resp = (struct mei_nfc_connect_resp *)reply
[all...]
/linux-master/include/linux/ceph/
H A Dauth.h73 void *reply, int reply_len,
138 void *reply, int reply_len,
162 int ceph_auth_handle_reply_more(struct ceph_auth_client *ac, void *reply,
165 u64 global_id, void *reply, int reply_len,
178 void *reply, int reply_len,
182 void *reply, int reply_len,
/linux-master/drivers/s390/crypto/
H A 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,
574 struct type86x_reply *msg = reply->msg;
615 * Copy results from a type 86 XCRB reply message back to user space.
618 * @reply: reply AP message.
624 struct ap_message *reply,
569 convert_type86_ica(struct zcrypt_queue *zq, struct ap_message *reply, char __user *outputdata, unsigned int outputdatalength) argument
623 convert_type86_xcrb(bool userspace, struct zcrypt_queue *zq, struct ap_message *reply, struct ica_xcRB *xcrb) argument
668 convert_type86_ep11_xcrb(bool userspace, struct zcrypt_queue *zq, struct ap_message *reply, struct ep11_urb *xcrb) argument
690 convert_type86_rng(struct zcrypt_queue *zq, struct ap_message *reply, char *buffer) argument
707 convert_response_ica(struct zcrypt_queue *zq, struct ap_message *reply, char __user *outputdata, unsigned int outputdatalength) argument
751 convert_response_xcrb(bool userspace, struct zcrypt_queue *zq, struct ap_message *reply, struct ica_xcRB *xcrb) argument
786 convert_response_ep11_xcrb(bool userspace, struct zcrypt_queue *zq, struct ap_message *reply, struct ep11_urb *xcrb) argument
816 convert_response_rng(struct zcrypt_queue *zq, struct ap_message *reply, char *data) argument
855 zcrypt_msgtype6_receive(struct ap_queue *aq, struct ap_message *msg, struct ap_message *reply) argument
921 zcrypt_msgtype6_receive_ep11(struct ap_queue *aq, struct ap_message *msg, struct ap_message *reply) argument
[all...]

Completed in 459 milliseconds

1234567891011>>