Searched refs:response (Results 1 - 200 of 1589) sorted by relevance

12345678

/linux-4.4.14/include/uapi/linux/netfilter/
H A Dnf_conntrack_ftp.h9 /* PASV response from server */
13 /* EPSV response from server */
/linux-4.4.14/arch/s390/pci/
H A Dpci_clp.c60 struct clp_rsp_query_pci_grp *response) clp_store_query_pci_fngrp()
62 zdev->tlb_refresh = response->refresh; clp_store_query_pci_fngrp()
63 zdev->dma_mask = response->dasm; clp_store_query_pci_fngrp()
64 zdev->msi_addr = response->msia; clp_store_query_pci_fngrp()
65 zdev->max_msi = response->noi; clp_store_query_pci_fngrp()
66 zdev->fmb_update = response->mui; clp_store_query_pci_fngrp()
68 switch (response->version) { clp_store_query_pci_fngrp()
90 rrb->response.hdr.len = sizeof(rrb->response); clp_query_pci_fngrp()
94 if (!rc && rrb->response.hdr.rsp == CLP_RC_OK) clp_query_pci_fngrp()
95 clp_store_query_pci_fngrp(zdev, &rrb->response); clp_query_pci_fngrp()
98 zpci_err_clp(rrb->response.hdr.rsp, rc); clp_query_pci_fngrp()
106 struct clp_rsp_query_pci *response) clp_store_query_pci_fn()
111 zdev->bars[i].val = le32_to_cpu(response->bar[i]); clp_store_query_pci_fn()
112 zdev->bars[i].size = response->bar_size[i]; clp_store_query_pci_fn()
114 zdev->start_dma = response->sdma; clp_store_query_pci_fn()
115 zdev->end_dma = response->edma; clp_store_query_pci_fn()
116 zdev->pchid = response->pchid; clp_store_query_pci_fn()
117 zdev->pfgid = response->pfgid; clp_store_query_pci_fn()
118 zdev->pft = response->pft; clp_store_query_pci_fn()
119 zdev->vfn = response->vfn; clp_store_query_pci_fn()
120 zdev->uid = response->uid; clp_store_query_pci_fn()
122 memcpy(zdev->pfip, response->pfip, sizeof(zdev->pfip)); clp_store_query_pci_fn()
123 if (response->util_str_avail) { clp_store_query_pci_fn()
124 memcpy(zdev->util_str, response->util_str, clp_store_query_pci_fn()
143 rrb->response.hdr.len = sizeof(rrb->response); clp_query_pci_fn()
147 if (!rc && rrb->response.hdr.rsp == CLP_RC_OK) { clp_query_pci_fn()
148 rc = clp_store_query_pci_fn(zdev, &rrb->response); clp_query_pci_fn()
151 if (rrb->response.pfgid) clp_query_pci_fn()
152 rc = clp_query_pci_fngrp(zdev, rrb->response.pfgid); clp_query_pci_fn()
155 zpci_err_clp(rrb->response.hdr.rsp, rc); clp_query_pci_fn()
212 rrb->response.hdr.len = sizeof(rrb->response); clp_set_pci_fn()
218 if (rrb->response.hdr.rsp == CLP_RC_SETPCIFN_BUSY) { clp_set_pci_fn()
224 } while (rrb->response.hdr.rsp == CLP_RC_SETPCIFN_BUSY); clp_set_pci_fn()
226 if (!rc && rrb->response.hdr.rsp == CLP_RC_OK) clp_set_pci_fn()
227 *fh = rrb->response.fh; clp_set_pci_fn()
230 zpci_err_clp(rrb->response.hdr.rsp, rc); clp_set_pci_fn()
279 rrb->response.hdr.len = CLP_BLK_SIZE - LIST_PCI_HDR_LEN; clp_list_pci()
284 if (rc || rrb->response.hdr.rsp != CLP_RC_OK) { clp_list_pci()
286 zpci_err_clp(rrb->response.hdr.rsp, rc); clp_list_pci()
291 WARN_ON_ONCE(rrb->response.entry_size != clp_list_pci()
294 entries = (rrb->response.hdr.len - LIST_PCI_HDR_LEN) / clp_list_pci()
295 rrb->response.entry_size; clp_list_pci()
297 resume_token = rrb->response.resume_token; clp_list_pci()
299 cb(&rrb->response.fh_list[i]); clp_list_pci()
59 clp_store_query_pci_fngrp(struct zpci_dev *zdev, struct clp_rsp_query_pci_grp *response) clp_store_query_pci_fngrp() argument
105 clp_store_query_pci_fn(struct zpci_dev *zdev, struct clp_rsp_query_pci *response) clp_store_query_pci_fn() argument
/linux-4.4.14/arch/s390/kernel/
H A Dcpcmd.c38 static int diag8_response(int cmdlen, char *response, int *rlen) diag8_response() argument
41 register unsigned long reg3 asm ("3") = (addr_t) response; diag8_response()
60 * - the response buffer must reside below 2GB (if any)
63 int __cpcmd(const char *cmd, char *response, int rlen, int *response_code) __cpcmd() argument
75 if (response) { __cpcmd()
76 memset(response, 0, rlen); __cpcmd()
78 rc = diag8_response(cmdlen, response, &rlen); __cpcmd()
79 EBCASC(response, response_len); __cpcmd()
89 int cpcmd(const char *cmd, char *response, int rlen, int *response_code) cpcmd() argument
95 if ((virt_to_phys(response) != (unsigned long) response) || cpcmd()
96 (((unsigned long)response + rlen) >> 31)) { cpcmd()
100 "allocate a response buffer\n"); cpcmd()
106 memcpy(response, lowbuf, rlen); cpcmd()
110 len = __cpcmd(cmd, response, rlen, response_code); cpcmd()
H A Dearly.c87 int response; create_kernel_nss() local
141 __cpcmd(defsys_cmd, NULL, 0, &response); create_kernel_nss()
143 if (response != 0) { create_kernel_nss()
145 response); create_kernel_nss()
152 response = savesys_ipl_nss(savesys_cmd, len); create_kernel_nss()
154 /* On success: response is equal to the command size, create_kernel_nss()
156 * On error: response contains the numeric portion of cp error message. create_kernel_nss()
160 if (response > SAVESYS_CMD_SIZE || response == 1) { create_kernel_nss()
162 response); create_kernel_nss()
/linux-4.4.14/arch/s390/include/asm/
H A Dcpcmd.h13 * the caller of __cpcmd has to ensure that the response buffer is below 2 GB
15 extern int __cpcmd(const char *cmd, char *response, int rlen, int *response_code);
21 * response: response buffer for VM's textual response
22 * rlen: size of the response buffer, cpcmd will not exceed this size
26 * return value: the size of the response. The caller can check if the buffer
28 * NOTE: If the response buffer is not below 2 GB, cpcmd can sleep
30 extern int cpcmd(const char *cmd, char *response, int rlen, int *response_code);
H A Dpci_clp.h35 /* request or response block header length */
38 /* Number of function handles fitting in response block */
59 /* List PCI functions response */
84 /* Query PCI function response */
120 /* Query PCI function group response */
154 /* Set PCI function response */
165 /* Combined request/response block structures used by clp insn */
168 struct clp_rsp_list_pci response; member in struct:clp_req_rsp_list_pci
173 struct clp_rsp_set_pci response; member in struct:clp_req_rsp_set_pci
178 struct clp_rsp_query_pci response; member in struct:clp_req_rsp_query_pci
183 struct clp_rsp_query_pci_grp response; member in struct:clp_req_rsp_query_pci_grp
H A Dclp.h4 /* CLP common request & response block size */
H A Deadm.h73 struct arsb response; member in struct:aob
/linux-4.4.14/drivers/media/usb/as102/
H A Das10x_cmd.h97 /* response */
99 /* response identifier */
112 /* response */
114 /* response identifier */
129 /* response */
131 /* response identifier */
133 /* response error */
144 /* response */
146 /* response identifier */
148 /* response error */
161 /* response */
163 /* response identifier */
165 /* response error */
178 /* response */
180 /* response identifier */
182 /* response error */
199 /* response */
201 /* response identifier */
203 /* response error */
218 /* response */
220 /* response identifier */
222 /* response error */
233 /* response */
235 /* response identifier */
248 /* response */
250 /* response identifier */
263 /* response */
265 /* response identifier */
280 /* response */
282 /* response identifier */
286 /* impulse response ready */
303 /* response */
305 /* response identifier */
319 /* response identifier */
326 /* response */
328 /* response identifier */
338 /* response identifier */
343 /* response */
345 /* response identifier */
362 /* response */
364 /* response identifier */
392 /* response */
394 /* response identifier */
398 /* dump response */
421 /* dump response */
435 /* response */
472 /* token response */
H A Das10x_cmd_cfg.c66 /* parse response: context command do not follow the common response */ as10x_cmd_get_context()
67 /* structure -> specific handling response parse required */ as10x_cmd_get_context()
71 /* Response OK -> get response data */ as10x_cmd_get_context()
124 /* parse response: context command do not follow the common response */ as10x_cmd_set_context()
125 /* structure -> specific handling response parse required */ as10x_cmd_set_context()
174 /* parse response */ as10x_cmd_eLNA_change_mode()
182 * as10x_context_rsp_parse - Parse context command response
183 * @prsp: pointer to AS10x command response buffer
186 * Since the contex command response does not follow the common
187 * response, a specific parse function is required.
H A Das10x_cmd.c55 /* parse response */ as10x_cmd_turn_on()
95 /* parse response */ as10x_cmd_turn_off()
150 /* parse response */ as10x_cmd_set_tune()
194 /* parse response */ as10x_cmd_get_tune_status()
199 /* Response OK -> get response data */ as10x_cmd_get_tune_status()
247 /* parse response */ as10x_cmd_get_tps()
252 /* Response OK -> get response data */ as10x_cmd_get_tps()
306 /* parse response */ as10x_cmd_get_demod_stats()
311 /* Response OK -> get response data */ as10x_cmd_get_demod_stats()
328 * as10x_cmd_get_impulse_resp - send get impulse response command to AS10x
331 * response data is ready
366 /* parse response */ as10x_cmd_get_impulse_resp()
371 /* Response OK -> get response data */ as10x_cmd_get_impulse_resp()
394 * as10x_rsp_parse - Parse command response
H A Das10x_cmd_stream.c65 /* parse response */ as10x_cmd_add_PID_filter()
69 /* Response OK -> get response data */ as10x_cmd_add_PID_filter()
116 /* parse response */ as10x_cmd_del_PID_filter()
159 /* parse response */ as10x_cmd_start_streaming()
202 /* parse response */ as10x_cmd_stop_streaming()
H A Das102_drv.h51 /* as10x command and response for dvb interface*/
H A Das102_usb_drv.h54 /* token response */
/linux-4.4.14/drivers/net/appletalk/
H A Dcops.h37 /* LAP response codes received from the cards. */
39 #define LAP_INIT_RSP 2 /* Init response */
42 #define LAP_RESPONSE 4 /* Received ALAP frame response */
44 #define LAP_RSPSTAT 6 /* Status response */
/linux-4.4.14/drivers/s390/char/
H A Dvmcp.c41 session->response = NULL; vmcp_open()
54 free_pages((unsigned long)session->response, get_order(session->bufsize)); vmcp_release()
69 if (!session->response) { vmcp_read()
75 session->response, size); vmcp_read()
104 if (!session->response) vmcp_write()
105 session->response = (char *)__get_free_pages(GFP_KERNEL vmcp_write()
108 if (!session->response) { vmcp_write()
114 session->resp_size = cpcmd(cmd, session->response, session->bufsize, vmcp_write()
129 * VMCP_SETBUF: sets the response buffer for the next write call. diagnose 8
131 * dont know the size of the response. Therefore we default to PAGESIZE and
132 * let userspace to change the response size, if userspace expects a bigger
133 * response
154 free_pages((unsigned long)session->response, vmcp_ioctl()
156 session->response=NULL; vmcp_ioctl()
H A Dvmcp.h24 char *response; member in struct:vmcp_session
H A Dsclp_cpi_sys.c130 int response; cpi_req() local
163 response = ((struct cpi_sccb *) req->sccb)->header.response_code; cpi_req()
164 if (response != 0x0020) { cpi_req()
165 pr_warning("request failed with response code 0x%x\n", cpi_req()
166 response); cpi_req()
H A Dsclp_cmd.c68 /* Check response. */ sclp_sync_request_timeout()
125 pr_warning("readcpuinfo failed (response=0x%04x)\n", sclp_get_core_info()
164 "response=0x%04x)\n", cmd, do_core_configure()
234 "response=0x%04x, rn=0x%04x)\n", cmd, do_assign_storage()
619 pr_warn("configure PCI I/O adapter failed: cmd=0x%08x response=0x%04x\n", do_pci_configure()
679 "(cmd=0x%08x, response=0x%04x)\n", cmd, do_chp_configure()
748 "(response=0x%04x)\n", sccb->header.response_code); sclp_chp_read_info()
/linux-4.4.14/drivers/staging/unisys/visorbus/
H A Dvisorbus_private.h41 * For now, the value for each response is simply either:
46 void (*bus_create)(struct visor_device *p, int response);
47 void (*bus_destroy)(struct visor_device *p, int response);
48 void (*device_create)(struct visor_device *p, int response);
49 void (*device_destroy)(struct visor_device *p, int response);
50 void (*device_pause)(struct visor_device *p, int response);
51 void (*device_resume)(struct visor_device *p, int response);
H A Dvisorchipset.c221 static void bus_create_response(struct visor_device *p, int response);
222 static void bus_destroy_response(struct visor_device *p, int response);
223 static void device_create_response(struct visor_device *p, int response);
224 static void device_destroy_response(struct visor_device *p, int response);
225 static void device_resume_response(struct visor_device *p, int response);
228 int response);
347 int response);
349 struct controlvm_message_header *msg_hdr, int response,
352 struct controlvm_message_header *msg_hdr, int response,
735 /* Check events to determine if response should be sent */ check_chipset_events()
807 struct controlvm_message_header *msg_hdr, int response) controlvm_init_response()
814 if (response < 0) { controlvm_init_response()
816 msg->hdr.completion_status = (u32) (-response); controlvm_init_response()
821 controlvm_respond(struct controlvm_message_header *msg_hdr, int response) controlvm_respond() argument
825 controlvm_init_response(&outmsg, msg_hdr, response); controlvm_respond()
837 int response, controlvm_respond_chipset_init()
842 controlvm_init_response(&outmsg, msg_hdr, response); controlvm_respond_chipset_init()
851 struct controlvm_message_header *msg_hdr, int response, controlvm_respond_physdev_changestate()
856 controlvm_init_response(&outmsg, msg_hdr, response); controlvm_respond_physdev_changestate()
873 int response) bus_responder()
876 return; /* no controlvm response needed */ bus_responder()
881 controlvm_respond(pending_msg_hdr, response); bus_responder()
886 struct visor_device *p, int response, device_changestate_responder()
894 return; /* no controlvm response needed */ device_changestate_responder()
898 controlvm_init_response(&outmsg, p->pending_msg_hdr, response); device_changestate_responder()
912 int response) device_responder()
915 return; /* no controlvm response needed */ device_responder()
920 controlvm_respond(pending_msg_hdr, response); device_responder()
926 int response, bool need_response) bus_epilog()
932 /* relying on a valid passed in response code */ bus_epilog()
939 /* only non-NULL if dev is still waiting on a response */ bus_epilog()
940 response = -CONTROLVM_RESP_ERROR_MESSAGE_ID_INVALID_FOR_CLIENT; bus_epilog()
948 response = -CONTROLVM_RESP_ERROR_KMALLOC_FAILED; bus_epilog()
958 if (response == CONTROLVM_RESP_SUCCESS) { bus_epilog()
987 bus_responder(cmd, pmsg_hdr, response); bus_epilog()
994 struct controlvm_message_header *msg_hdr, int response, device_epilog()
1004 /* relying on a valid passed in response code */ device_epilog()
1011 /* only non-NULL if dev is still waiting on a response */ device_epilog()
1012 response = -CONTROLVM_RESP_ERROR_MESSAGE_ID_INVALID_FOR_CLIENT; device_epilog()
1020 response = -CONTROLVM_RESP_ERROR_KMALLOC_FAILED; device_epilog()
1030 if (response >= 0) { device_epilog()
1082 device_responder(cmd, pmsg_hdr, response); device_epilog()
1443 /* Send CHIPSET_READY response when all modules have been loaded chipset_ready()
1505 * udev script /proc response
1765 /* when sending back the response to Command */ handle_command()
1847 /* Check events to determine if response to CHIPSET_READY controlvm_periodic_work()
2019 bus_create_response(struct visor_device *bus_info, int response) bus_create_response() argument
2021 if (response >= 0) bus_create_response()
2025 response); bus_create_response()
2032 bus_destroy_response(struct visor_device *bus_info, int response) bus_destroy_response() argument
2035 response); bus_destroy_response()
2042 device_create_response(struct visor_device *dev_info, int response) device_create_response() argument
2044 if (response >= 0) device_create_response()
2048 response); device_create_response()
2055 device_destroy_response(struct visor_device *dev_info, int response) device_destroy_response() argument
2058 response); device_destroy_response()
2066 int response) visorchipset_device_pause_response()
2069 dev_info, response, visorchipset_device_pause_response()
2077 device_resume_response(struct visor_device *dev_info, int response) device_resume_response() argument
2080 dev_info, response, device_resume_response()
2433 "1 to hold response to CHIPSET_READY");
806 controlvm_init_response(struct controlvm_message *msg, struct controlvm_message_header *msg_hdr, int response) controlvm_init_response() argument
836 controlvm_respond_chipset_init(struct controlvm_message_header *msg_hdr, int response, enum ultra_chipset_feature features) controlvm_respond_chipset_init() argument
850 controlvm_respond_physdev_changestate( struct controlvm_message_header *msg_hdr, int response, struct spar_segment_state state) controlvm_respond_physdev_changestate() argument
871 bus_responder(enum controlvm_id cmd_id, struct controlvm_message_header *pending_msg_hdr, int response) bus_responder() argument
885 device_changestate_responder(enum controlvm_id cmd_id, struct visor_device *p, int response, struct spar_segment_state response_state) device_changestate_responder() argument
910 device_responder(enum controlvm_id cmd_id, struct controlvm_message_header *pending_msg_hdr, int response) device_responder() argument
924 bus_epilog(struct visor_device *bus_info, u32 cmd, struct controlvm_message_header *msg_hdr, int response, bool need_response) bus_epilog() argument
992 device_epilog(struct visor_device *dev_info, struct spar_segment_state state, u32 cmd, struct controlvm_message_header *msg_hdr, int response, bool need_response, bool for_visorbus) device_epilog() argument
2065 visorchipset_device_pause_response(struct visor_device *dev_info, int response) visorchipset_device_pause_response() argument
H A Dcontrolvmcompletionstatus.h17 /* Defines for all valid values returned in the response message header
/linux-4.4.14/sound/pci/asihpi/
H A Dhpimsginit.h23 /* Initialise response headers, or msg/response pairs.
24 Note that it is valid to just init a response e.g. when a lower level is
25 preparing a response to a message.
26 However, when sending a message, a matching response buffer must always be
H A Dhpimsginit.c29 /* The actual response size for each object type */
62 * initialize the HPI response structure
88 /* default error return if the response is hpi_init_message_response()
H A Dhpioctl.c62 message and response types.
122 /* Read the message and response pointers from user space. */ asihpi_hpi_ioctl()
150 /* printk(KERN_INFO "user response size %d\n", res_max_size); */ asihpi_hpi_ioctl()
280 /* on return response size must be set */ asihpi_hpi_ioctl()
281 /*printk(KERN_INFO "response size %d\n", hr->h.wSize); */ asihpi_hpi_ioctl()
284 HPI_DEBUG_LOG(ERROR, "response zero size\n"); asihpi_hpi_ioctl()
290 HPI_DEBUG_LOG(ERROR, "response too big %d %d\n", hr->h.size, asihpi_hpi_ioctl()
/linux-4.4.14/drivers/scsi/libfc/
H A Dfc_elsct.c39 * @resp: The callback routine when the response is received
40 * @arg: The argument to pass to the response callback routine
88 * fc_els_resp_type() - Return a string describing the ELS response
100 msg = "response no error"; fc_els_resp_type()
103 msg = "response timeout"; fc_els_resp_type()
106 msg = "response closed"; fc_els_resp_type()
109 msg = "response unknown error"; fc_els_resp_type()
124 msg = "response unknown ELS"; fc_els_resp_type()
139 msg = "response unknown CT"; fc_els_resp_type()
143 msg = "short CT response"; fc_els_resp_type()
147 msg = "response not ELS or CT"; fc_els_resp_type()
H A Dfc_disc.c385 * fc_disc_gpn_ft_parse() - Parse the body of the dNS GPN_FT response.
387 * @buf: The GPN_FT response buffer
388 * @len: The size of response buffer
501 * fc_disc_gpn_ft_resp() - Handle a response frame from Get Port Names (GPN_FT)
502 * @sp: The sequence that the GPN_FT response was received on
503 * @fp: The GPN_FT response frame
521 FC_DISC_DBG(disc, "Received a GPN_FT response\n"); fc_disc_gpn_ft_resp()
536 FC_DISC_DBG(disc, "GPN_FT response too short, len %d\n", fc_disc_gpn_ft_resp()
541 /* Accepted, parse the response. */ fc_disc_gpn_ft_resp()
553 FC_DISC_DBG(disc, "GPN_FT unexpected response code " fc_disc_gpn_ft_resp()
574 * fc_disc_gpn_id_resp() - Handle a response frame from Get Port Names (GPN_ID)
576 * @fp: The response frame
577 * @rdata_arg: The remote port that sent the GPN_ID response
633 FC_DISC_DBG(disc, "GPN_ID unexpected response code %x\n", fc_disc_gpn_id_resp()
H A Dfc_rport.c43 * one request or response at a time, since they're not critical for the I/O
469 * the response. fc_rport_logoff()
609 * @fp: The FLOGI or PLOGI request or response frame
651 * fc_rport_flogi_resp() - Handle response to FLOGI request for p-mp mode
653 * @fp: The FLOGI response frame
654 * @rp_arg: The remote port that received the FLOGI response
672 FC_RPORT_DBG(rdata, "Received a FLOGI response, but in state " fc_rport_flogi_resp()
708 FC_RPORT_DBG(rdata, "Bad FLOGI response\n"); fc_rport_flogi_resp()
799 * causes the code to send reject response. fc_rport_recv_flogi_req()
867 * @fp: The PLOGI response frame
868 * @rdata_arg: The remote port that sent the PLOGI response
889 FC_RPORT_DBG(rdata, "Received a PLOGI response, but in state " fc_rport_plogi_resp()
907 /* save plogi response sp_features for further reference */ fc_rport_plogi_resp()
984 * fc_rport_prli_resp() - Process Login (PRLI) response handler
985 * @sp: The sequence the PRLI response was on
986 * @fp: The PRLI response frame
987 * @rdata_arg: The remote port that sent the PRLI response
1013 FC_RPORT_DBG(rdata, "Received a PRLI response, but in state " fc_rport_prli_resp()
1071 FC_RPORT_DBG(rdata, "Bad ELS response for PRLI command\n"); fc_rport_prli_resp()
1141 * @fp: The RTV response frame
1142 * @rdata_arg: The remote port that sent the RTV response
1161 FC_RPORT_DBG(rdata, "Received a RTV response, but in state " fc_rport_rtv_resp()
1238 * @fp: The LOGO response frame
1277 * @sp: The sequence the ADISC response was on
1278 * @fp: The ADISC response frame
1279 * @rdata_arg: The remote port that sent the ADISC response
1294 FC_RPORT_DBG(rdata, "Received a ADISC response\n"); fc_rport_adisc_resp()
1721 struct fc_els_spp *spp; /* response spp */ fc_rport_recv_prli_req()
1763 * response. If plen indicates longer SPP than standard, fc_rport_recv_prli_req()
1764 * use that. The entire response has been pre-cleared above. fc_rport_recv_prli_req()
1840 struct fc_els_spp *spp; /* response spp */ fc_rport_recv_prlo_req()
1970 * @spp: response service parameter page
1972 * Returns the value for the response code to be placed in spp_flags;
2017 * @spp: response service parameter page
H A Dfc_fcp.c50 #define FC_SRB_RCV_STATUS (1 << 1) /* response has arrived */
214 * getting a response. This can happen in cases where we send a abort, but
215 * do not wait for the response and the abort and command can be passing
535 * In the very rare event that this data arrived after the response fc_fcp_recv_data()
702 * fc_fcp_abts_resp() - Receive an ABTS response
704 * @fp: The response frame
817 * @fsp: The FCP packet the response is for
818 * @fp: The response frame
926 FC_FCP_DBG(fsp, "short FCP response. flags 0x%x len %u respl %u " fc_fcp_resp()
956 * Test for transport underrun, independent of response fc_fcp_complete_locked()
1135 * @resp: The handler for the response
1325 * fc_tm_done() - Task Management response handler
1326 * @seq: The sequence that the response is on
1327 * @fp: The response frame
1328 * @arg: The FCP packet the response is for
1380 * if the response has been received without all the data it has been
1381 * ER_TIMEOUT since the response was received. If the response has not been
1454 * @seq: The sequence the response is on
1455 * @fp: The response frame
1456 * @arg: The FCP packet the response is on
1458 * If the response is a reject then the scsi layer will handle
1459 * the timeout. If the response is a LS_ACC then if the I/O was not completed
1509 * lost the response but the target has no record, fc_fcp_rec_resp()
1534 * For output, we must've lost the response. fc_fcp_rec_resp()
1536 * We lost may have lost the response fc_fcp_rec_resp()
1541 * asking for response. If partial data received, fc_fcp_rec_resp()
1564 * Lost response with requested confirmation, fc_fcp_rec_resp()
1572 * request response. fc_fcp_rec_resp()
1574 * If we lost a response, we may have lost some read fc_fcp_rec_resp()
1713 * fc_fcp_srr_resp() - Handler for SRR response
1737 * an abort response though. fc_fcp_srr_resp()
2032 * Send an ABTS to the target device and wait for the response.
H A Dfc_lport.c72 * The strategy is to lock whenever processing a request or response. Note
81 * lport receives the response frame it locks the mutex and then calls the
82 * appropriate handler for the particuar response. Generally a response will
146 * @rsp_code: The expected response code
149 * @offset: The offset into the response data
858 * Send the response. If this fails, the originator should fc_lport_recv_flogi_req()
1115 * fc_lport_ns_resp() - Handle response to a name server
1118 * @fp: response frame
1140 FC_LPORT_DBG(lport, "Received a name server response, " fc_lport_ns_resp()
1191 * fc_lport_ms_resp() - Handle response to a management server
1194 * @fp: response frame
1216 FC_LPORT_DBG(lport, "Received a management server response, " fc_lport_ms_resp()
1234 FC_LPORT_DBG(lport, "Received a management server response, " fc_lport_ms_resp()
1270 * fc_lport_scr_resp() - Handle response to State Change Register (SCR) request
1272 * @fp: response frame
1293 FC_LPORT_DBG(lport, "Received a SCR response, but in state " fc_lport_scr_resp()
1616 * fc_lport_logo_resp() - Handle response to LOGO request
1639 FC_LPORT_DBG(lport, "Received a LOGO response, but in state " fc_lport_logo_resp()
1695 * fc_lport_flogi_resp() - Handle response to FLOGI request
1697 * @fp: The FLOGI response frame
1698 * @lp_arg: The lport port that received the FLOGI response
1724 FC_LPORT_DBG(lport, "Received a FLOGI response, but in state " fc_lport_flogi_resp()
1740 FC_LPORT_DBG(lport, "FLOGI not accepted or bad response\n"); fc_lport_flogi_resp()
1747 FC_LPORT_DBG(lport, "FLOGI bad response\n"); fc_lport_flogi_resp()
1756 FC_LPORT_DBG(lport, "FLOGI bad mfs:%hu response, " fc_lport_flogi_resp()
1897 * fc_lport_bsg_resp() - The common response handler for FC Passthrough requests
1898 * @sp: The sequence for the FC Passthrough response
1899 * @fp: The response frame
1900 * @info_arg: The BSG info that the response is for
1928 /* Get the response code from the first frame payload */ fc_lport_bsg_resp()
2024 * @tov: The timeout period to wait for the response
/linux-4.4.14/fs/nfsd/
H A Dxdr4.h89 u32 ac_supported; /* response */
90 u32 ac_resp_access; /* response */
95 stateid_t cl_stateid; /* request+response */
101 nfs4_verifier co_verf; /* response */
120 struct nfsd4_change_info cr_cinfo; /* response */
135 struct svc_fh *ga_fhp; /* response */
141 struct nfsd4_change_info li_cinfo; /* response */
173 /* response */
226 stateid_t op_delegate_stateid; /* request - response */
227 u32 op_why_no_deleg; /* response - DELEG_NONE_EXT only */
240 stateid_t op_stateid; /* response */
243 struct nfsd4_change_info op_cinfo; /* response */
244 u32 op_rflags; /* response */
258 stateid_t oc_resp_stateid /* response */;
278 struct svc_rqst *rd_rqstp; /* response */
279 struct svc_fh * rd_fhp; /* response */
288 struct svc_rqst *rd_rqstp; /* response */
289 struct svc_fh * rd_fhp; /* response */
308 struct nfsd4_change_info rm_cinfo; /* response */
316 struct nfsd4_change_info rn_sinfo; /* response */
317 struct nfsd4_change_info rn_tinfo; /* response */
323 struct svc_export *si_exp; /* response */
328 struct svc_export *sin_exp; /* response */
348 clientid_t se_clientid; /* response */
349 nfs4_verifier se_confirm; /* response */
394 u32 wr_bytes_written; /* response */
395 u32 wr_how_written; /* response */
396 nfs4_verifier wr_verifier; /* response */
409 struct nfs4_sessionid sessionid; /* request/response */
410 u32 seqid; /* request/response */
411 u32 slotid; /* request/response */
412 u32 maxslots; /* request/response */
415 u32 target_maxslots; /* response */
417 u32 status_flags; /* response */
448 u32 gd_notify_types;/* request - response */
449 void *gd_device; /* response */
457 stateid_t lg_sid; /* request/response */
458 struct nfsd4_layout_seg lg_seg; /* request/response */
459 void *lg_content; /* response */
472 u32 lc_size_chg; /* boolean for response */
473 u64 lc_newsize; /* response */
483 stateid_t lr_sid; /* request/response */
484 u32 lrs_present; /* response */
500 /* response */
/linux-4.4.14/include/uapi/rdma/
H A Dib_user_verbs.h124 * length of the command block and response buffer if any in 32-bit
142 __u64 response; member in struct:ib_uverbs_ex_cmd_hdr
149 __u64 response; member in struct:ib_uverbs_get_context
159 __u64 response; member in struct:ib_uverbs_query_device
232 __u64 response; member in struct:ib_uverbs_query_port
263 __u64 response; member in struct:ib_uverbs_alloc_pd
276 __u64 response; member in struct:ib_uverbs_open_xrcd
291 __u64 response; member in struct:ib_uverbs_reg_mr
307 __u64 response; member in struct:ib_uverbs_rereg_mr
327 __u64 response; member in struct:ib_uverbs_alloc_mw
343 __u64 response; member in struct:ib_uverbs_create_comp_channel
351 __u64 response; member in struct:ib_uverbs_create_cq
382 __u64 response; member in struct:ib_uverbs_resize_cq
395 __u64 response; member in struct:ib_uverbs_poll_cq
433 __u64 response; member in struct:ib_uverbs_destroy_cq
502 __u64 response; member in struct:ib_uverbs_create_qp
540 __u64 response; member in struct:ib_uverbs_open_qp
549 /* also used for open response */
587 __u64 response; member in struct:ib_uverbs_query_qp
661 __u64 response; member in struct:ib_uverbs_destroy_qp
714 __u64 response; member in struct:ib_uverbs_post_send
733 __u64 response; member in struct:ib_uverbs_post_recv
746 __u64 response; member in struct:ib_uverbs_post_srq_recv
759 __u64 response; member in struct:ib_uverbs_create_ah
886 __u64 response; member in struct:ib_uverbs_create_srq
896 __u64 response; member in struct:ib_uverbs_create_xsrq
925 __u64 response; member in struct:ib_uverbs_query_srq
939 __u64 response; member in struct:ib_uverbs_destroy_srq
H A Drdma_user_cm.h83 __u64 response; member in struct:rdma_ucm_create_id
94 __u64 response; member in struct:rdma_ucm_destroy_id
104 __u64 response; member in struct:rdma_ucm_bind_ip
145 __u64 response; member in struct:rdma_ucm_query
230 __u64 response; member in struct:rdma_ucm_init_qp_attr
241 __u64 response; /* rdma_ucm_create_id_resp */ member in struct:rdma_ucm_join_ip_mcast
248 __u64 response; /* rdma_ucma_create_id_resp */ member in struct:rdma_ucm_join_mcast
257 __u64 response; member in struct:rdma_ucm_get_event
294 __u64 response; member in struct:rdma_ucm_migrate_id
H A Dib_user_cm.h76 __u64 response; member in struct:ib_ucm_create_id
84 __u64 response; member in struct:ib_ucm_destroy_id
94 __u64 response; member in struct:ib_ucm_attr_id
107 __u64 response; member in struct:ib_ucm_init_qp_attr
224 __u64 response; member in struct:ib_ucm_event_get
/linux-4.4.14/drivers/s390/cio/
H A Dchsc_sch.c477 struct chsc_header response; chsc_ioctl_info_channel_path() member in struct:__anon8963
506 if (scpcd_area->response.code != 0x0001) { chsc_ioctl_info_channel_path()
508 CHSC_MSG(0, "scpcd: response code=%x\n", chsc_ioctl_info_channel_path()
509 scpcd_area->response.code); chsc_ioctl_info_channel_path()
512 memcpy(&cd->cpcb, &scpcd_area->response, scpcd_area->response.length); chsc_ioctl_info_channel_path()
539 struct chsc_header response; chsc_ioctl_info_cu() member in struct:__anon8964
568 if (scucd_area->response.code != 0x0001) { chsc_ioctl_info_cu()
570 CHSC_MSG(0, "scucd: response code=%x\n", chsc_ioctl_info_cu()
571 scucd_area->response.code); chsc_ioctl_info_cu()
574 memcpy(&cd->cucb, &scucd_area->response, scucd_area->response.length); chsc_ioctl_info_cu()
602 struct chsc_header response; chsc_ioctl_info_sch_cu() member in struct:__anon8965
632 if (sscud_area->response.code != 0x0001) { chsc_ioctl_info_sch_cu()
634 CHSC_MSG(0, "sscud: response code=%x\n", chsc_ioctl_info_sch_cu()
635 sscud_area->response.code); chsc_ioctl_info_sch_cu()
638 memcpy(&cud->scub, &sscud_area->response, sscud_area->response.length); chsc_ioctl_info_sch_cu()
664 struct chsc_header response; chsc_ioctl_conf_info() member in struct:__anon8966
692 if (sci_area->response.code != 0x0001) { chsc_ioctl_conf_info()
694 CHSC_MSG(0, "sci: response code=%x\n", chsc_ioctl_conf_info()
695 sci_area->response.code); chsc_ioctl_conf_info()
698 memcpy(&ci->scid, &sci_area->response, sci_area->response.length); chsc_ioctl_conf_info()
722 struct chsc_header response; chsc_ioctl_conf_comp_list() member in struct:__anon8967
775 if (sccl_area->response.code != 0x0001) { chsc_ioctl_conf_comp_list()
777 CHSC_MSG(0, "sccl: response code=%x\n", chsc_ioctl_conf_comp_list()
778 sccl_area->response.code); chsc_ioctl_conf_comp_list()
781 memcpy(&ccl->sccl, &sccl_area->response, sccl_area->response.length); chsc_ioctl_conf_comp_list()
813 memcpy(&chpd->chpdb, &scpd_area->response, scpd_area->response.length); chsc_ioctl_chpd()
835 struct chsc_header response; chsc_ioctl_dcal() member in struct:__anon8970
863 if (sdcal_area->response.code != 0x0001) { chsc_ioctl_dcal()
865 CHSC_MSG(0, "sdcal: response code=%x\n", chsc_ioctl_dcal()
866 sdcal_area->response.code); chsc_ioctl_dcal()
869 memcpy(&dcal->sdcal, &sdcal_area->response, chsc_ioctl_dcal()
870 sdcal_area->response.length); chsc_ioctl_dcal()
H A Dchsc.c38 * chsc_error_from_response() - convert a chsc response to an error
39 * @response: chsc response code
41 * Returns an appropriate Linux error code for @response.
43 int chsc_error_from_response(int response) chsc_error_from_response() argument
45 switch (response) { chsc_error_from_response()
79 struct chsc_header response; member in struct:chsc_ssd_area
112 /* Check response. */ chsc_get_ssd_info()
117 ret = chsc_error_from_response(ssd_area->response.code); chsc_get_ssd_info()
121 ssd_area->response.code); chsc_get_ssd_info()
153 * @ssqd: request and response block for SSQD
169 return chsc_error_from_response(ssqd->response.code); chsc_ssqd()
176 * @scssc: request and response block for SADC
205 return chsc_error_from_response(scssc->response.code); chsc_sadc()
305 struct chsc_header response; member in struct:chsc_sei
637 if (sei->response.code != 0x0001) { chsc_process_event_information()
639 sei->response.code, sei->ntsm); chsc_process_event_information()
641 if (sei->response.code == 3 && sei->ntsm) { chsc_process_event_information()
816 struct chsc_header response; __chsc_do_secm() member in struct:__anon8956
842 switch (secm_area->response.code) { __chsc_do_secm()
848 ret = chsc_error_from_response(secm_area->response.code); __chsc_do_secm()
852 secm_area->response.code); __chsc_do_secm()
918 ret = chsc_error_from_response(scpd_area->response.code); chsc_determine_channel_path_desc()
921 scpd_area->response.code); chsc_determine_channel_path_desc()
939 chsc_resp = (void *)&scpd_area->response; chsc_determine_base_channel_path_desc()
959 chsc_resp = (void *)&scpd_area->response; chsc_determine_fmt1_channel_path_desc()
995 struct chsc_header response; chsc_get_channel_measurement_chars() member in struct:__anon8957
1028 ret = chsc_error_from_response(scmc_area->response.code); chsc_get_channel_measurement_chars()
1031 scmc_area->response.code); chsc_get_channel_measurement_chars()
1097 switch (sda_area->response.code) { __chsc_enable_facility()
1102 ret = chsc_error_from_response(sda_area->response.code); __chsc_enable_facility()
1121 operation_code, sda_area->response.code); chsc_enable_facility()
1139 struct chsc_header response; chsc_determine_css_characteristics() member in struct:__anon8958
1157 result = chsc_error_from_response(scsc_area->response.code); chsc_determine_css_characteristics()
1165 scsc_area->response.code); chsc_determine_css_characteristics()
1183 struct chsc_header response; chsc_sstpc() member in struct:__anon8959
1197 rc = (rr->response.code == 0x0001) ? 0 : -EIO; chsc_sstpc()
1206 struct chsc_header response; chsc_sstpi() member in struct:__anon8960
1219 return (rr->response.code == 0x0001) ? 0 : -EIO; chsc_sstpi()
1229 struct chsc_header response; chsc_siosl() member in struct:__anon8961
1254 rc = chsc_error_from_response(siosl_area->response.code); chsc_siosl()
1258 siosl_area->response.code); chsc_siosl()
1270 * @scm_area: request and response block for SSI
1289 ret = chsc_error_from_response(scm_area->response.code); chsc_scm_info()
1292 scm_area->response.code); chsc_scm_info()
1301 * @brinfo_area: request and response block for the operation
1302 * @resume_token: resume token for multiblock response
1326 return chsc_error_from_response(brinfo_area->response.code); chsc_pnso_brinfo()
H A Dchsc.h76 struct chsc_header response; member in struct:chsc_ssqd_area
97 struct chsc_header response; member in struct:chsc_scssc_area
114 struct chsc_header response; member in struct:chsc_scpd
127 struct chsc_header response; member in struct:chsc_sda_area
158 int chsc_error_from_response(int response);
180 struct chsc_header response; member in struct:chsc_scm_info
229 struct chsc_header response; member in struct:chsc_pnso_area
/linux-4.4.14/drivers/platform/chrome/
H A Dcros_ec_lpc.c53 struct ec_host_response response; cros_ec_pkt_xfer_lpc() local
82 /* Read back response */ cros_ec_pkt_xfer_lpc()
83 dout = (u8 *)&response; cros_ec_pkt_xfer_lpc()
84 for (i = 0; i < sizeof(response); i++) { cros_ec_pkt_xfer_lpc()
89 msg->result = response.result; cros_ec_pkt_xfer_lpc()
91 if (response.data_len > msg->insize) { cros_ec_pkt_xfer_lpc()
94 response.data_len, msg->insize); cros_ec_pkt_xfer_lpc()
99 /* Read response and process checksum */ cros_ec_pkt_xfer_lpc()
100 for (i = 0; i < response.data_len; i++) { cros_ec_pkt_xfer_lpc()
102 inb(EC_LPC_ADDR_HOST_PACKET + sizeof(response) + i); cros_ec_pkt_xfer_lpc()
109 response.checksum); cros_ec_pkt_xfer_lpc()
115 ret = response.data_len; cros_ec_pkt_xfer_lpc()
187 /* Start calculating response checksum */ cros_ec_cmd_xfer_lpc()
191 /* Read response and update checksum */ cros_ec_cmd_xfer_lpc()
/linux-4.4.14/drivers/isdn/gigaset/
H A Di4l.c120 isdn_ctrl response; gigaset_skb_sent() local
133 response.driver = bcs->cs->myid; gigaset_skb_sent()
134 response.command = ISDN_STAT_BSENT; gigaset_skb_sent()
135 response.arg = bcs->channel; gigaset_skb_sent()
136 response.parm.length = len; gigaset_skb_sent()
137 iif->statcallb(&response); gigaset_skb_sent()
170 isdn_ctrl response; gigaset_isdn_rcv_err() local
183 response.driver = bcs->cs->myid; gigaset_isdn_rcv_err()
184 response.command = ISDN_STAT_L1ERR; gigaset_isdn_rcv_err()
185 response.arg = bcs->channel; gigaset_isdn_rcv_err()
186 response.parm.errcode = ISDN_STAT_L1ERR_RECV; gigaset_isdn_rcv_err()
187 iif->statcallb(&response); gigaset_isdn_rcv_err()
462 isdn_ctrl response; gigaset_isdn_icall() local
466 response.parm.setup.si1 = 0; /* default: unknown */ gigaset_isdn_icall()
467 response.parm.setup.si2 = 0; gigaset_isdn_icall()
468 response.parm.setup.screen = 0; gigaset_isdn_icall()
469 response.parm.setup.plan = 0; gigaset_isdn_icall()
472 response.parm.setup.si1 = 1; gigaset_isdn_icall()
475 response.parm.setup.si1 = 7; gigaset_isdn_icall()
478 response.parm.setup.si1 = 1; gigaset_isdn_icall()
481 response.parm.setup.si1 = 1; gigaset_isdn_icall()
482 response.parm.setup.si2 = 2; gigaset_isdn_icall()
489 strlcpy(response.parm.setup.phone, at_state->str_var[STR_NMBR], gigaset_isdn_icall()
490 sizeof response.parm.setup.phone); gigaset_isdn_icall()
492 response.parm.setup.phone[0] = 0; gigaset_isdn_icall()
494 strlcpy(response.parm.setup.eazmsn, at_state->str_var[STR_ZCPN], gigaset_isdn_icall()
495 sizeof response.parm.setup.eazmsn); gigaset_isdn_icall()
497 response.parm.setup.eazmsn[0] = 0; gigaset_isdn_icall()
501 response.command = ISDN_STAT_ICALLW; gigaset_isdn_icall()
502 response.arg = 0; gigaset_isdn_icall()
505 response.command = ISDN_STAT_ICALL; gigaset_isdn_icall()
506 response.arg = bcs->channel; gigaset_isdn_icall()
508 response.driver = cs->myid; gigaset_isdn_icall()
509 retval = iif->statcallb(&response); gigaset_isdn_icall()
/linux-4.4.14/drivers/isdn/sc/
H A Dpacket.c111 if (!(skb = dev_alloc_skb(rcvmsg->msg_data.response.msg_len))) { rcvpkt()
116 skb_put(skb, rcvmsg->msg_data.response.msg_len); rcvpkt()
119 rcvmsg->msg_data.response.buff_offset); rcvpkt()
121 skb_put(skb, rcvmsg->msg_data.response.msg_len), rcvpkt()
122 (char *)rcvmsg->msg_data.response.buff_offset, rcvpkt()
123 rcvmsg->msg_data.response.msg_len); rcvpkt()
133 /* memset_shmem(card, rcvmsg->msg_data.response.buff_offset, 0, BUFFER_SIZE); */ rcvpkt()
134 newll.buff_offset = rcvmsg->msg_data.response.buff_offset; rcvpkt()
H A Dinterrupt.c43 * Pull all of the waiting messages off the response queue interrupt_handler()
73 rcvmsg.msg_data.response.msg_len, interrupt_handler()
74 rcvmsg.msg_data.response.buff_offset); interrupt_handler()
174 * Start proc response interrupt_handler()
194 * PhyStatus response interrupt_handler()
/linux-4.4.14/drivers/net/ethernet/cavium/liquidio/
H A Dresponse_manager.h39 /** Head of a response list. There are several response lists in the
40 * system. One for each response order- Unordered, ordered
47 /** A lock for this response list */
53 /** The type of response list.
103 * response for request failed to arrive before a time-out period or if
123 /** Initialize the response lists. The number of response lists to create is
H A Docteon_nic.c64 /* Add in the response related fields. Opcode and Param are already octeon_alloc_soft_command_resp()
71 irh->rflag = 1; /* a response is required */ octeon_alloc_soft_command_resp()
109 * Status is OK only if a response was expected and core returned octnet_link_ctrl_callback()
111 * If no response was expected, status is OK if the command was posted octnet_link_ctrl_callback()
H A Docteon_nic.h56 * If wait_time is 0, OSI assumes no response is expected.
189 /** Allocate and a soft command with space for a response immediately following
193 * except the response.
194 * @param rdatasize - size in bytes of the response.
197 * response space immediately following.
217 * @param nparams - response control structure
H A Dresponse_manager.c110 /* check if octeon has finished DMA'ing a response lio_process_ordered_list()
132 /* we have received a response or we have timed out */ lio_process_ordered_list()
148 /* no response yet */ lio_process_ordered_list()
/linux-4.4.14/drivers/net/wireless/ti/wl1251/
H A Dio.h52 u32 response; wl1251_read_elp() local
55 wl->if_ops->read_elp(wl, addr, &response); wl1251_read_elp()
57 wl->if_ops->read(wl, addr, &response, sizeof(u32)); wl1251_read_elp()
59 return response; wl1251_read_elp()
/linux-4.4.14/drivers/platform/x86/
H A Dtoshiba-wmi.c46 struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL }; toshiba_wmi_notify() local
50 status = wmi_get_event_data(value, &response); toshiba_wmi_notify()
56 obj = (union acpi_object *)response.pointer; toshiba_wmi_notify()
63 kfree(response.pointer); toshiba_wmi_notify()
H A Ddell-wmi.c170 struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL }; dell_wmi_notify() local
177 status = wmi_get_event_data(value, &response); dell_wmi_notify()
183 obj = (union acpi_object *)response.pointer; dell_wmi_notify()
185 pr_warn("no response\n"); dell_wmi_notify()
190 pr_warn("bad response type %x\n", obj->type); dell_wmi_notify()
H A Ddell-wmi-aio.c88 struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL }; dell_wmi_aio_notify() local
93 status = wmi_get_event_data(value, &response); dell_wmi_aio_notify()
99 obj = (union acpi_object *)response.pointer; dell_wmi_aio_notify()
H A Dmsi-wmi.c186 struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL }; msi_wmi_notify() local
191 status = wmi_get_event_data(value, &response); msi_wmi_notify()
197 obj = (union acpi_object *)response.pointer; msi_wmi_notify()
237 kfree(response.pointer); msi_wmi_notify()
/linux-4.4.14/arch/unicore32/include/mach/
H A Dregs-sdc.h92 * No response SDC_COMMAND_RESTYPE_NONE
96 * 136-bit long response SDC_COMMAND_RESTYPE_LONG
100 * 48-bit short response SDC_COMMAND_RESTYPE_SHORT
104 * 48-bit short and test if busy response SDC_COMMAND_RESTYPE_SHORTBUSY
/linux-4.4.14/sound/firewire/
H A Dfcp.c202 * fcp_avc_transaction - send an AV/C command and wait for its response
206 * @response: a buffer for the response frame
207 * @response_size: the maximum size of @response
209 * correct response frame
212 * corresponding response frame to be returned.
215 * same time, the correct response frame is detected by the value of certain
216 * bytes. These bytes must be set in @response before calling this function,
219 * @command and @response can point to the same buffer.
221 * Returns the actual size of the response frame, or a negative error code.
225 void *response, unsigned int response_size, fcp_avc_transaction()
232 t.response_buffer = response; fcp_avc_transaction()
260 * on command completion once an INTERIM response has fcp_avc_transaction()
312 /* checks whether the response matches the masked bytes in response_buffer */ is_matching_response()
314 const void *response, size_t length) is_matching_response()
319 p1 = response; is_matching_response()
223 fcp_avc_transaction(struct fw_unit *unit, const void *command, unsigned int command_size, void *response, unsigned int response_size, unsigned int response_match_bytes) fcp_avc_transaction() argument
313 is_matching_response(struct fcp_transaction *transaction, const void *response, size_t length) is_matching_response() argument
H A Dfcp.h29 void *response, unsigned int response_size,
/linux-4.4.14/fs/notify/fanotify/
H A Dfanotify.h26 * fanotify_handle_event() since we wait there for user response. When the
29 * user response.
33 int response; /* userspace answer to question */ member in struct:fanotify_perm_event_info
H A Dfanotify_user.c172 int response = response_struct->response; process_access_response() local
174 pr_debug("%s: group=%p fd=%d response=%d\n", __func__, group, process_access_response()
175 fd, response); process_access_response()
177 * make sure the response is valid, if invalid we do nothing and either process_access_response()
178 * userspace can send a valid response or we will clean it up after the process_access_response()
181 switch (response) { process_access_response()
196 event->response = response; process_access_response()
298 * Permission events get queued to wait for response. Other fanotify_read()
308 FANOTIFY_PE(kevent)->response = FAN_DENY; fanotify_read()
331 struct fanotify_response response = { .fd = -1, .response = -1 }; fanotify_write() local
337 if (count > sizeof(response)) fanotify_write()
338 count = sizeof(response); fanotify_write()
342 if (copy_from_user(&response, buf, count)) fanotify_write()
345 ret = process_access_response(group, &response); fanotify_write()
377 event->response = FAN_ALLOW; fanotify_release()
383 * access response. Wake up the already sleeping ones now. fanotify_release()
386 * response and thus also for all permission events to be freed. fanotify_release()
H A Dfanotify.c42 * one we should check for permission response. fanotify_merge()
70 wait_event(group->fanotify_data.access_waitq, event->response || fanotify_get_response()
73 if (!event->response) { /* bypass_perm set */ fanotify_get_response()
84 switch (event->response) { fanotify_get_response()
92 event->response = 0; fanotify_get_response()
167 pevent->response = 0; fanotify_alloc_event()
/linux-4.4.14/drivers/misc/mei/
H A Dhbm.c78 * mei_cl_conn_status_to_errno - convert client connect response
81 * @status: client connect response status
219 * mei_hbm_start_wait - wait for start response message.
321 * @res: hbm property response
350 * mei_hbm_add_cl_resp - send response to fw on client add request
354 * @status: response status
365 dev_dbg(dev->dev, "adding client response\n"); mei_hbm_add_cl_resp()
378 dev_err(dev->dev, "add client response write failed: ret = %d\n", mei_hbm_add_cl_resp()
439 * notify_res_to_fop - convert notification response to the proper
442 * @cmd: client notification start response command
456 * notify start response
460 * @cmd: client notification start response command
469 cl_dbg(dev, cl, "hbm: notify start response status=%d\n", rs->status); mei_hbm_cl_notify_start_res()
482 * notify stop response
486 * @cmd: client notification stop response command
495 cl_dbg(dev, cl, "hbm: notify stop response status=%d\n", rs->status); mei_hbm_cl_notify_stop_res()
680 * mei_hbm_cl_flow_control_res - flow control response from me
683 * @flow_control: flow control response bus message
737 * disconnect response
741 * @cmd: disconnect client response host bus message
749 cl_dbg(dev, cl, "hbm: disconnect response status=%d\n", rs->status); mei_hbm_cl_disconnect_res()
773 * connection response
777 * @cmd: connect client response host bus message
785 cl_dbg(dev, cl, "hbm: connect response status=%s\n", mei_hbm_cl_connect_res()
799 * mei_hbm_cl_res - process hbm response received on behalf
854 * host sends disconnect response
882 * mei_hbm_pg_enter_res - PG enter response received
892 dev_err(dev->dev, "hbm: pg entry response: state mismatch [%s, %d]\n", mei_hbm_pg_enter_res()
915 * mei_hbm_pg_exit_res - PG exit response received
926 dev_err(dev->dev, "hbm: pg exit response: state mismatch [%s, %d]\n", mei_hbm_pg_exit_res()
946 WARN(1, "hbm: pg exit response: unexpected pg event = %d\n", mei_hbm_pg_exit_res()
1035 dev_dbg(dev->dev, "hbm: start: response message received.\n"); mei_hbm_dispatch()
1085 dev_dbg(dev->dev, "hbm: client connect response: message received.\n"); mei_hbm_dispatch()
1090 dev_dbg(dev->dev, "hbm: client disconnect response: message received.\n"); mei_hbm_dispatch()
1095 dev_dbg(dev->dev, "hbm: client flow control response: message received.\n"); mei_hbm_dispatch()
1102 dev_dbg(dev->dev, "hbm: power gate isolation entry response received\n"); mei_hbm_dispatch()
1116 dev_dbg(dev->dev, "hbm: properties response: message received.\n"); mei_hbm_dispatch()
1122 dev_err(dev->dev, "hbm: properties response: state mismatch, [%d, %d]\n", mei_hbm_dispatch()
1130 dev_err(dev->dev, "hbm: properties response: wrong status = %d %s\n", mei_hbm_dispatch()
1147 dev_dbg(dev->dev, "hbm: enumeration response: message received\n"); mei_hbm_dispatch()
1159 dev_err(dev->dev, "hbm: enumeration response: state mismatch, [%d, %d]\n", mei_hbm_dispatch()
1173 dev_dbg(dev->dev, "hbm: stop response: message received\n"); mei_hbm_dispatch()
1178 dev_err(dev->dev, "hbm: stop response: state mismatch, [%d, %d]\n", mei_hbm_dispatch()
1184 dev_info(dev->dev, "hbm: stop response: resetting.\n"); mei_hbm_dispatch()
1220 dev_err(dev->dev, "hbm: add client: failed to send response %d\n", mei_hbm_dispatch()
1228 dev_dbg(dev->dev, "hbm: notify response received\n"); mei_hbm_dispatch()
H A Dhw.h34 #define MEI_PGI_TIMEOUT 1 /* PG Isolation time response 1 sec */
35 #define MEI_D0I3_TIMEOUT 5 /* D0i3 set/unset max response time */
302 * struct hbm_add_client_response - response to add a client
318 * struct hbm_power_gate - power gate request/response
344 * struct hbm_client_connect_response - connect/disconnect response
386 * struct hbm_notification_response - start/stop notification response
391 * @status: (mei_hbm_status) response status for the request
/linux-4.4.14/drivers/mmc/host/
H A Dmvsdio.c251 unsigned int response[8], i; mvsd_finish_cmd() local
253 response[i] = mvsd_read(MVSD_RSP(i)); mvsd_finish_cmd()
254 cmd->resp[0] = ((response[0] & 0x03ff) << 22) | mvsd_finish_cmd()
255 ((response[1] & 0xffff) << 6) | mvsd_finish_cmd()
256 ((response[2] & 0xfc00) >> 10); mvsd_finish_cmd()
257 cmd->resp[1] = ((response[2] & 0x03ff) << 22) | mvsd_finish_cmd()
258 ((response[3] & 0xffff) << 6) | mvsd_finish_cmd()
259 ((response[4] & 0xfc00) >> 10); mvsd_finish_cmd()
260 cmd->resp[2] = ((response[4] & 0x03ff) << 22) | mvsd_finish_cmd()
261 ((response[5] & 0xffff) << 6) | mvsd_finish_cmd()
262 ((response[6] & 0xfc00) >> 10); mvsd_finish_cmd()
263 cmd->resp[3] = ((response[6] & 0x03ff) << 22) | mvsd_finish_cmd()
264 ((response[7] & 0x3fff) << 8); mvsd_finish_cmd()
266 unsigned int response[3], i; mvsd_finish_cmd() local
268 response[i] = mvsd_read(MVSD_RSP(i)); mvsd_finish_cmd()
269 cmd->resp[0] = ((response[2] & 0x003f) << (8 - 8)) | mvsd_finish_cmd()
270 ((response[1] & 0xffff) << (14 - 8)) | mvsd_finish_cmd()
271 ((response[0] & 0x03ff) << (30 - 8)); mvsd_finish_cmd()
272 cmd->resp[1] = ((response[0] & 0xfc00) >> 10); mvsd_finish_cmd()
321 /* Handle Auto cmd 12 response */ mvsd_finish_data()
323 unsigned int response[3], i; mvsd_finish_data() local
325 response[i] = mvsd_read(MVSD_AUTO_RSP(i)); mvsd_finish_data()
326 data->stop->resp[0] = ((response[2] & 0x003f) << (8 - 8)) | mvsd_finish_data()
327 ((response[1] & 0xffff) << (14 - 8)) | mvsd_finish_data()
328 ((response[0] & 0x03ff) << (30 - 8)); mvsd_finish_data()
329 data->stop->resp[1] = ((response[0] & 0xfc00) >> 10); mvsd_finish_data()
H A Datmel-mci-regs.h49 # define ATMCI_CMDR_RSPTYP_NONE ( 0 << 6) /* No response */
50 # define ATMCI_CMDR_RSPTYP_48BIT ( 1 << 6) /* 48-bit response */
51 # define ATMCI_CMDR_RSPTYP_136BIT ( 2 << 6) /* 136-bit response */
55 # define ATMCI_CMDR_SPCMD_INTRESP ( 5 << 8) /* Interrupt response */
H A Dandroid-goldfish.c75 /* MMC response (or R2 bits 0 - 31) */
78 /* MMC R2 response bits 32 - 63 */
81 /* MMC R2 response bits 64 - 95 */
84 /* MMC R2 response bits 96 - 127 */
181 "Invalid response type: %04x\n", mmc_resp_type(cmd)); goldfish_mmc_start_command()
268 /* response type 2 */ goldfish_mmc_cmd_done()
278 /* response types 1, 1b, 3, 4, 5, 6 */ goldfish_mmc_cmd_done()
/linux-4.4.14/drivers/firmware/
H A Dqcom_scm-32.c57 * @len: total available memory for command and response
59 * @resp_hdr_offset: start of response buffer
70 * | response header | qcom_scm_command_to_response()
72 * | response buffer |
88 * struct qcom_scm_response - one SCM response buffer
89 * @len: total available memory for response
90 * @buf_offset: start of response data relative to start of qcom_scm_response
102 * @resp_size: size of the response buffer
105 * and response headers as well as the command and response buffers.
141 * Returns a pointer to a response for a command.
161 * qcom_scm_get_response_buffer() - Get a pointer to a response buffer
162 * @rsp: response
164 * Returns a pointer to a response buffer of a response.
255 * @resp_buf: response buffer
256 * @resp_len: length of the response buffer
264 * and response buffers is taken care of by qcom_scm_call; however, callers are
/linux-4.4.14/drivers/mfd/
H A Dcros_ec_spi.c36 * SPI transfer size is 256 bytes, so at 5MHz we need a response
118 /* Reset end-of-response timer */ terminate_request()
172 struct ec_host_response *response; cros_ec_spi_receive_packet() local
226 /* If the entire response struct wasn't read, get the rest of it. */ cros_ec_spi_receive_packet()
227 if (todo < sizeof(*response)) { cros_ec_spi_receive_packet()
228 ret = receive_n_bytes(ec_dev, ptr, sizeof(*response) - todo); cros_ec_spi_receive_packet()
231 ptr += (sizeof(*response) - todo); cros_ec_spi_receive_packet()
232 todo = sizeof(*response); cros_ec_spi_receive_packet()
235 response = (struct ec_host_response *)ec_dev->din; cros_ec_spi_receive_packet()
238 if (response->data_len > ec_dev->din_size) cros_ec_spi_receive_packet()
267 * cros_ec_spi_receive_response - Receive a response from the EC.
370 struct ec_host_response *response; cros_ec_pkt_xfer_spi() local
419 /* Get the response */ cros_ec_pkt_xfer_spi()
437 ec_msg->insize + sizeof(*response)); cros_ec_pkt_xfer_spi()
450 /* check response error code */ cros_ec_pkt_xfer_spi()
451 response = (struct ec_host_response *)ptr; cros_ec_pkt_xfer_spi()
452 ec_msg->result = response->result; cros_ec_pkt_xfer_spi()
458 len = response->data_len; cros_ec_pkt_xfer_spi()
467 for (i = 0; i < sizeof(*response); i++) cros_ec_pkt_xfer_spi()
470 /* copy response packet payload and compute checksum */ cros_ec_pkt_xfer_spi()
471 memcpy(ec_msg->data, ptr + sizeof(*response), len); cros_ec_pkt_xfer_spi()
539 /* Get the response */ cros_ec_cmd_xfer_spi()
570 /* check response error code */ cros_ec_cmd_xfer_spi()
585 /* copy response packet payload and compute checksum */ cros_ec_cmd_xfer_spi()
H A Dcros_ec_i2c.c30 * byte 10- response data
44 * byte 10- response data
107 dev_err(ec_dev->dev, "failed to get response: %d\n", ret); cros_ec_pkt_xfer_i2c()
145 "response of %u bytes too short; not a full header\n", cros_ec_pkt_xfer_i2c()
153 "response data size is too large: expected %u, got %u\n", cros_ec_pkt_xfer_i2c()
160 /* copy response packet payload and compute checksum */ cros_ec_pkt_xfer_i2c()
245 dev_err(ec_dev->dev, "failed to get response: %d\n", ret); cros_ec_cmd_xfer_i2c()
250 /* check response error code */ cros_ec_cmd_xfer_i2c()
264 /* copy response packet payload and compute checksum */ cros_ec_cmd_xfer_i2c()
H A Ddln2.c62 * receive context and use it to wait for a response and to receive the URB and
63 * thus the response data.
66 /* completion used to wait for a response */
69 /* if non-NULL the URB contains the response */
72 /* if true then this context is used to wait for a response */
219 dev_warn(dev, "bad/late response %d/%d\n", handle, rx_slot); dln2_transfer_complete()
268 dev_err(dev, "short response: %d\n", urb->actual_length); dln2_rx()
480 /* if we got here we know that the response header has been checked */ _dln2_transfer()
490 dev_dbg(dev, "%d received response with error %d\n", _dln2_transfer()
700 /* cancel all response waiters */ dln2_stop()
/linux-4.4.14/include/linux/
H A Dusb_usual.h33 /* INQUIRY response needs faking */ \
35 /* READ CAPACITY response too big */ \
59 /* READ CAPACITY response is correct */ \
H A Dipmi_smi.h52 * of these to send. After the send has occurred and a response has
55 * response with an error code in the completion code location. When
57 * data_size is set to zero and the response holds the data from the
178 /* Strange, didn't get the response we expected. */ ipmi_demangle_device_id()
231 * an error response in the message response.
H A Dbsg-lib.h58 /* DMA payloads for the request/response */
H A Dlibps2.h25 #define PS2_FLAG_CMD1 4 /* Waiting for the first byte of command response */
H A Dmaple.h9 /* Maple Bus command and response codes */
/linux-4.4.14/include/net/irda/
H A Dirlap_event.h51 LAP_NRM_P, /* Normal response mode as primary */
54 LAP_NRM_S, /* Normal response mode as secondary */
114 LAP_NO_RESPONSE, /* To many retransmits without response */
/linux-4.4.14/net/llc/
H A Dllc_pdu.c194 * llc_pdu_init_as_dm_rsp - builds DM response pdu
198 * Builds a pdu frame as a DM response.
210 * llc_pdu_init_as_frmr_rsp - builds FRMR response PDU
218 * Builds a pdu frame as a FRMR response.
248 * llc_pdu_init_as_rr_rsp - builds RR response pdu
253 * Builds a pdu frame as an RR response.
268 * llc_pdu_init_as_rej_rsp - builds REJ response pdu
273 * Builds a pdu frame as a REJ response.
288 * llc_pdu_init_as_rnr_rsp - builds RNR response pdu
293 * Builds a pdu frame as an RNR response.
308 * llc_pdu_init_as_ua_rsp - builds UA response pdu
312 * Builds a pdu frame as a UA response.
H A Dllc_s_ac.c48 * Sends a UI PDU to the MAC layer in response to a UNITDATA REQUEST
67 * llc_sap_action_send_xid_c - send XID PDU as response to XID REQ
71 * Send a XID command PDU to MAC layer in response to a XID REQUEST
94 * Send XID response PDU to MAC in response to an earlier received XID
125 * Send a TEST command PDU to the MAC layer in response to a TEST REQUEST
187 * Send a XID response PDU to the network layer via a XID INDICATION
201 * Send a TEST response PDU to the network layer via a TEST INDICATION
/linux-4.4.14/drivers/scsi/libsas/
H A Dsas_task.c6 /* fill task_status_struct based on SSP response frame */ sas_ssp_task_response()
H A Dsas_host_smp.c75 * SFF-8489 defines the behavior of the LEDs in response to the 'od' values.
235 /* eight is the minimum size for request and response frames */ sas_smp_host_handler()
242 "SMP request/response frame crosses page boundary"); sas_smp_host_handler()
267 * the result is in the response frame */ sas_smp_host_handler()
270 /* set up default don't know response */ sas_smp_host_handler()
/linux-4.4.14/arch/x86/math-emu/
H A Derrors.c385 /* Masked response */ real_1op_NaN()
396 /* The masked response */ real_1op_NaN()
433 /* Masked response */ real_2op_NaN()
501 /* The masked response */ arith_invalid()
516 /* The masked response */ FPU_divide_by_zero()
533 partial_status |= flags; /* The masked response */ set_precision_flag()
545 partial_status |= (SW_Precision | SW_C1); /* The masked response */ set_precision_flag_up()
553 if (control_word & CW_Precision) { /* The masked response */ set_precision_flag_down()
562 if (control_word & CW_Denormal) { /* The masked response */ denormal_operand()
576 /* The masked response */ arith_overflow()
577 /* ###### The response here depends upon the rounding mode */ arith_overflow()
604 /* The masked response */ arith_underflow()
632 /* The masked response */ FPU_stack_overflow()
647 /* The masked response */ FPU_stack_underflow()
661 /* The masked response */ FPU_stack_underflow_i()
675 /* The masked response */ FPU_stack_underflow_pop()
H A Dfpu_aux.c121 /* The masked response */ fld_i_()
147 /* Masked response */ fxch_i()
155 /* Masked response */ fxch_i()
/linux-4.4.14/arch/sh/include/mach-landisk/mach/
H A Dgio.h20 * Q means "Query", response is on the return value
/linux-4.4.14/drivers/net/wireless/prism54/
H A Doid_mgt.c421 struct islpci_mgmtframe *response = NULL; mgt_set_request() local
455 _data, dlen, &response); mgt_set_request()
457 response_op = response->header->operation; mgt_set_request()
458 islpci_mgt_release(response); mgt_set_request()
483 struct islpci_mgmtframe *response; mgt_set_varlen() local
497 data, dlen + extra_len, &response); mgt_set_varlen()
499 response_op = response->header->operation; mgt_set_varlen()
500 islpci_mgt_release(response); mgt_set_varlen()
521 struct islpci_mgmtframe *response = NULL; mgt_get_request() local
547 oid, data, dlen, &response); mgt_get_request()
548 if (ret || !response || mgt_get_request()
549 response->header->operation == PIMFOR_OP_ERROR) { mgt_get_request()
550 if (response) mgt_get_request()
551 islpci_mgt_release(response); mgt_get_request()
555 _res = response->data; mgt_get_request()
556 reslen = response->header->length; mgt_get_request()
578 if (response && !ret) mgt_get_request()
579 islpci_mgt_release(response); mgt_get_request()
595 struct islpci_mgmtframe *response; mgt_commit_list() local
606 &response); mgt_commit_list()
607 if (response) { mgt_commit_list()
608 r |= (response->header->operation == PIMFOR_OP_ERROR); mgt_commit_list()
609 islpci_mgt_release(response); mgt_commit_list()
H A Dislpci_mgt.c264 * This can be an arbitrary number of traps, and at most one response
385 /* Signal the one waiting process that a response islpci_mgt_receive()
389 "%s: mgmt response not collected\n", islpci_mgt_receive()
439 * Perform one request-response transaction to the device.
486 "%s: timeout waiting for mgmt response %lu, " islpci_mgt_transaction()
493 printk(KERN_WARNING "%s: timeout waiting for mgmt response\n", islpci_mgt_transaction()
/linux-4.4.14/drivers/hid/
H A Dhid-logitech-hidpp.c183 struct hidpp_report *response) hidpp_send_message_sync()
189 hidpp->send_receive_buf = response; hidpp_send_message_sync()
196 *response = *message; hidpp_send_message_sync()
202 memset(response, 0, sizeof(struct hidpp_report)); hidpp_send_message_sync()
208 dbg_hid("%s:timeout waiting for response\n", __func__); hidpp_send_message_sync()
209 memset(response, 0, sizeof(struct hidpp_report)); hidpp_send_message_sync()
213 if (response->report_id == REPORT_ID_HIDPP_SHORT && hidpp_send_message_sync()
214 response->rap.sub_id == HIDPP_ERROR) { hidpp_send_message_sync()
215 ret = response->rap.params[1]; hidpp_send_message_sync()
220 if (response->report_id == REPORT_ID_HIDPP_LONG && hidpp_send_message_sync()
221 response->fap.feature_index == HIDPP20_ERROR) { hidpp_send_message_sync()
222 ret = response->fap.params[1]; hidpp_send_message_sync()
235 struct hidpp_report *response) hidpp_send_fap_command_sync()
251 ret = hidpp_send_message_sync(hidpp, message, response); hidpp_send_fap_command_sync()
258 struct hidpp_report *response) hidpp_send_rap_command_sync()
278 ret = hidpp_send_message_sync(hidpp_dev, message, response); hidpp_send_rap_command_sync()
353 struct hidpp_report response; hidpp_get_unifying_name() local
364 params, 1, &response); hidpp_get_unifying_name()
368 len = response.rap.params[1]; hidpp_get_unifying_name()
370 if (2 + len > sizeof(response.rap.params)) hidpp_get_unifying_name()
377 memcpy(name, &response.rap.params[2], len); hidpp_get_unifying_name()
398 struct hidpp_report response; hidpp_root_get_feature() local
405 params, 2, &response); hidpp_root_get_feature()
409 *feature_index = response.fap.params[0]; hidpp_root_get_feature()
410 *feature_type = response.fap.params[1]; hidpp_root_get_feature()
417 struct hidpp_report response; hidpp_root_get_protocol_version() local
423 NULL, 0, &response); hidpp_root_get_protocol_version()
443 hidpp->protocol_major = response.fap.params[0]; hidpp_root_get_protocol_version()
444 hidpp->protocol_minor = response.fap.params[1]; hidpp_root_get_protocol_version()
473 struct hidpp_report response; hidpp_devicenametype_get_count() local
477 CMD_GET_DEVICE_NAME_TYPE_GET_COUNT, NULL, 0, &response); hidpp_devicenametype_get_count()
487 *nameLength = response.fap.params[0]; hidpp_devicenametype_get_count()
495 struct hidpp_report response; hidpp_devicenametype_get_device_name() local
501 &response); hidpp_devicenametype_get_device_name()
511 if (response.report_id == REPORT_ID_HIDPP_LONG) hidpp_devicenametype_get_device_name()
520 device_name[i] = response.fap.params[i]; hidpp_devicenametype_get_device_name()
588 struct hidpp_report response; hidpp_touchpad_fw_items_set() local
590 u8 *params = (u8 *)response.fap.params; hidpp_touchpad_fw_items_set()
593 CMD_TOUCHPAD_FW_ITEMS_SET, &items->state, 1, &response); hidpp_touchpad_fw_items_set()
658 struct hidpp_report response; hidpp_touchpad_get_raw_info() local
660 u8 *params = (u8 *)response.fap.params; hidpp_touchpad_get_raw_info()
663 CMD_TOUCHPAD_GET_RAW_INFO, NULL, 0, &response); hidpp_touchpad_get_raw_info()
689 struct hidpp_report response; hidpp_touchpad_set_raw_report_state() local
703 CMD_TOUCHPAD_SET_RAW_REPORT_STATE, &params, 1, &response); hidpp_touchpad_set_raw_report_state()
1040 struct hidpp_report response; m560_send_config_command() local
1055 &response m560_send_config_command()
181 hidpp_send_message_sync(struct hidpp_device *hidpp, struct hidpp_report *message, struct hidpp_report *response) hidpp_send_message_sync() argument
233 hidpp_send_fap_command_sync(struct hidpp_device *hidpp, u8 feat_index, u8 funcindex_clientid, u8 *params, int param_count, struct hidpp_report *response) hidpp_send_fap_command_sync() argument
256 hidpp_send_rap_command_sync(struct hidpp_device *hidpp_dev, u8 report_id, u8 sub_id, u8 reg_address, u8 *params, int param_count, struct hidpp_report *response) hidpp_send_rap_command_sync() argument
H A Dhid-hyperv.c137 struct synthhid_protocol_response response; member in union:mousevsc_prt_msg::__anon4991
151 /* Synchronize the request/response if needed */
387 struct mousevsc_prt_msg *response; mousevsc_connect_to_vsp() local
414 response = &input_dev->protocol_resp; mousevsc_connect_to_vsp()
416 if (!response->response.approved) { mousevsc_connect_to_vsp()
/linux-4.4.14/drivers/firewire/
H A Dcore-transaction.c308 * @generation: bus generation in which request and response are valid
338 * @callback will be called. Among its parameters is the response code which
416 * to the payload of the response. DMA mapping restrictions apply to outbound
417 * request payloads of >= 8 bytes but not to inbound response payloads.
623 struct fw_packet response; member in struct:fw_request
635 request = container_of(packet, struct fw_request, response); free_response_callback()
674 void fw_fill_response(struct fw_packet *response, u32 *request_header, fw_fill_response() argument
685 response->header[0] = fw_fill_response()
689 response->header[1] = fw_fill_response()
692 response->header[2] = 0; fw_fill_response()
697 response->header[0] |= HEADER_TCODE(TCODE_WRITE_RESPONSE); fw_fill_response()
698 response->header_length = 12; fw_fill_response()
699 response->payload_length = 0; fw_fill_response()
703 response->header[0] |= fw_fill_response()
706 response->header[3] = *(u32 *)payload; fw_fill_response()
708 response->header[3] = 0; fw_fill_response()
709 response->header_length = 16; fw_fill_response()
710 response->payload_length = 0; fw_fill_response()
715 response->header[0] |= HEADER_TCODE(tcode + 2); fw_fill_response()
716 response->header[3] = fw_fill_response()
719 response->header_length = 16; fw_fill_response()
720 response->payload = payload; fw_fill_response()
721 response->payload_length = length; fw_fill_response()
728 response->payload_mapped = false; fw_fill_response()
788 request->response.speed = p->speed; allocate_request()
789 request->response.timestamp = allocate_request()
791 request->response.generation = p->generation; allocate_request()
792 request->response.ack = 0; allocate_request()
793 request->response.callback = free_response_callback; allocate_request()
818 fw_fill_response(&request->response, request->request_header, fw_send_response()
822 fw_fill_response(&request->response, request->request_header, fw_send_response()
825 card->driver->send_response(card, &request->response); fw_send_response()
834 return request->response.speed; fw_get_request_speed()
968 fw_notice(card, "unsolicited response (source %x, tlabel %x)\n", fw_core_handle_response()
1003 * The response handler may be executed while the request handler fw_core_handle_response()
H A Dsbp2.c242 /* Status write response codes */
292 struct sbp2_pointer response; member in struct:sbp2_management_orb::__anon3949
297 __be32 response[4]; member in struct:sbp2_management_orb
562 int lun_or_login_id, void *response) sbp2_send_management_orb()
578 dma_map_single(device->card->device, &orb->response, sbp2_send_management_orb()
579 sizeof(orb->response), DMA_FROM_DEVICE); sbp2_send_management_orb()
583 orb->request.response.high = 0; sbp2_send_management_orb()
584 orb->request.response.low = cpu_to_be32(orb->response_bus); sbp2_send_management_orb()
591 MANAGEMENT_ORB_RESPONSE_LENGTH(sizeof(orb->response))); sbp2_send_management_orb()
649 sizeof(orb->response), DMA_FROM_DEVICE); sbp2_send_management_orb()
651 if (response) sbp2_send_management_orb()
652 memcpy(response, orb->response, sizeof(orb->response)); sbp2_send_management_orb()
816 struct sbp2_login_response response; sbp2_login() local
833 SBP2_LOGIN_REQUEST, lu->lun, &response) < 0) { sbp2_login()
851 ((u64)(be32_to_cpu(response.command_block_agent.high) & 0xffff) sbp2_login()
852 << 32) | be32_to_cpu(response.command_block_agent.low); sbp2_login()
853 lu->login_id = be32_to_cpu(response.misc) & 0xffff; sbp2_login()
560 sbp2_send_management_orb(struct sbp2_logical_unit *lu, int node_id, int generation, int function, int lun_or_login_id, void *response) sbp2_send_management_orb() argument
/linux-4.4.14/drivers/scsi/fnic/
H A Dfcpio.h119 * a host request, it will copy the tag field into the response.
344 * used for requesting the firmware to send out a response for a target
353 u8 flags; /* response request flags */
365 * fcpio_ttmf_ack: host -> firmware response
498 * fcpio_icmnd_cmpl: firmware -> host response
500 * used for sending the host a response to an initiator command
504 u8 flags; /* response flags */
511 * response flags
517 * fcpio_itmf_cmpl: firmware -> host response
519 * used for sending the host a response for a itmf request
577 * fcpio_tdrsp_cmpl: firmware -> host response
579 * used by the firmware to notify the host of a response to a host target
612 * fcpio_tabort_cmpl: firmware -> host response
622 * fcpio_ack: firmware -> host response
632 * fcpio_reset_cmpl: firmware -> host response
641 * fcpio_flogi_reg_cmpl: firmware -> host response
644 * response to the fcpio_flogi_reg request
651 * fcpio_echo_cmpl: firmware -> host response
653 * response to the fcpio_echo request
670 * fcpio_lunmap_req_cmpl: firmware -> host response
673 * response for lunmap table request from the host
713 * Firmware response to work received
H A Dfnic_fip.h56 FIP_VLAN_FAILED = 3, /* failed to response */
/linux-4.4.14/drivers/net/wireless/mwifiex/
H A Dsta_cmdresp.c2 * Marvell Wireless LAN device driver: station command response handling
31 * This function handles the command response error case.
33 * For scan response error, the function cancels all the pending
40 * For all other response errors, the current command buffer is freed
111 * This function handles the command response of get RSSI info.
172 * This function handles the command response of set/get SNMP
229 * This function handles the command response of get log request
270 * This function handles the command response of set/get Tx rate
347 * This function handles the command response of get Tx power level.
391 * This function handles the command response of set/get Tx power
450 * This function handles the command response of get RF Tx power.
474 * This function handles the command response of set rf antenna
501 * This function handles the command response of set/get MAC address.
520 * This function handles the command response of set/get MAC multicast
530 * This function handles the command response of get Tx rate query.
552 * This function handles the command response of a deauthenticate
573 * This function handles the command response of ad-hoc stop.
585 * This function handles the command response of set/get v1 key material.
616 * This function handles the command response of set/get v2 key material.
651 /* Wrapper function for processing response of key material command */ mwifiex_ret_802_11_key_material()
662 * This function handles the command response of get 11d domain information.
703 * This function handles the command response of get extended version.
724 * This function handles the command response of remain on channel.
740 * This function handles the command response of P2P mode cfg.
755 /* This function handles the command response of mem_access command
769 * This function handles the command response of register access.
842 * This function handles the command response of get IBSS coalescing status.
939 "Unknown TDLS command action response %d", action); mwifiex_ret_tdls_oper()
946 * This function handles the command response for subscribe event command.
984 /* This function handles the command response of set_cfg_data */ mwifiex_ret_cfg_data()
996 /** This Function handles the command response of sdio rx aggr */ mwifiex_ret_sdio_rx_aggr_cfg()
1036 * response handlers based on the command ID.
1050 /* Command successful, handle response */ mwifiex_process_sta_cmdresp()
1243 "CMD_RESP: unknown cmd response %#x\n", mwifiex_process_sta_cmdresp()
H A Djoin.c93 * - The TSF of the target AP from its previous beacon/probe response
95 * beacon/probe response.
408 /* Save so we know which BSS Desc to use in the response handler */ mwifiex_cmd_802_11_associate()
577 * Association firmware command response handler
579 * The response buffer for the association command has the following
582 * For cases where an association response was not received (indicated
586 * | Header(4 * sizeof(t_u16)): Standard command response hdr |
592 * | 0xFFFC(-4): Timeout waiting for AP response |
608 * | response. |
611 * | (1) Association response timeout |
612 * | (2) Authentication response timeout |
618 * For cases where an association response was received, the IEEE
619 * standard association response frame is returned:
622 * | Header(4 * sizeof(t_u16)): Standard command response hdr |
632 * | association response frame. |
1085 * from the scan response.
1171 /* Copy Data Rates from the Rates recorded in scan response */ mwifiex_cmd_802_11_ad_hoc_join()
1238 * This function handles the command response of ad-hoc start and
1331 * It clears any past association response stored for application
1352 /* Clear any past association response stored for application mwifiex_associate()
H A Dcmdevt.c86 * in case a response buffer is still available before resetting
387 * buffers that still have response buffers associated with them.
780 * This function handles the command response.
796 /* Now we got response from FW, cancel the command timer */ mwifiex_process_cmdresp()
811 /* Copy original response back to response buffer */ mwifiex_process_cmdresp()
837 /* Save the last command response to debug log */ mwifiex_process_cmdresp()
868 /* handle response */ mwifiex_process_cmdresp()
872 /* Check init command response */ mwifiex_process_cmdresp()
1015 /* no recycle probably wait for response */ mwifiex_cancel_all_pending_cmd()
1130 * The sleep confirm command cannot be issued if command response,
1131 * data response or event response is awaiting handling, or if we
1133 * response.
1179 * This function handles the command response of a Host Sleep configuration
1244 * This function handles the command response of a sleep confirm command.
1246 * The function sets the card state to SLEEP if the response indicates success.
1396 * This function handles the command response of an enhanced power mode
1487 * This function handles the command response of get hardware
H A Die.c148 /* Copy individual custom IEs for beacon, probe response and assoc response
254 /* This function parses beacon IEs, probe response IEs, association response IEs
403 * probe response IEs, association response IEs from cfg80211_ap_settings
/linux-4.4.14/net/rxrpc/
H A Drxkad.c627 * send a Kerberos security response
677 * calculate the response checksum
679 static void rxkad_calc_response_checksum(struct rxkad_response *response) rxkad_calc_response_checksum() argument
683 u8 *p = (u8 *) response; rxkad_calc_response_checksum()
685 for (loop = sizeof(*response); loop > 0; loop--) rxkad_calc_response_checksum()
688 response->encrypted.checksum = htonl(csum); rxkad_calc_response_checksum()
715 * encrypt the response packet
785 /* build the response packet */ rxkad_respond_to_challenge()
805 /* calculate the response checksum and then do the encryption */ rxkad_respond_to_challenge()
817 * decrypt the kerberos IV ticket in the response
963 * decrypt the response packet
996 * verify a response
1002 struct rxkad_response response rxkad_verify_response() local
1015 if (skb_copy_bits(skb, 0, &response, sizeof(response)) < 0) rxkad_verify_response()
1017 if (!pskb_pull(skb, sizeof(response))) rxkad_verify_response()
1020 version = ntohl(response.version); rxkad_verify_response()
1021 ticket_len = ntohl(response.ticket_len); rxkad_verify_response()
1022 kvno = ntohl(response.kvno); rxkad_verify_response()
1057 * response */ rxkad_verify_response()
1058 rxkad_decrypt_response(conn, &response, &session_key); rxkad_verify_response()
1061 if (response.encrypted.epoch != conn->epoch) rxkad_verify_response()
1063 if (response.encrypted.cid != conn->cid) rxkad_verify_response()
1065 if (ntohl(response.encrypted.securityIndex) != conn->security_ix) rxkad_verify_response()
1067 csum = response.encrypted.checksum; rxkad_verify_response()
1068 response.encrypted.checksum = 0; rxkad_verify_response()
1069 rxkad_calc_response_checksum(&response); rxkad_verify_response()
1070 if (response.encrypted.checksum != csum) rxkad_verify_response()
1073 if (ntohl(response.encrypted.call_id[0]) > INT_MAX || rxkad_verify_response()
1074 ntohl(response.encrypted.call_id[1]) > INT_MAX || rxkad_verify_response()
1075 ntohl(response.encrypted.call_id[2]) > INT_MAX || rxkad_verify_response()
1076 ntohl(response.encrypted.call_id[3]) > INT_MAX) rxkad_verify_response()
1080 if (response.encrypted.inc_nonce != htonl(conn->security_nonce + 1)) rxkad_verify_response()
1084 level = ntohl(response.encrypted.level); rxkad_verify_response()
/linux-4.4.14/include/net/9p/
H A D9p.h79 * @P9_RLERROR: response for any failed request for 9P2000.L
81 * @P9_RSTATFS: file system status response
83 * @P9_RSYMLINK: make symlink response
85 * @P9_RMKNOD: create a special file object response
87 * @P9_RLCREATE: response with file access information for 9P2000.L
89 * @P9_RRENAME: rename response
91 * @P9_RMKDIR: create a directory response
93 * @P9_RVERSION: version handshake response
95 * @P9_RAUTH: response with authentication information
97 * @P9_RATTACH: response with top level handle to file hierarchy
99 * @P9_RERROR: response for any failed request
101 * @P9_RFLUSH: response when previous request has been cancelled
103 * @P9_RWALK: response with new handle for position within hierarchy
105 * @P9_ROPEN: response with file access information
107 * @P9_RCREATE: response with file access information
109 * @P9_RREAD: response with data requested
111 * @P9_RWRITE: response with out much data was transferred to file
113 * @P9_RCLUNK: response when server has forgotten about the handle
115 * @P9_RREMOVE: response when server has removed the entity
117 * @P9_RSTAT: response with file entity attributes
119 * @P9_RWSTAT: response when file entity attributes are updated
/linux-4.4.14/include/xen/interface/io/
H A Dtpmif.h34 VTPM_STATE_FINISH, /* response ready / vTPM idle */
42 uint32_t length; /* request/response length in bytes */
H A Dxs_wire.h67 uint32_t req_id;/* Request identifier, echoed in daemon's response. */
/linux-4.4.14/include/sound/
H A Dmax98095.h16 /* Equalizer filter response configuration */
27 /* Biquad filter response configuration */
H A Dmax98088.h16 /* Equalizer filter response configuration */
H A Dhda_hwdep.h34 u32 res; /* response */
/linux-4.4.14/include/uapi/linux/
H A Dbsg.h34 __u64 response; /* [i], [*o] {SCSI: (auto)sense data} */ member in struct:sg_io_v4
56 __u32 response_len; /* [o] bytes of response actually written */
H A Dipmi.h55 * response doesn't come back in time, the driver will return a
56 * timeout error response to the application. Asynchronous events
109 * that any message (a request or response) from another device will
150 * byte of data in the response (as the spec shows the messages laid
181 * it allows you to get the message results when you send a response
184 #define IPMI_RESPONSE_RECV_TYPE 1 /* A response to a command */
187 #define IPMI_RESPONSE_RESPONSE_TYPE 4 /* The response for
188 a sent response, giving any
190 response. When you send a
191 response message, this will
193 #define IPMI_OEM_RECV_TYPE 5 /* The response for OEM Channels */
196 code as the first byte of the incoming data, unlike a response. */
258 response to this request if it is a command.
259 If it is a response, this will be used as
260 the sequence value for the response. */
299 int recv_type; /* Is this a command, response or an
312 if this is a response. If this is a command,
H A Dfanotify.h73 * All events which require a permission response from userspace
96 __u32 response; member in struct:fanotify_response
H A Dvirtio_scsi.h71 __u8 response; /* Response values */ member in struct:virtio_scsi_cmd_resp
84 __u8 response; member in struct:virtio_scsi_ctrl_tmf_resp
96 __u8 response; member in struct:virtio_scsi_ctrl_an_resp
H A Dcgroupstats.h48 CGROUPSTATS_CMD_GET, /* user->kernel request/get-response */
H A Dfirewire-cdev.h97 * struct fw_cdev_event_response - Sent when a response packet was received
103 * @length: Data length, i.e. the response's payload size in bytes
106 * This event is sent when the stack receives a response to an outgoing request
112 * involve response packets. This includes unified write transactions,
159 * responsible for sending the response by %FW_CDEV_IOC_SEND_RESPONSE ioctl,
179 * request but will not actually send a response packet.
182 * sent a write response immediately after the request was received; in this
184 * release the kernel-side pending request, though another response won't be
359 * @response: Valid if @common.type == %FW_CDEV_EVENT_RESPONSE
374 * processing. Note that for a request, response or iso_interrupt event,
383 struct fw_cdev_event_response response; member in union:fw_cdev_event
441 * - shared use and auto-response for FCP registers
495 * @closure: Passed back to userspace in the response event
503 * user space in the response event.
515 * struct fw_cdev_send_response - Send an asynchronous response packet
521 * Send a response to an incoming request. By setting up an address range using
554 * is exclusive except for the FCP command and response registers. If an
981 * @closure: Passed back to userspace in the response event
/linux-4.4.14/arch/ia64/include/asm/sn/
H A Dl1.h12 /* brick type response codes */
40 /* board type response codes */
/linux-4.4.14/sound/usb/line6/
H A Dpcm.h52 *) optional impulse response measurement
63 IMPULSE = optional impulse response measurement
172 /* Volume of impulse response test signal (if zero, test is disabled) */
175 /* Period of impulse response test signal */
178 /* Counter for impulse response test signal */
/linux-4.4.14/include/linux/mfd/
H A Ddln2.h48 * dln2_transfer - issue a DLN2 command and wait for a response and the
56 * @ibuf - any data associated with the response will be copied here; it can be
57 * NULL if the user doesn't need the response data
72 * @ibuf - any data associated with the response will be copied here; it can be
73 * NULL if the user doesn't need the response data
H A Dcros_ec_commands.h225 /* Host command response codes */
236 EC_RES_UNAVAILABLE = 9, /* No response available */
308 * all params/response data bytes.
320 * unknown length. EC must respond with an old-style response (that is,
325 * Args are from EC. Data area at EC_LPC_ADDR_HOST_PARAM contains response.
328 * response. Command version is 0 and response data from EC is at
348 * 6. - - EC finishes processing and sets up response
350 * 8. (response packet) - AP reads response packet
369 * Framing byte which precedes a response packet from the EC. After sending a
371 * clock in the response packet.
376 * Padding bytes which are clocked out after the end of a response packet.
427 * The corresponding response is:
447 /* Maximum request and response packet sizes for protocol version 2 */
493 /* Version 3 response from EC */
499 * Checksum of response and data; sum of all bytes including checksum
519 * return response data specify structs for that data. If no struct is
521 * Parameter/response length is implicit in the structs. Some underlying
685 /* Maximum response packet size, in bytes */
1464 /* RTC params and response structures */
1637 * expected response size.
1792 * Host event mask params and response structures, shared by all of the host
1830 /* Version 0 params; no response */
1854 /* Version 1 response */
1877 /* Version 0 of input params and response */
1885 /* Version 1 of input params and response */
2281 * differ between boards or batteries. On a set operation, the response
2469 * reboots, the host will reboot too, so there is no response to this command.
2476 * Resend last response (not supported on LPC).
2478 * Returns EC_RES_UNAVAILABLE if there is no response available - for example,
2479 * there was no previous command, or the previous command's response was too
2565 * EC forwards PD MCU response back to the AP
/linux-4.4.14/drivers/gpu/drm/gma500/
H A Dpsb_intel_sdvo.c457 /* the following two are to read the response */ psb_intel_sdvo_write_cmd()
484 void *response, int response_len) psb_intel_sdvo_read_response()
522 /* Read the command response */ psb_intel_sdvo_read_response()
526 &((u8 *)response)[i])) psb_intel_sdvo_read_response()
528 DRM_DEBUG_KMS(" %02X", ((u8 *)response)[i]); psb_intel_sdvo_read_response()
585 * This function is making an assumption about the layout of the response,
590 struct psb_intel_sdvo_get_trained_inputs_response response; psb_intel_sdvo_get_trained_inputs() local
592 BUILD_BUG_ON(sizeof(response) != 1); psb_intel_sdvo_get_trained_inputs()
594 &response, sizeof(response))) psb_intel_sdvo_get_trained_inputs()
597 *input_1 = response.input0_trained; psb_intel_sdvo_get_trained_inputs()
598 *input_2 = response.input1_trained; psb_intel_sdvo_get_trained_inputs()
1253 u8 response[2];
1264 &response, 2) && response[0];
1269 u8 response[2];
1274 psb_intel_sdvo_read_response(psb_intel_sdvo, &response, 2);
1278 status = psb_intel_sdvo_read_response(psb_intel_sdvo, &response, 2);
1280 psb_intel_sdvo_write_cmd(psb_intel_sdvo, SDVO_CMD_SET_ACTIVE_HOT_PLUG, &response, 2);
1282 response[0] = 0;
1283 response[1] = 0;
1284 psb_intel_sdvo_write_cmd(psb_intel_sdvo, SDVO_CMD_SET_ACTIVE_HOT_PLUG, &response, 2);
1288 psb_intel_sdvo_read_response(psb_intel_sdvo, &response, 2);
1380 uint16_t response; psb_intel_sdvo_detect() local
1394 if (!psb_intel_sdvo_read_response(psb_intel_sdvo, &response, 2)) psb_intel_sdvo_detect()
1397 DRM_DEBUG_KMS("SDVO response %d %d [%x]\n", psb_intel_sdvo_detect()
1398 response & 0xff, response >> 8, psb_intel_sdvo_detect()
1401 if (response == 0) psb_intel_sdvo_detect()
1404 psb_intel_sdvo->attached_output = response; psb_intel_sdvo_detect()
1409 if ((psb_intel_sdvo_connector->output_flag & response) == 0) psb_intel_sdvo_detect()
1436 if (response & SDVO_TV_MASK) { psb_intel_sdvo_detect()
1440 if (response & SDVO_LVDS_MASK) psb_intel_sdvo_detect()
2297 !psb_intel_sdvo_get_value(psb_intel_sdvo, SDVO_CMD_GET_##NAME, &response, 2)) \
2300 psb_intel_sdvo_connector->cur_##name = response; \
2308 data_value[0], data_value[1], response); \
2319 uint16_t response, data_value[2]; psb_intel_sdvo_create_enhance_property_tv() local
2330 &response, 2)) psb_intel_sdvo_create_enhance_property_tv()
2334 psb_intel_sdvo_connector->left_margin = data_value[0] - response; psb_intel_sdvo_create_enhance_property_tv()
2355 data_value[0], data_value[1], response); psb_intel_sdvo_create_enhance_property_tv()
2366 &response, 2)) psb_intel_sdvo_create_enhance_property_tv()
2370 psb_intel_sdvo_connector->top_margin = data_value[0] - response; psb_intel_sdvo_create_enhance_property_tv()
2391 data_value[0], data_value[1], response); psb_intel_sdvo_create_enhance_property_tv()
2408 if (!psb_intel_sdvo_get_value(psb_intel_sdvo, SDVO_CMD_GET_DOT_CRAWL, &response, 2)) psb_intel_sdvo_create_enhance_property_tv()
2412 psb_intel_sdvo_connector->cur_dot_crawl = response & 0x1; psb_intel_sdvo_create_enhance_property_tv()
2421 DRM_DEBUG_KMS("dot crawl: current %d\n", response); psb_intel_sdvo_create_enhance_property_tv()
2434 uint16_t response, data_value[2]; psb_intel_sdvo_create_enhance_property_lvds() local
2447 uint16_t response; psb_intel_sdvo_create_enhance_property() member in union:__anon4229
2452 enhancements.response = 0; psb_intel_sdvo_create_enhance_property()
2456 if (enhancements.response == 0) { psb_intel_sdvo_create_enhance_property()
483 psb_intel_sdvo_read_response(struct psb_intel_sdvo *psb_intel_sdvo, void *response, int response_len) psb_intel_sdvo_read_response() argument
/linux-4.4.14/drivers/net/ethernet/cisco/enic/
H A Denic_pp.c322 int request, u16 *response) enic_process_get_pp_request()
348 *response = PORT_PROFILE_RESPONSE_SUCCESS; enic_process_get_pp_request()
351 *response = PORT_PROFILE_RESPONSE_INVALID; enic_process_get_pp_request()
354 *response = PORT_PROFILE_RESPONSE_BADSTATE; enic_process_get_pp_request()
357 *response = PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES; enic_process_get_pp_request()
360 *response = PORT_PROFILE_RESPONSE_INPROGRESS; enic_process_get_pp_request()
363 *response = PORT_PROFILE_RESPONSE_ERROR; enic_process_get_pp_request()
321 enic_process_get_pp_request(struct enic *enic, int vf, int request, u16 *response) enic_process_get_pp_request() argument
H A Denic_pp.h33 int request, u16 *response);
/linux-4.4.14/fs/cifs/
H A Dcifsencrypt.c101 server->session_key.response, server->session_key.len); cifs_calc_signature()
103 cifs_dbg(VFS, "%s: Could not update with response\n", __func__); cifs_calc_signature()
264 /* first calculate 24 bytes ntlm response and then 16 byte session key */ setup_ntlm_response()
274 ses->auth_key.response = kmalloc(temp_len, GFP_KERNEL); setup_ntlm_response()
275 if (!ses->auth_key.response) setup_ntlm_response()
281 ses->auth_key.response + CIFS_SESS_KEY_SIZE, nls_cp); setup_ntlm_response()
283 cifs_dbg(FYI, "%s Can't generate NTLM response, error: %d\n", setup_ntlm_response()
295 rc = mdfour(ses->auth_key.response, temp_key, CIFS_SESS_KEY_SIZE); setup_ntlm_response()
370 ses->auth_key.response = kzalloc(ses->auth_key.len, GFP_KERNEL); build_avpair_blob()
371 if (!ses->auth_key.response) { build_avpair_blob()
376 blobptr = ses->auth_key.response; build_avpair_blob()
411 if (!ses->auth_key.len || !ses->auth_key.response) find_domain_name()
414 blobptr = ses->auth_key.response; find_domain_name()
463 if (!ses->auth_key.len || !ses->auth_key.response) find_timestamp()
466 blobptr = ses->auth_key.response; find_timestamp()
598 (ses->auth_key.response + CIFS_SESS_KEY_SIZE); CalcNTLMv2_response()
633 cifs_dbg(VFS, "%s: Could not update with response\n", __func__); CalcNTLMv2_response()
713 tiblob = ses->auth_key.response; setup_ntlmv2_rsp()
715 ses->auth_key.response = kmalloc(baselen + tilen, GFP_KERNEL); setup_ntlmv2_rsp()
716 if (!ses->auth_key.response) { setup_ntlmv2_rsp()
724 (ses->auth_key.response + CIFS_SESS_KEY_SIZE); setup_ntlmv2_rsp()
732 memcpy(ses->auth_key.response + baselen, tiblob, tilen); setup_ntlmv2_rsp()
747 /* calculate first part of the client response (CR1) */ setup_ntlmv2_rsp()
773 cifs_dbg(VFS, "%s: Could not update with response\n", __func__); setup_ntlmv2_rsp()
778 ses->auth_key.response); setup_ntlmv2_rsp()
808 rc = crypto_blkcipher_setkey(tfm_arc4, ses->auth_key.response, calc_seckey()
811 cifs_dbg(VFS, "%s: Could not set response as a key\n", calc_seckey()
827 memcpy(ses->auth_key.response, sec_key, CIFS_SESS_KEY_SIZE); calc_seckey()
H A Dsess.c273 returned by old servers in the SMB negprot response */ decode_ascii_ssetup()
318 ses->auth_key.response = kmemdup(bcc_ptr + tioffset, tilen, decode_ntlmssp_challenge()
320 if (!ses->auth_key.response) { decode_ntlmssp_challenge()
409 memcpy(tmp, ses->auth_key.response + CIFS_SESS_KEY_SIZE, build_ntlmssp_auth_blob()
605 ses->server->session_key.response = sess_establish_session()
606 kmemdup(ses->auth_key.response, sess_establish_session()
608 if (!ses->server->session_key.response) { sess_establish_session()
687 * security mode bit in Negottiate Protocol response states sess_auth_lanman()
688 * to use challenge/response method (i.e. Password bit is 1). sess_auth_lanman()
721 /* lanman response has a word count of 3 */ sess_auth_lanman()
790 /* calculate ntlm response and session key */ sess_auth_ntlm()
798 /* copy ntlm response */ sess_auth_ntlm()
799 memcpy(bcc_ptr, ses->auth_key.response + CIFS_SESS_KEY_SIZE, sess_auth_ntlm()
802 memcpy(bcc_ptr, ses->auth_key.response + CIFS_SESS_KEY_SIZE, sess_auth_ntlm()
868 kfree(ses->auth_key.response); sess_auth_ntlm()
869 ses->auth_key.response = NULL; sess_auth_ntlm()
899 /* calculate nlmv2 response and session key */ sess_auth_ntlmv2()
906 memcpy(bcc_ptr, ses->auth_key.response + CIFS_SESS_KEY_SIZE, sess_auth_ntlmv2()
976 kfree(ses->auth_key.response); sess_auth_ntlmv2()
977 ses->auth_key.response = NULL; sess_auth_ntlmv2()
1015 * sending us a response in an expected form sess_auth_kerberos()
1025 ses->auth_key.response = kmemdup(msg->data, msg->sesskey_len, sess_auth_kerberos()
1027 if (!ses->auth_key.response) { sess_auth_kerberos()
1115 kfree(ses->auth_key.response); sess_auth_kerberos()
1116 ses->auth_key.response = NULL; sess_auth_kerberos()
1251 kfree(ses->auth_key.response); sess_auth_rawntlmssp_negotiate()
1252 ses->auth_key.response = NULL; sess_auth_rawntlmssp_negotiate()
1303 * the uid that it just gave us back on the response sess_auth_rawntlmssp_authenticate()
1370 kfree(ses->auth_key.response); sess_auth_rawntlmssp_authenticate()
1371 ses->auth_key.response = NULL; sess_auth_rawntlmssp_authenticate()
/linux-4.4.14/include/linux/mmc/
H A Dcore.h25 unsigned int flags; /* expected response type */
27 #define MMC_RSP_136 (1 << 1) /* 136 bit response */
30 #define MMC_RSP_OPCODE (1 << 4) /* response contains opcode */
44 * These are the native response types, and correspond to valid bit
46 * is all zeros, which means we don't expect a response.
61 * These are the SPI response types for MMC, SD, and SDIO cards.
90 * (e.g. CRC check failed, incorrect opcode in response
H A Dsd.h15 /* SD commands type argument response */
/linux-4.4.14/drivers/target/tcm_fc/
H A Dtfc_cmd.c115 * Send response.
163 * Send response. ft_queue_status()
171 pr_info_ratelimited("%s: Failed to send response frame %p, " ft_queue_status()
175 * to reduce it's queue_depth after the se_cmd response has ft_queue_status()
250 * FC sequence response handler for follow-on sequences (data) and aborts.
284 * Send a FCP response including SCSI status and optional FCP rsp_code.
300 pr_debug("FCP error response: did %x oxid %x status %x code %x\n", ft_send_resp_status()
329 * Send error or task management response.
340 * Send error or task management response.
406 switch (tmr->response) { ft_queue_tm_resp()
423 tmr->function, tmr->response, code); ft_queue_tm_resp()
559 * directly from ft_check_stop_free callback in response path. ft_send_work()
/linux-4.4.14/drivers/scsi/snic/
H A Dsnic_fwint.h104 u8 type; /* request/response type */
173 * Used by firmware to send response to version request
223 * snic_report_tgts_cmpl : firmware -> host response
225 * Used by firmware to send response to Report Targets request
292 * snic_icmnd_cmpl: firmware -> host response
294 * Used for sending the host a response to an icmnd (initiator command)
336 * used for sending the host a response for a itmf request
362 * snic_hba_reset_cmpl: firmware -> host response
372 * snic_notify_msg: firmware -> host response
469 /* scsi response */
472 /* task management response */
475 /* hba reset response */
/linux-4.4.14/drivers/media/firewire/
H A Dfiredtv-avc.c86 u8 response; member in struct:avc_response_frame
261 dev_err(fdtv->device, "FCP response timed out\n"); avc_write()
283 switch (r->response) { avc_recv()
294 "remote control result = %d\n", r->response); avc_recv()
300 dev_err(fdtv->device, "out-of-order AVC response, ignored\n"); avc_recv()
663 /* FIXME: check response code? */ avc_tuner_set_pids()
703 /* FIXME: check response code? */ avc_tuner_get_ts()
739 if ((r->response != AVC_RESPONSE_STABLE && avc_identify_subunit()
740 r->response != AVC_RESPONSE_ACCEPTED) || avc_identify_subunit()
779 if (r->response != AVC_RESPONSE_STABLE && avc_tuner_status()
780 r->response != AVC_RESPONSE_ACCEPTED) { avc_tuner_status()
869 if (r->response != AVC_RESPONSE_ACCEPTED) { avc_lnb_control()
899 /* FIXME: check response code? */ avc_register_remote_control()
938 /* FIXME: check response code? */
996 /* FIXME: check response code and validate response data */ avc_ca_app_info()
1037 /* FIXME: check response code and validate response data */ avc_ca_info()
1086 /* FIXME: check response code? */ avc_ca_reset()
1218 if (r->response != AVC_RESPONSE_ACCEPTED) { avc_ca_pmt()
1220 "CA PMT failed with response 0x%x\n", r->response); avc_ca_pmt()
1254 /* FIXME: check response code and validate response data */ avc_ca_get_time_date()
1285 /* FIXME: check response code? */ avc_ca_enter_menu()
1317 /* FIXME: check response code and validate response data */ avc_ca_get_mmi()
/linux-4.4.14/drivers/usb/misc/
H A Dezusb.c60 int response = ezusb_writememory(dev, cpucs_reg, &reset_bit, 1, WRITE_INT_RAM); ezusb_set_reset() local
61 if (response < 0) ezusb_set_reset()
63 __func__, reset_bit, response); ezusb_set_reset()
64 return response; ezusb_set_reset()
H A Demi26.c62 int response; emi26_set_reset() local
65 response = emi26_writememory (dev, CPUCS_REG, &reset_bit, 1, 0xa0); emi26_set_reset()
66 if (response < 0) { emi26_set_reset()
69 return response; emi26_set_reset()
H A Demi62.c71 int response; emi62_set_reset() local
74 response = emi62_writememory (dev, CPUCS_REG, &reset_bit, 1, 0xa0); emi62_set_reset()
75 if (response < 0) emi62_set_reset()
77 return response; emi62_set_reset()
H A Dftdi-elan.c191 u8 response[4 + 1024]; member in struct:usb_ftdi
870 ftdi_elan_do_callback(ftdi, target, 4 + ftdi->response, have_ed_set_response()
875 return ftdi->response; have_ed_set_response()
886 ftdi_elan_do_callback(ftdi, target, 4 + ftdi->response, have_ed_set_response()
891 return ftdi->response; have_ed_set_response()
901 ftdi_elan_do_callback(ftdi, target, 4 + ftdi->response, have_ed_set_response()
906 return ftdi->response; have_ed_set_response()
910 ftdi_elan_do_callback(ftdi, target, 4 + ftdi->response, have_ed_set_response()
915 return ftdi->response; have_ed_set_response()
935 return ftdi->response; have_ed_get_response()
943 * the response buffer can only ever hold a maximum sized
944 * response from the Uxxx.
949 u8 *b = ftdi->response + ftdi->received; ftdi_elan_respond_engine()
1044 int ed_number = (ftdi->response[0] >> 5) & 0x03; ftdi_elan_respond_engine()
1045 u16 ed_length = (ftdi->response[2] << 8) | ftdi_elan_respond_engine()
1046 ftdi->response[1]; ftdi_elan_respond_engine()
1052 u8 *c = 4 + ftdi->response; ftdi_elan_respond_engine()
1061 ftdi_elan_do_callback(ftdi, target, 4 + ftdi->response, ftdi_elan_respond_engine()
1066 b = ftdi->response; ftdi_elan_respond_engine()
1073 u32 data = ftdi->response[7]; ftdi_elan_respond_engine()
1075 data |= ftdi->response[6]; ftdi_elan_respond_engine()
1077 data |= ftdi->response[5]; ftdi_elan_respond_engine()
1079 data |= ftdi->response[4]; ftdi_elan_respond_engine()
1086 b = ftdi->response; ftdi_elan_respond_engine()
1087 buscmd = (ftdi->response[0] >> 0) & 0x0F; ftdi_elan_respond_engine()
1097 if ((ftdi->response[0] & 0x80) == 0x00) { ftdi_elan_respond_engine()
1101 int ed_number = (ftdi->response[0] >> 5) & 0x03; ftdi_elan_respond_engine()
1102 int ed_type = (ftdi->response[0] >> 0) & 0x03; ftdi_elan_respond_engine()
1103 u16 ed_length = (ftdi->response[2] << 8) | ftdi_elan_respond_engine()
1104 ftdi->response[1]; ftdi_elan_respond_engine()
1107 target->halted = (ftdi->response[0] >> 3) & ftdi_elan_respond_engine()
1109 target->skipped = (ftdi->response[0] >> 2) & ftdi_elan_respond_engine()
1111 target->toggle_bits = (ftdi->response[3] >> 6) ftdi_elan_respond_engine()
1113 target->error_count = (ftdi->response[3] >> 4) ftdi_elan_respond_engine()
1115 target->condition_code = (ftdi->response[ ftdi_elan_respond_engine()
1117 if ((ftdi->response[0] & 0x10) == 0x00) { ftdi_elan_respond_engine()
/linux-4.4.14/drivers/hv/
H A Dchannel_mgmt.c39 * vmbus_prep_negotiate_resp() - Create default response for Hyper-V Negotiate message
46 * Set up and fill in default negotiate response message.
492 * vmbus_unload_response - Handler for the unload response.
626 * This is invoked when we received a response to our channel open request.
627 * Find the matching request, copy the response and signal the requesting
655 memcpy(&msginfo->response.open_result, vmbus_onopen_result()
670 * This is invoked when we received a response to our gpadl create request.
671 * Find the matching request, copy the response and signal the requesting
702 memcpy(&msginfo->response.gpadl_created, vmbus_ongpadl_created()
717 * This is invoked when we received a response to our gpadl teardown request.
718 * Find the matching request, copy the response and signal the requesting
747 memcpy(&msginfo->response.gpadl_torndown, vmbus_ongpadl_torndown()
760 * vmbus_onversion_response - Version response handler
762 * This is invoked when we received a response to our initiate contact request.
763 * Find the matching request, copy the response and signal the requesting
784 memcpy(&msginfo->response.version_response, vmbus_onversion_response()
/linux-4.4.14/tools/perf/ui/gtk/
H A Dbrowser.c64 g_signal_connect(info_bar, "response", perf_gtk__setup_info_bar()
/linux-4.4.14/drivers/target/iscsi/
H A Discsi_target_auth.c180 unsigned char type, response[MD5_SIGNATURE_SIZE * 2 + 2]; chap_server_compute_md5() local
197 memset(response, 0, MD5_SIGNATURE_SIZE * 2 + 2); chap_server_compute_md5()
295 chap_binaryhex_to_asciihex(response, server_digest, MD5_SIGNATURE_SIZE); chap_server_compute_md5()
296 pr_debug("[server] MD5 Server Digest: %s\n", response); chap_server_compute_md5()
434 * Convert response from binary hex to ascii hext. chap_server_compute_md5()
436 chap_binaryhex_to_asciihex(response, digest, MD5_SIGNATURE_SIZE); chap_server_compute_md5()
438 response); chap_server_compute_md5()
440 pr_debug("[server] Sending CHAP_R=0x%s\n", response); chap_server_compute_md5()
/linux-4.4.14/drivers/scsi/ufs/
H A Dufs.h263 /* Query response result code */
288 /* Offset of the response code in the UPIU header */
300 /* Task management service response */
390 * struct utp_upiu_rsp - general upiu response structure
445 * @response: device response code
446 * @upiu_res: query response data
449 u8 response; member in struct:ufs_query_res
/linux-4.4.14/drivers/staging/fsl-mc/bus/
H A Dmc-sys.c271 * mc_read_response - reads the response for the last MC command from a
275 * @resp: pointer to command response buffer
286 /* Copy command response header from MC portal: */ mc_read_response()
292 /* Copy command response data from MC portal: */ mc_read_response()
304 * @cmd: command buffer to receive MC response
316 * Wait for response from the MC hardware: mc_polling_wait_preemptible()
351 * @cmd: command buffer to receive MC response
416 * Wait for response from the MC hardware: mc_send_command()
H A Ddpmng.c63 /* retrieve response parameters */ mc_get_version()
96 /* retrieve response parameters */ dpmng_get_container_id()
H A Ddpmcp.c72 /* retrieve response parameters */ dpmcp_open()
142 /* retrieve response parameters */ dpmcp_create()
254 /* retrieve response parameters */ dpmcp_get_irq()
324 /* retrieve response parameters */ dpmcp_get_irq_enable()
395 /* retrieve response parameters */ dpmcp_get_irq_mask()
432 /* retrieve response parameters */ dpmcp_get_irq_status()
495 /* retrieve response parameters */ dpmcp_get_attributes()
H A Ddpbp.c72 /* retrieve response parameters */ dpbp_open()
145 /* retrieve response parameters */ dpbp_create()
244 /* retrieve response parameters */ dpbp_is_enabled()
334 /* retrieve response parameters */ dpbp_get_irq()
404 /* retrieve response parameters */ dpbp_get_irq_enable()
475 /* retrieve response parameters */ dpbp_get_irq_mask()
512 /* retrieve response parameters */ dpbp_get_irq_status()
575 /* retrieve response parameters */ dpbp_get_attributes()
/linux-4.4.14/include/uapi/scsi/fc/
H A Dfc_gs.h37 __be16 ct_cmd; /* command / response code */
62 * ct_cmd: Command / response codes
H A Dfc_ns.h131 * GPN_FT response.
148 * GID_PN response or GSPN_ID request
156 * GSPN_ID response
/linux-4.4.14/include/uapi/linux/mmc/
H A Dioctl.h15 __u32 response[4]; /* CMD response */ member in struct:mmc_ioc_cmd
/linux-4.4.14/drivers/s390/scsi/
H A Dzfcp_fc.h67 * struct zfcp_fc_gid_pn_rsp - container for ct header plus gid_pn response
69 * @gid_pn: GID_PN response
97 * struct zfcp_fc_gspn_rsp - container for ct header plus GSPN_ID response
99 * @gspn: GSPN_ID response
100 * @name: The name string of the GSPN_ID response
124 * @sg_rsp: scatterlist entry for response data
H A Dzfcp_dbf.h90 * @ZFCP_DBF_SAN_RES: response trace record id
103 * @payload: unformatted information related to request/response
149 * @ZFCP_DBF_HBA_RES: response trace record
203 * @fcp_rsp_info: FCP response info
208 * @fsf_rsp: response for fsf request
/linux-4.4.14/drivers/net/wireless/libertas/
H A Dcmdresp.c88 lbs_deb_cmd("CMD_RESP: response 0x%04x, seq %d, size %d\n", lbs_process_command_response()
111 /* 0x0004 means -EAGAIN. Drop the response, let it time out lbs_process_command_response()
121 /* Now we got response from FW, cancel the command timer */ lbs_process_command_response()
148 lbs_deb_host("CMD_RESP: ENTER_PS command response\n"); lbs_process_command_response()
152 * response, We need to wake up the firmware. lbs_process_command_response()
167 lbs_deb_host("CMD_RESP: EXIT_PS command response\n"); lbs_process_command_response()
/linux-4.4.14/include/scsi/fc/
H A Dfc_fcp.h116 * FCP_RESP IU - response payload.
118 * The response payload comes in three parts: the flags/status, the
119 * sense/response lengths and the sense data/response info section.
128 * All response frames will always contain the fcp_resp template. Some
175 #define FCP_BIDI_RSP 0x80 /* bidirectional read response */
H A Dfc_fip.h123 FIP_SC_VN_CLAIM_REP = 4, /* claim response */
154 FIP_DT_FLOGI = 7, /* FLOGI request or response */
155 FIP_DT_FDISC = 8, /* FDISC request or response */
156 FIP_DT_LOGO = 9, /* LOGO request or response */
157 FIP_DT_ELP = 10, /* ELP request or response */
/linux-4.4.14/drivers/nvme/host/
H A Dscsi.c1114 u8 *response; nvme_trans_mode_page_create() local
1134 response = kzalloc(resp_size, GFP_KERNEL); nvme_trans_mode_page_create()
1135 if (response == NULL) { nvme_trans_mode_page_create()
1140 res = nvme_trans_fill_mode_parm_hdr(&response[0], mph_size, cdb10, nvme_trans_mode_page_create()
1146 &response[blk_desc_offset], nvme_trans_mode_page_create()
1151 res = mode_page_fill_func(ns, hdr, &response[mode_pages_offset_1], nvme_trans_mode_page_create()
1157 res = nvme_trans_copy_to_user(hdr, response, xfer_len); nvme_trans_mode_page_create()
1160 kfree(response); nvme_trans_mode_page_create()
1167 static void nvme_trans_fill_read_cap(u8 *response, struct nvme_id_ns *id_ns, nvme_trans_fill_read_cap() argument
1189 memcpy(response, &tmp_rlba_32, sizeof(u32)); nvme_trans_fill_read_cap()
1190 memcpy(&response[4], &tmp_len, sizeof(u32)); nvme_trans_fill_read_cap()
1194 memcpy(response, &tmp_rlba, sizeof(u64)); nvme_trans_fill_read_cap()
1195 memcpy(&response[8], &tmp_len, sizeof(u32)); nvme_trans_fill_read_cap()
1196 response[12] = (p_type_lut[id_ns->dps & 0x3] << 1) | prot_en; nvme_trans_fill_read_cap()
2045 u8 *response; nvme_trans_read_capacity() local
2060 response = kzalloc(resp_size, GFP_KERNEL); nvme_trans_read_capacity()
2061 if (response == NULL) { nvme_trans_read_capacity()
2065 nvme_trans_fill_read_cap(response, id_ns, cdb16); nvme_trans_read_capacity()
2068 res = nvme_trans_copy_to_user(hdr, response, xfer_len); nvme_trans_read_capacity()
2070 kfree(response); nvme_trans_read_capacity()
2082 u8 *response; nvme_trans_report_luns() local
2114 response = kzalloc(resp_size, GFP_KERNEL); nvme_trans_report_luns()
2115 if (response == NULL) { nvme_trans_report_luns()
2127 memcpy(&response[lun_id_offset], &tmp_id, sizeof(u64)); nvme_trans_report_luns()
2131 memcpy(response, &tmp_len, sizeof(u32)); nvme_trans_report_luns()
2135 res = nvme_trans_copy_to_user(hdr, response, xfer_len); nvme_trans_report_luns()
2137 kfree(response); nvme_trans_report_luns()
2149 u8 *response; nvme_trans_request_sense() local
2156 response = kzalloc(resp_size, GFP_KERNEL); nvme_trans_request_sense()
2157 if (response == NULL) { nvme_trans_request_sense()
2164 response[0] = DESC_FORMAT_SENSE_DATA; nvme_trans_request_sense()
2165 response[1] = NO_SENSE; nvme_trans_request_sense()
2167 response[2] = SCSI_ASC_NO_SENSE; nvme_trans_request_sense()
2168 response[3] = SCSI_ASCQ_CAUSE_NOT_REPORTABLE; nvme_trans_request_sense()
2172 response[0] = FIXED_SENSE_DATA; nvme_trans_request_sense()
2174 response[2] = NO_SENSE; /* FM, EOM, ILI, SDAT_OVFL = 0 */ nvme_trans_request_sense()
2176 response[7] = FIXED_SENSE_DATA_ADD_LENGTH; nvme_trans_request_sense()
2178 response[12] = SCSI_ASC_NO_SENSE; nvme_trans_request_sense()
2179 response[13] = SCSI_ASCQ_CAUSE_NOT_REPORTABLE; nvme_trans_request_sense()
2185 res = nvme_trans_copy_to_user(hdr, response, xfer_len); nvme_trans_request_sense()
2187 kfree(response); nvme_trans_request_sense()
/linux-4.4.14/drivers/acpi/
H A Dacpi_ipmi.c99 /* IPMI request/response buffer per ACPI 4.0, sec 5.5.2.4.3.2 */
316 * value is also used as output parameter. It represents the response acpi_format_ipmi_response()
330 * If the IPMI response message is obtained correctly, the status code acpi_format_ipmi_response()
397 "Unexpected response is returned. returned user %p, expected user %p\n", ipmi_msg_handler()
414 "Unexpected response (msg id %ld) is returned.\n", ipmi_msg_handler()
419 /* copy the response data to Rx_data buffer */ ipmi_msg_handler()
422 "Unexpected response (msg len %d).\n", ipmi_msg_handler()
427 /* response msg is an error msg */ ipmi_msg_handler()
433 "Unexpected response (timeout).\n"); ipmi_msg_handler()
533 * the response IPMI message returned by IPMI command.
/linux-4.4.14/drivers/net/wireless/ath/wcn36xx/
H A Dsmd.c263 wcn36xx_err("Timeout! No SMD response in %dms\n", wcn36xx_smd_send_and_wait()
359 wcn36xx_err("hal_load_nv response failed err=%d\n", wcn36xx_smd_load_nv()
449 wcn36xx_err("hal_start response failed err=%d\n", ret); wcn36xx_smd_start()
477 wcn36xx_err("hal_stop response failed err=%d\n", ret); wcn36xx_smd_stop()
506 wcn36xx_err("hal_init_scan response failed err=%d\n", ret); wcn36xx_smd_init_scan()
536 wcn36xx_err("hal_start_scan response failed err=%d\n", ret); wcn36xx_smd_start_scan()
566 wcn36xx_err("hal_end_scan response failed err=%d\n", ret); wcn36xx_smd_end_scan()
597 wcn36xx_err("hal_finish_scan response failed err=%d\n", ret); wcn36xx_smd_finish_scan()
642 wcn36xx_err("hal_switch_channel response failed err=%d\n", ret); wcn36xx_smd_switch_channel()
660 wcn36xx_warn("error response from update scan\n"); wcn36xx_smd_update_scan_params_rsp()
698 wcn36xx_err("hal_update_scan_params response failed err=%d\n", wcn36xx_smd_update_scan_params()
762 wcn36xx_err("hal_add_sta_self response failed err=%d\n", ret); wcn36xx_smd_add_sta_self()
789 wcn36xx_err("hal_delete_sta_self response failed err=%d\n", wcn36xx_smd_delete_sta_self()
821 wcn36xx_err("hal_delete_sta response failed err=%d\n", ret); wcn36xx_smd_delete_sta()
884 wcn36xx_err("hal_join response failed err=%d\n", ret); wcn36xx_smd_join()
919 wcn36xx_err("hal_set_link_st response failed err=%d\n", ret); wcn36xx_smd_set_link_st()
965 wcn36xx_warn("hal config sta response failure: %d\n", wcn36xx_smd_config_sta_rsp()
1039 wcn36xx_err("hal_config_sta response failed err=%d\n", ret); wcn36xx_smd_config_sta()
1171 wcn36xx_warn("hal config bss response failure: %d\n", wcn36xx_smd_config_bss_rsp()
1319 wcn36xx_err("hal_config_bss response failed err=%d\n", ret); wcn36xx_smd_config_bss()
1349 wcn36xx_err("hal_delete_bss response failed err=%d\n", ret); wcn36xx_smd_delete_bss()
1402 wcn36xx_err("hal_send_beacon response failed err=%d\n", ret); wcn36xx_smd_send_beacon()
1421 wcn36xx_warn("probe response template is too big: %d\n", wcn36xx_smd_update_proberesp_tmpl()
1445 wcn36xx_err("hal_update_proberesp_tmpl response failed err=%d\n", wcn36xx_smd_update_proberesp_tmpl()
1487 wcn36xx_err("hal_set_stakey response failed err=%d\n", ret); wcn36xx_smd_set_stakey()
1525 wcn36xx_err("hal_set_bsskey response failed err=%d\n", ret); wcn36xx_smd_set_bsskey()
1557 wcn36xx_err("hal_remove_stakey response failed err=%d\n", ret); wcn36xx_smd_remove_stakey()
1587 wcn36xx_err("hal_remove_bsskey response failed err=%d\n", ret); wcn36xx_smd_remove_bsskey()
1617 wcn36xx_err("hal_enter_bmps response failed err=%d\n", ret); wcn36xx_smd_enter_bmps()
1645 wcn36xx_err("hal_exit_bmps response failed err=%d\n", ret); wcn36xx_smd_exit_bmps()
1700 /* TODO: it also support ARP response type */ wcn36xx_smd_keep_alive_req()
1716 wcn36xx_err("hal_keep_alive response failed err=%d\n", ret); wcn36xx_smd_keep_alive_req()
1748 wcn36xx_err("hal_dump_cmd response failed err=%d\n", ret); wcn36xx_smd_dump_cmd_req()
1818 wcn36xx_err("Invalid hal_feature_caps_exchange response"); wcn36xx_smd_feature_caps_exchange()
1866 wcn36xx_err("hal_add_ba_session response failed err=%d\n", ret); wcn36xx_smd_add_ba_session()
1894 wcn36xx_err("hal_add_ba response failed err=%d\n", ret); wcn36xx_smd_add_ba()
1922 wcn36xx_err("hal_del_ba response failed err=%d\n", ret); wcn36xx_smd_del_ba()
1956 wcn36xx_err("hal_trigger_ba response failed err=%d\n", ret); wcn36xx_smd_trigger_ba()
2078 wcn36xx_err("hal_update_cfg response failed err=%d\n", ret); wcn36xx_smd_update_cfg()
/linux-4.4.14/drivers/infiniband/core/
H A Dmad.c565 * Canceling all sends results in dropping received response unregister_mad_agent()
770 * a request or the ending LID routed part of a response is empty. handle_outgoing_dr_smp()
829 dev_err(&device->dev, "No memory for local response MAD\n"); handle_outgoing_dr_smp()
1265 /* Reference for work request to QP + response */ ib_post_send_mad()
1876 /* is request/response. */ rcv_has_same_gid()
1926 * It's possible to receive the response before we've ib_find_send_mad()
2000 /* Defined behavior is to complete response before request */ ib_mad_complete_recv()
2023 struct ib_mad_private *response) handle_ib_smi()
2049 memcpy(response, recv, mad_priv_size(response)); handle_ib_smi()
2050 response->header.recv_wc.wc = &response->header.wc; handle_ib_smi()
2051 response->header.recv_wc.recv_buf.mad = (struct ib_mad *)response->mad; handle_ib_smi()
2052 response->header.recv_wc.recv_buf.grh = &response->grh; handle_ib_smi()
2054 agent_send_response((const struct ib_mad_hdr *)response->mad, handle_ib_smi()
2055 &response->grh, wc, handle_ib_smi()
2059 response->mad_size, handle_ib_smi()
2068 struct ib_mad_private *response, generate_unmatched_resp()
2072 struct ib_mad_hdr *resp_hdr = (struct ib_mad_hdr *)response->mad; generate_unmatched_resp()
2076 memcpy(response, recv, mad_priv_size(response)); generate_unmatched_resp()
2077 response->header.recv_wc.wc = &response->header.wc; generate_unmatched_resp()
2078 response->header.recv_wc.recv_buf.mad = (struct ib_mad *)response->mad; generate_unmatched_resp()
2079 response->header.recv_wc.recv_buf.grh = &response->grh; generate_unmatched_resp()
2108 struct ib_mad_private *response) handle_opa_smi()
2136 memcpy(response, recv, mad_priv_size(response)); handle_opa_smi()
2137 response->header.recv_wc.wc = &response->header.wc; handle_opa_smi()
2138 response->header.recv_wc.recv_buf.opa_mad = handle_opa_smi()
2139 (struct opa_mad *)response->mad; handle_opa_smi()
2140 response->header.recv_wc.recv_buf.grh = &response->grh; handle_opa_smi()
2142 agent_send_response((const struct ib_mad_hdr *)response->mad, handle_opa_smi()
2143 &response->grh, wc, handle_opa_smi()
2162 struct ib_mad_private *response, handle_smi()
2170 response); handle_smi()
2172 return handle_ib_smi(port_priv, qp_info, wc, port_num, recv, response); handle_smi()
2180 struct ib_mad_private *recv, *response = NULL; ib_mad_recv_done_handler() local
2227 response = alloc_mad_private(mad_size, GFP_KERNEL); ib_mad_recv_done_handler()
2228 if (!response) { ib_mad_recv_done_handler()
2230 "ib_mad_recv_done_handler no memory for response buffer\n"); ib_mad_recv_done_handler()
2242 response, opa) ib_mad_recv_done_handler()
2254 (struct ib_mad_hdr *)response->mad, ib_mad_recv_done_handler()
2264 agent_send_response((const struct ib_mad_hdr *)response->mad, ib_mad_recv_done_handler()
2284 generate_unmatched_resp(recv, response, &mad_size, opa)) { ib_mad_recv_done_handler()
2285 agent_send_response((const struct ib_mad_hdr *)response->mad, &recv->grh, wc, ib_mad_recv_done_handler()
2292 if (response) { ib_mad_recv_done_handler()
2293 ib_mad_post_receive_mads(qp_info, response); ib_mad_recv_done_handler()
2715 * Defined behavior is to complete response local_completions()
2018 handle_ib_smi(const struct ib_mad_port_private *port_priv, const struct ib_mad_qp_info *qp_info, const struct ib_wc *wc, int port_num, struct ib_mad_private *recv, struct ib_mad_private *response) handle_ib_smi() argument
2067 generate_unmatched_resp(const struct ib_mad_private *recv, struct ib_mad_private *response, size_t *resp_len, bool opa) generate_unmatched_resp() argument
2103 handle_opa_smi(struct ib_mad_port_private *port_priv, struct ib_mad_qp_info *qp_info, struct ib_wc *wc, int port_num, struct ib_mad_private *recv, struct ib_mad_private *response) handle_opa_smi() argument
2157 handle_smi(struct ib_mad_port_private *port_priv, struct ib_mad_qp_info *qp_info, struct ib_wc *wc, int port_num, struct ib_mad_private *recv, struct ib_mad_private *response, bool opa) handle_smi() argument
H A Ducma.c416 if (copy_to_user((void __user *)(unsigned long)cmd.response, ucma_get_event()
484 if (copy_to_user((void __user *)(unsigned long)cmd.response, ucma_create_id()
609 if (copy_to_user((void __user *)(unsigned long)cmd.response, ucma_destroy_id()
835 if (copy_to_user((void __user *)(unsigned long)cmd.response, ucma_query_route()
856 void __user *response, int out_len) ucma_query_addr()
877 if (copy_to_user(response, &resp, sizeof(resp))) ucma_query_addr()
884 void __user *response, int out_len) ucma_query_path()
907 if (copy_to_user(response, resp, ucma_query_path()
916 void __user *response, int out_len) ucma_query_gid()
955 if (copy_to_user(response, &resp, sizeof(resp))) ucma_query_gid()
967 void __user *response; ucma_query() local
973 response = (void __user *)(unsigned long) cmd.response; ucma_query()
980 ret = ucma_query_addr(ctx, response, out_len); ucma_query()
983 ret = ucma_query_path(ctx, response, out_len); ucma_query()
986 ret = ucma_query_gid(ctx, response, out_len); ucma_query()
1153 if (copy_to_user((void __user *)(unsigned long)cmd.response, ucma_init_qp_attr()
1346 if (copy_to_user((void __user *)(unsigned long) cmd->response, ucma_process_join()
1381 join_cmd.response = cmd.response; ucma_join_ip_multicast()
1445 if (copy_to_user((void __user *)(unsigned long)cmd.response, ucma_leave_multicast()
1513 goto response; ucma_migrate_id()
1531 response: ucma_migrate_id()
1532 if (copy_to_user((void __user *)(unsigned long)cmd.response, ucma_migrate_id()
855 ucma_query_addr(struct ucma_context *ctx, void __user *response, int out_len) ucma_query_addr() argument
883 ucma_query_path(struct ucma_context *ctx, void __user *response, int out_len) ucma_query_path() argument
915 ucma_query_gid(struct ucma_context *ctx, void __user *response, int out_len) ucma_query_gid() argument
H A Diwpm_msg.c333 /* netlink attribute policy for the received response to register pid request */
345 * iwpm_register_pid_cb - Process a port mapper response to
357 const char *msg_type = "Register Pid response"; iwpm_register_pid_cb()
402 /* netlink attribute policy for the received response to add mapping request */
411 * iwpm_add_mapping_cb - Process a port mapper response to
424 msg_type = "Add Mapping response"; iwpm_add_mapping_cb()
471 /* netlink attribute policy for the response to add and query mapping request
472 * and response with remote address info */
483 * iwpm_add_and_query_mapping_cb - Process a port mapper response to
498 msg_type = "Query Mapping response"; iwpm_add_and_query_mapping_cb()
646 const char *msg_type = "Mapping Info response"; iwpm_mapping_info_cb()
H A Duverbs_cmd.c315 (unsigned long) cmd.response + sizeof resp, ib_uverbs_get_context()
366 if (copy_to_user((void __user *) (unsigned long) cmd.response, ib_uverbs_get_context()
466 if (copy_to_user((void __user *) (unsigned long) cmd.response, ib_uverbs_query_device()
517 if (copy_to_user((void __user *) (unsigned long) cmd.response, ib_uverbs_query_port()
543 (unsigned long) cmd.response + sizeof resp, ib_uverbs_alloc_pd()
572 if (copy_to_user((void __user *) (unsigned long) cmd.response, ib_uverbs_alloc_pd()
752 (unsigned long) cmd.response + sizeof resp, ib_uverbs_open_xrcd()
823 if (copy_to_user((void __user *) (unsigned long) cmd.response, ib_uverbs_open_xrcd()
965 (unsigned long) cmd.response + sizeof resp, ib_uverbs_reg_mr()
1023 if (copy_to_user((void __user *) (unsigned long) cmd.response, ib_uverbs_reg_mr()
1076 (unsigned long) cmd.response + sizeof(resp), ib_uverbs_rereg_mr()
1132 if (copy_to_user((void __user *)(unsigned long)cmd.response, ib_uverbs_rereg_mr()
1239 if (copy_to_user((void __user *)(unsigned long)cmd.response, ib_uverbs_alloc_mw()
1337 if (copy_to_user((void __user *) (unsigned long) cmd.response, ib_uverbs_create_comp_channel()
1483 INIT_UDATA(&ucore, buf, (unsigned long)cmd.response, sizeof(cmd), sizeof(resp)); ib_uverbs_create_cq()
1486 (unsigned long)cmd.response + sizeof(resp), ib_uverbs_create_cq()
1569 (unsigned long) cmd.response + sizeof resp, ib_uverbs_resize_cq()
1582 if (copy_to_user((void __user *) (unsigned long) cmd.response, ib_uverbs_resize_cq()
1639 header_ptr = (void __user *)(unsigned long) cmd.response; ib_uverbs_poll_cq()
1739 if (copy_to_user((void __user *) (unsigned long) cmd.response, ib_uverbs_destroy_cq()
1987 INIT_UDATA(&ucore, buf, (unsigned long)cmd.response, sizeof(cmd), ib_uverbs_create_qp()
1990 (unsigned long)cmd.response + resp_size, ib_uverbs_create_qp()
2087 (unsigned long) cmd.response + sizeof resp, ib_uverbs_open_qp()
2129 if (copy_to_user((void __user *) (unsigned long) cmd.response, ib_uverbs_open_qp()
2251 if (copy_to_user((void __user *) (unsigned long) cmd.response, ib_uverbs_query_qp()
2425 if (copy_to_user((void __user *) (unsigned long) cmd.response, ib_uverbs_destroy_qp()
2605 if (copy_to_user((void __user *) (unsigned long) cmd.response, ib_uverbs_post_send()
2747 if (copy_to_user((void __user *) (unsigned long) cmd.response, ib_uverbs_post_recv()
2797 if (copy_to_user((void __user *) (unsigned long) cmd.response, ib_uverbs_post_srq_recv()
2871 if (copy_to_user((void __user *) (unsigned long) cmd.response, ib_uverbs_create_ah()
3361 if (copy_to_user((void __user *) (unsigned long) cmd->response, __uverbs_create_xsrq()
3424 xcmd.response = cmd.response; ib_uverbs_create_srq()
3433 (unsigned long) cmd.response + sizeof resp, ib_uverbs_create_srq()
3459 (unsigned long) cmd.response + sizeof resp, ib_uverbs_create_xsrq()
3534 if (copy_to_user((void __user *) (unsigned long) cmd.response, ib_uverbs_query_srq()
3592 if (copy_to_user((void __user *) (unsigned long) cmd.response, ib_uverbs_destroy_srq()
/linux-4.4.14/drivers/scsi/aacraid/
H A Ddpcsup.c49 * know there is a response on our normal priority queue. We will pull off
65 * Keep pulling response QEs off the response queue and waking aac_response_normal()
67 * back to the system. If no response was requesed we just aac_response_normal()
182 * Keep pulling response QEs off the response queue and waking aac_command_normal()
282 * know there is a response on our normal priority queue. We will pull off
/linux-4.4.14/drivers/media/usb/hdpvr/
H A Dhdpvr-core.c122 char *response; device_authorization() local
176 response = dev->usbc_buf+38; device_authorization()
179 response); device_authorization()
181 challenge(response); device_authorization()
183 v4l2_dbg(MSG_INFO, hdpvr_debug, &dev->v4l2_dev, " response: %8ph\n", device_authorization()
184 response); device_authorization()
192 response, 8, device_authorization()
/linux-4.4.14/drivers/scsi/bfa/
H A Dbfi_ms.h55 * Request and response circular queue base addresses, size and
66 union bfi_addr_u cfgrsp_addr; /* config response dma address */
83 * Queue configuration response from firmware
357 u8 rsp_timeout; /* timeout in secs, 0-no response */
362 __be32 rsp_maxlen; /* max response length expected */
364 struct bfi_alen_s rsp_alen; /* response buffer */
368 * FCXP send response structure
375 __be32 rsp_len; /* actual response length */
376 __be32 residue_len; /* residual response length */
377 struct fchs_s fchs; /* response FC header structure */
654 BFI_IOIM_I2H_IO_RSP = BFA_I2HM(1), /* non-fp IO response */
732 * response accounts for total fcp-dl
777 * I/O response message
/linux-4.4.14/drivers/staging/wilc1000/
H A Dcoreconfigurator.c113 /* response frame. */ get_beacon_period()
208 /* This function extracts the SSID from a beacon/probe response frame */ get_ssid()
234 /* response frame. */ get_cap_info()
255 /* response frame. */ get_assoc_resp_cap_info()
267 /* association response frame and returns association status code */ get_asoc_status()
279 /* response frame */ get_asoc_id()
317 * the 802.11n beacon/probe response frame */ get_current_channel_802_11n()
331 /* response frame does not contain the DS parameter set IE */ get_current_channel_802_11n()
425 * the beacon/probe response frame parse_network_info()
H A Dwilc_spi.c229 * Command/Control response spi_cmd_rsp()
241 PRINT_ER("[wilc spi]: Failed cmd response read, bus error...\n"); spi_cmd_rsp()
247 PRINT_ER("[wilc spi]: Failed cmd response, cmd (%02x), resp (%02x)\n", cmd, rsp); spi_cmd_rsp()
253 * State response spi_cmd_rsp()
262 PRINT_ER("[wilc spi]: Failed cmd state response state (%02x)\n", rsp); spi_cmd_rsp()
419 * Command/Control response spi_cmd_complete()
433 PRINT_ER("[wilc spi]: Failed cmd response, cmd (%02x)" spi_cmd_complete()
440 * State response spi_cmd_complete()
444 PRINT_ER("[wilc spi]: Failed cmd state response " spi_cmd_complete()
473 "response (%02x)\n", rsp); spi_cmd_complete()
509 /* some data may be read in response to dummy bytes. */ spi_cmd_complete()
559 * read data response only on the next DMA cycles not spi_cmd_complete()
560 * the first DMA since data response header is already spi_cmd_complete()
569 PRINT_ER("[wilc spi]: Failed data response read, bus error...\n"); spi_cmd_complete()
633 PRINT_ER("[wilc spi]: Failed data response read, bus error...\n"); spi_data_read()
645 PRINT_ER("[wilc spi]: Failed data response read...(%02x)\n", rsp); spi_data_read()
739 * No need to wait for response spi_data_write()
/linux-4.4.14/include/net/
H A Dllc_pdu.h40 /* Command/response PDU indicator in SSAP field */
226 * @cr: command/response bit (0 or 1).
276 * command/response bit.
326 * llc_pdu_init_as_test_rsp - build TEST response PDU
330 * Builds a pdu frame as a TEST response.
350 /* LLC Type 1 XID command/response information fields format */
381 * llc_pdu_init_as_xid_rsp - builds XID response PDU
386 * Builds a pdu frame as an XID response.
405 /* LLC Type 2 FRMR response information field format */
H A Dllc_s_ev.h22 #define LLC_SAP_EV_TYPE_PDU 4 /* command/response PDU */
/linux-4.4.14/drivers/staging/nvec/
H A Dnvec.h61 * @NVEC_SYS: A system request/response
62 * @NVEC_BAT: A battery request/response
63 * @NVEC_KBD: A keyboard request/response
64 * @NVEC_PS2: A mouse request/response
65 * @NVEC_CNTL: A EC control request/response
/linux-4.4.14/drivers/i2c/busses/
H A Di2c-cros-ec-tunnel.c118 * Returns the number of response bytes expeced.
134 * ec_i2c_parse_response - Parse a response from the EC
136 * We'll take the EC's response and copy it back into msgs.
197 /* Unexpected; no errors should come when NULL response */ ec_i2c_xfer()
198 dev_warn(dev, "Error preparing response %d\n", response_len); ec_i2c_xfer()
/linux-4.4.14/drivers/input/serio/
H A Dlibps2.c124 * response and tries to reduce remaining timeout to speed up command
133 * Device has sent the first response byte after ps2_adjust_timeout()
159 * won't be 2nd byte of ID response. ps2_adjust_timeout()
178 * then waits for the response and puts it in the param array.
345 * to properly store device's response to a command and notify process
H A Dhyperv-keyboard.c102 /* Synchronize the request/response if needed */
128 "Illegal protocol response packet (len: %d)\n", hv_kbd_on_receive()
289 struct synth_kbd_protocol_response *response; hv_kbd_connect_to_vsp() local
309 response = &kbd_dev->protocol_resp; hv_kbd_connect_to_vsp()
310 proto_status = __le32_to_cpu(response->proto_status); hv_kbd_connect_to_vsp()
/linux-4.4.14/include/rdma/
H A Diw_portmap.h99 * the port mapper response (mapped address info)
110 * port mapper response (mapped local and remote address info)
124 * iwpm_register_pid_cb - Process the port mapper response to
135 * iwpm_add_mapping_cb - Process the port mapper response to
143 * iwpm_add_and_query_mapping_cb - Process the port mapper response to
/linux-4.4.14/include/rxrpc/
H A Dpacket.h48 #define RXRPC_PACKET_TYPE_RESPONSE 7 /* connection secutity response (CLNT->SRVR) */
113 #define RXRPC_ACK_PING_RESPONSE 7 /* response to RXRPC_ACK_PING */
149 * Kerberos security type-2 response packet
152 __be32 version; /* version of this response type */
155 /* encrypted bit of the response */
/linux-4.4.14/net/netlabel/
H A Dnetlabel_unlabeled.h77 * response to an application generated STATICLIST message. When sent by an
79 * The kernel should response with a series of the following messages.
130 * response to an application generated STATICLISTDEF message. When sent by
132 * The kernel should response with the following message.
159 * response to an application generated LIST message. When sent by an
/linux-4.4.14/arch/blackfin/mach-bf527/include/mach/
H A DdefBF525.h39 #define USB_NAKLIMIT0 0xffc03858 /* Sets the NAK response timeout on Endpoint 0 and on Bulk transfers for Host Tx endpoint */
40 #define USB_TXINTERVAL 0xffc03858 /* Sets the NAK response timeout on Endpoint 0 and on Bulk transfers for Host Tx endpoint */
42 #define USB_RXINTERVAL 0xffc03860 /* Sets the polling interval for Interrupt and Isochronous transfers or the NAK response timeout on Bulk transfers */
91 #define USB_EP_NI0_TXINTERVAL 0xffc03a18 /* Sets the NAK response timeout on Endpoint 0 */
93 #define USB_EP_NI0_RXINTERVAL 0xffc03a20 /* Sets the polling interval for Interrupt/Isochronous transfers or the NAK response timeout on Bulk transfers for Host Rx endpoint0 */
104 #define USB_EP_NI1_TXINTERVAL 0xffc03a58 /* Sets the NAK response timeout on Endpoint1 */
106 #define USB_EP_NI1_RXINTERVAL 0xffc03a60 /* Sets the polling interval for Interrupt/Isochronous transfers or the NAK response timeout on Bulk transfers for Host Rx endpoint1 */
117 #define USB_EP_NI2_TXINTERVAL 0xffc03a98 /* Sets the NAK response timeout on Endpoint2 */
119 #define USB_EP_NI2_RXINTERVAL 0xffc03aa0 /* Sets the polling interval for Interrupt/Isochronous transfers or the NAK response timeout on Bulk transfers for Host Rx endpoint2 */
130 #define USB_EP_NI3_TXINTERVAL 0xffc03ad8 /* Sets the NAK response timeout on Endpoint3 */
132 #define USB_EP_NI3_RXINTERVAL 0xffc03ae0 /* Sets the polling interval for Interrupt/Isochronous transfers or the NAK response timeout on Bulk transfers for Host Rx endpoint3 */
143 #define USB_EP_NI4_TXINTERVAL 0xffc03b18 /* Sets the NAK response timeout on Endpoint4 */
145 #define USB_EP_NI4_RXINTERVAL 0xffc03b20 /* Sets the polling interval for Interrupt/Isochronous transfers or the NAK response timeout on Bulk transfers for Host Rx endpoint4 */
156 #define USB_EP_NI5_TXINTERVAL 0xffc03b58 /* Sets the NAK response timeout on Endpoint5 */
158 #define USB_EP_NI5_RXINTERVAL 0xffc03b60 /* Sets the polling interval for Interrupt/Isochronous transfers or the NAK response timeout on Bulk transfers for Host Rx endpoint5 */
169 #define USB_EP_NI6_TXINTERVAL 0xffc03b98 /* Sets the NAK response timeout on Endpoint6 */
171 #define USB_EP_NI6_RXINTERVAL 0xffc03ba0 /* Sets the polling interval for Interrupt/Isochronous transfers or the NAK response timeout on Bulk transfers for Host Rx endpoint6 */
182 #define USB_EP_NI7_TXINTERVAL 0xffc03bd8 /* Sets the NAK response timeout on Endpoint7 */
184 #define USB_EP_NI7_RXINTERVAL 0xffc03be0 /* Sets the polling interval for Interrupt/Isochronous transfers or the NAK response timeout on Bulk transfers for Host Rx endpoint7 */
/linux-4.4.14/drivers/misc/ibmasm/
H A Dcommand.c158 * Sleep until a command has failed or a response has been received
175 void ibmasm_receive_command_response(struct service_processor *sp, void *response, size_t size) ibmasm_receive_command_response() argument
182 memcpy_fromio(cmd->buffer, response, min(size, cmd->buffer_size)); ibmasm_receive_command_response()
/linux-4.4.14/sound/firewire/fireworks/
H A Dfireworks.h44 * This should be greater than maximum bytes for EFW response content.
45 * Currently response against command for isochronous channel mapping is
105 /* response queue */
H A Dfireworks_command.c16 * number is just used to match command and response.
60 /* return values in response */
166 /* fill transaction response parameters */ efw_transaction()
178 * The address in host system for transaction response is changable when the
H A Dfireworks_transaction.c22 * data[5]: Return value in response.
27 * response: 0xecc080000000 (default)
29 * I note that the address for response can be changed by command. But this
135 /* confirm enough space for this response */ copy_resp_to_buf()
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb3/
H A Dadapter.h131 struct sge_rspq { /* state for an SGE response queue */
132 unsigned int credits; /* # of pending response credits */
133 unsigned int size; /* capacity of response queue */
141 struct rsp_desc *desc; /* address of HW response ring */
143 unsigned int cntxt_id; /* SGE context id for the response q */
144 spinlock_t lock; /* guards response processing */
H A Dsge.c125 struct rsp_desc { /* response queue descriptor */
183 * refill_rspq - replenish an SGE response queue
185 * @q: the response queue to replenish
188 * Replenishes a response queue by making the supplied number of responses
606 * free buffer lists, or response queues. Each SGE ring requires
916 * get_imm_packet - return the next ingress packet buffer from a response
917 * @resp: the response descriptor containing the packet data
919 * Return a packet containing the immediate data of the given response.
1780 * @q: the SGE response queue
1783 * Add a new offload packet to an SGE response queue's offload packet
1803 * @q: the SGE response queue that assembled the bundle
1824 * The NAPI handler for offload packets when a response queue is serviced
1883 * @rq: the response queue that received the packet
2005 * @rq: the response queue that received the packet
2011 * if it was immediate data in a response.
2141 * handle_rsp_cntrl_info - handles control information in a response
2142 * @qs: the queue set corresponding to the response
2143 * @flags: the response control flags
2145 * Handles the control information of an SGE response, such as GTS
2212 * is_new_response - check if a response is newly written
2213 * @r: the response descriptor
2214 * @q: the response queue
2216 * Returns true if a response descriptor contains a yet unprocessed
2217 * response.
2241 * process_responses - process responses from an SGE response queue
2243 * @qs: the queue set to which the response queue belongs
2246 * Process responses from an SGE response queue up to the supplied budget.
2248 * for the queues that belong to the response queue's queue set.
2423 * response being written plus an error interrupt napi_rx_handler()
2449 * process_pure_responses - process pure responses from a response queue
2451 * @qs: the queue set owning the response queue
2452 * @r: the first pure response to process
2458 * response, which the caller must ensure is a valid pure response.
2460 * Returns 1 if it encounters a valid data-carrying response, 0 otherwise.
2507 * @q: the response queue
2537 * The MSI-X interrupt handler for an SGE response queue for the non-NAPI case
2538 * (i.e., response queue serviced in hard interrupt).
2556 * The MSI-X interrupt handler for an SGE response queue for the NAPI case
2557 * (i.e., response queue serviced by NAPI polling).
2574 * SGE response queues as well as error and other async events as they all use
2575 * the same MSI vector. We use one SGE response queue per port in this mode
2576 * and protect all response queues with queue 0's lock.
2622 * The MSI interrupt handler for the NAPI case (i.e., response queues serviced
2623 * by NAPI polling). Handles data events from SGE response queues as well as
2625 * one SGE response queue per port in this mode and protect all response
2662 * SGE response queues as well as error and other async events as they all use
2663 * the same interrupt pin. We use one SGE response queue per port in this mode
2664 * and protect all response queues with queue 0's lock.
2699 * Handles data events from SGE response queues as well as error and other
2701 * response queue per port in this mode and protect all response queues with
2733 * Handles data events from SGE response queues as well as error and other
2735 * response queue per port in this mode and protect all response queues with
2769 * @polling: whether using NAPI to service response queues
2773 * response queues.
2814 CH_ALERT(adapter, "SGE response queue credit overflow\n"); t3_sge_err_intr_handler()
2820 "packet delivered to disabled response queue " t3_sge_err_intr_handler()
2892 * b) Return coalesced response queue credits in case a response queue is
2959 * @irq_vec_idx: the IRQ vector index for response queue interrupts
2966 * comprises a response queue, two Rx free-buffer queues, and up to 3
/linux-4.4.14/drivers/char/tpm/st33zp24/
H A Dspi.c52 * TPM command can be up to 2048 byte, A TPM response can be up to
54 * Between command and response, there are latency byte (up to 15
153 * @param: tpm_data, the TPM response
154 * @param: tpm_size, tpm TPM response size to read.
197 * @param: tpm_data, the TPM response
198 * @param: tpm_size, tpm TPM response size to read.
H A Di2c.c58 * @param: tpm_data, the TPM response
59 * @param: tpm_size, tpm TPM response size to read.
96 * @param: tpm_data, the TPM response
97 * @param: tpm_size, tpm TPM response size to read.
/linux-4.4.14/drivers/scsi/bnx2i/
H A D57xx_iscsi_constants.h24 /* iSCSI response/messages op codes */
47 /* KCQ (kernel completion queue) response op codes */
/linux-4.4.14/drivers/isdn/i4l/
H A Disdn_tty.h31 #define REG_RESP 12 /* show response messages register */
32 #define BIT_RESP 1 /* show response messages bit */
/linux-4.4.14/drivers/media/pci/cx23885/
H A Dcx23885-f300.c125 printk(KERN_ERR "%s: timeout, the slave no response\n", f300_xfer()
127 ret = 1; /* timeout, the slave no response */ f300_xfer()
/linux-4.4.14/drivers/media/pci/saa7164/
H A Dsaa7164-bus.c124 * Places a command or a response on the bus. The implementation does not
125 * know if it is a command or a response it just places the data on the
127 * structure. If the command or response does not fit into the bus ring
310 * Receive a command or a response from the bus. The implementation does not
311 * know if it is a command or a response it simply dequeues the data,
371 printk(KERN_ERR "%s() No message/response found\n", __func__); saa7164_bus_get()
404 /* Check if the command/response matches what is expected */ saa7164_bus_get()
416 /* Get the actual command and response from the bus */ saa7164_bus_get()
H A Dsaa7164-cmd.c118 /* Someone else already fetched the response */ saa7164_irq_dequeue()
164 /* Someone else already fetched the response */ saa7164_cmd_dequeue()
171 printk(KERN_ERR "split response\n"); saa7164_cmd_dequeue()
365 /* Prepare some basic command/response structures */ saa7164_cmd_send()
431 /* Peek response */ saa7164_cmd_send()
451 /* Check if the response was for our command */ saa7164_cmd_send()
530 /* If response is invalid */ saa7164_cmd_send()
553 /* OK, now we're actually getting out correct response */ saa7164_cmd_send()
/linux-4.4.14/include/scsi/
H A Dscsi_bsg_iscsi.h75 /* start of vendor response area */
89 /* response (request sense data) structure of the sg_io_v4 */
H A Dscsi_common.h35 * The addition is to allow the 0x70 and 0x71 response codes. The idea
H A Discsi_proto.h197 uint8_t response; member in struct:iscsi_scsi_rsp
318 uint8_t response; /* see Response values below */ member in struct:iscsi_tm_rsp
499 /* Login Status response classes */
505 /* Login Status response detail codes */
562 uint8_t response; /* see Logout response values below */ member in struct:iscsi_logout_rsp
578 /* logout response status values */
/linux-4.4.14/drivers/net/ethernet/broadcom/bnx2x/
H A Dbnx2x_vfpf.c187 BNX2X_ERR("PF response has timed out\n"); bnx2x_send_msg2pf()
190 DP(BNX2X_MSG_SP, "Got a response from PF\n"); bnx2x_send_msg2pf()
285 /* copy acquire response from buffer to bp */ bnx2x_vfpf_acquire()
322 /* Clear response buffer */ bnx2x_vfpf_acquire()
527 BNX2X_ERR("Sending CLOSE failed: pf response was %d\n", bnx2x_vfpf_close_vf()
1130 /* prepare response */ bnx2x_vf_mbx_resp_single_tlv()
1156 /* send response */ bnx2x_vf_mbx_resp_send_msg()
1162 /* Copy the response buffer. The first u64 is written afterwards, as bnx2x_vf_mbx_resp_send_msg()
1172 BNX2X_ERR("Failed to copy response body to VF %d\n", bnx2x_vf_mbx_resp_send_msg()
1183 /* copy the response header including status-done field, bnx2x_vf_mbx_resp_send_msg()
1195 BNX2X_ERR("Failed to copy response status to VF %d\n", bnx2x_vf_mbx_resp_send_msg()
1339 /* prepare response */
1360 /* send the response */
1465 /* response */ bnx2x_vf_mbx_acquire()
1488 /* response */ bnx2x_vf_mbx_init_vf()
1532 goto response; bnx2x_vf_mbx_setup_q()
1642 goto response; bnx2x_vf_mbx_setup_q()
1644 response: bnx2x_vf_mbx_setup_q()
1855 goto response; bnx2x_filters_validate_mac()
1868 goto response; bnx2x_filters_validate_mac()
1872 response: bnx2x_filters_validate_mac()
1892 goto response; bnx2x_filters_validate_vlan()
1899 goto response; bnx2x_filters_validate_vlan()
1902 response: bnx2x_filters_validate_vlan()
1915 goto response; bnx2x_vf_mbx_set_q_filters()
1919 goto response; bnx2x_vf_mbx_set_q_filters()
1929 response: bnx2x_vf_mbx_set_q_filters()
2102 * The unlock will take place in mbx response. bnx2x_vf_mbx_request()
2157 /* can't send a response since this VF is unknown to us bnx2x_vf_mbx_request()
2242 /* Clean response buffer to refrain from falsely for_each_vf()
2247 /* dispatch the request (will prepare the response) */ for_each_vf()
/linux-4.4.14/drivers/video/fbdev/exynos/
H A Dexynos_mipi_dsi_common.c182 /* process response func should be implemented */ exynos_mipi_dsi_wr_data()
197 /* process response func should be implemented. */ exynos_mipi_dsi_wr_data()
255 /* process response func should be implemented. */ exynos_mipi_dsi_wr_data()
270 /* process response func should be implemented. */ exynos_mipi_dsi_wr_data()
346 u8 response = 0; exynos_mipi_dsi_rd_data() local
363 response = exynos_mipi_dsi_response_size(req_size); exynos_mipi_dsi_rd_data()
372 /* process response func should be implemented. */ exynos_mipi_dsi_rd_data()
394 if ((u8)(rx_data & 0xff) != response) { exynos_mipi_dsi_rd_data()
396 "mipi dsi wrong response rx_data : %x, response:%x\n", exynos_mipi_dsi_rd_data()
397 rx_data, response); exynos_mipi_dsi_rd_data()
/linux-4.4.14/drivers/char/tpm/
H A Dtpm_ibmvtpm.h59 /* vTPM CRQ response is the message type | 0x80 */
/linux-4.4.14/arch/alpha/kernel/
H A Dalpha_ksyms.c86 * response to division operations). Fortunately, their
/linux-4.4.14/include/uapi/sound/
H A Dfirewire.h41 __be32 response[0]; /* some responses */ member in struct:snd_firewire_event_efw_response
/linux-4.4.14/arch/s390/include/uapi/asm/
H A Dcmb.h18 * @initial_command_response_time: initial command response time (ext. format)
/linux-4.4.14/net/nfc/hci/
H A Dcommand.c47 * err will be a standard linux error (may be converted from HCI response)
48 * skb contains the response data and must be disposed, or may be NULL if
121 * skb will contain response data if success. skb can be NULL if you are not
122 * interested by the response.
/linux-4.4.14/fs/ecryptfs/
H A Dmessaging.c204 * response
206 * Processes a response message after sending an operation request to
207 * userspace. Some other process is awaiting this response. Before
210 * response message contains this index so that we can copy over the
211 * response message into the msg_ctx that the process holds a
214 * proceed to read off and process the response message. Returns zero
240 "pending a response\n", __func__); ecryptfs_process_response()
/linux-4.4.14/drivers/usb/serial/
H A Dio_edgeport.c287 int response; update_edgeport_E2PROM() local
300 response = request_ihex_firmware(&fw, fw_name, update_edgeport_E2PROM()
302 if (response) { update_edgeport_E2PROM()
304 fw_name, response); update_edgeport_E2PROM()
340 response = rom_write(edge_serial->serial, update_edgeport_E2PROM()
345 if (response < 0) { update_edgeport_E2PROM()
802 int response; edge_open() local
851 response = usb_submit_urb(edge_serial->interrupt_read_urb, edge_open()
853 if (response) { edge_open()
855 __func__, response); edge_open()
873 response = send_iosp_ext_cmd(edge_port, IOSP_CMD_OPEN_PORT, 0); edge_open()
875 if (response < 0) { edge_open()
942 /* Did we get our Chase response */ block_until_chase_response()
2578 int response; get_manufacturing_desc() local
2582 response = rom_read(edge_serial->serial, get_manufacturing_desc()
2588 if (response < 1) get_manufacturing_desc()
2637 int response; get_boot_desc() local
2641 response = rom_read(edge_serial->serial, get_boot_desc()
2647 if (response < 1) get_boot_desc()
2680 int response; load_application_firmware() local
2703 response = request_ihex_firmware(&fw, fw_name, load_application_firmware()
2705 if (response) { load_application_firmware()
2707 fw_name, response); load_application_firmware()
2723 response = sram_write(edge_serial->serial, load_application_firmware()
2728 if (response < 0) { load_application_firmware()
2738 response = usb_control_msg (edge_serial->serial->dev, load_application_firmware()
2756 int response; edge_startup() local
2837 response = 0; edge_startup()
2860 response = -ENOMEM; edge_startup()
2867 response = -ENOMEM; edge_startup()
2897 response = -ENOMEM; edge_startup()
2904 response = -ENOMEM; edge_startup()
2931 if (response || !interrupt_in_found || !bulk_in_found || edge_startup()
2933 if (!response) { edge_startup()
2935 response = -ENODEV; edge_startup()
2946 return response; edge_startup()
2951 response = usb_submit_urb(edge_serial->interrupt_read_urb, edge_startup()
2953 if (response) edge_startup()
2955 __func__, response); edge_startup()
2957 return response; edge_startup()
/linux-4.4.14/drivers/thunderbolt/
H A Dctl.c88 /* TB_CFG_PKG_READ, response for TB_CFG_PKG_WRITE */
94 /* TB_CFG_PKG_WRITE, response for TB_CFG_PKG_READ */
201 static struct tb_cfg_result decode_error(struct ctl_pkg *response) decode_error() argument
203 struct cfg_error_pkg *pkg = response->buffer; decode_error()
207 res.err = check_header(response, sizeof(*pkg), TB_CFG_PKG_ERROR, decode_error()
370 struct ctl_pkg *response) tb_ctl_handle_plug_event()
372 struct cfg_event_pkg *pkg = response->buffer; tb_ctl_handle_plug_event()
375 if (check_header(response, sizeof(*pkg), TB_CFG_PKG_EVENT, route)) { tb_ctl_handle_plug_event()
565 tb_ctl_WARN(ctl, "dangling response in response_fifo\n"); tb_ctl_stop()
590 * tb_cfg_reset() - send a reset packet and wait for a response
369 tb_ctl_handle_plug_event(struct tb_ctl *ctl, struct ctl_pkg *response) tb_ctl_handle_plug_event() argument
/linux-4.4.14/drivers/scsi/isci/
H A Dscu_task_context.h78 SCU_TASK_TYPE_RESPONSE, /* /< Driver generated response frame (targt mode) */
560 * This field muse be programed when generating an SMP response since the SMP
561 * connection remains open until the SMP response is generated.
673 * This is field specifies if the SCU DMAs a response frame to host
674 * memory for good response frames when operating in target mode.
679 * This field indicates if the SCU should DMA the response frame to
691 * frame. command, task, and response frames utilized control_frame
730 * @todo What we support mirrored SMP response frame?
808 * response iu buffer
814 * response iu buffer
/linux-4.4.14/drivers/gpu/drm/i915/
H A Dintel_sdvo.c505 /* the following two are to read the response */ intel_sdvo_write_cmd()
536 void *response, int response_len) intel_sdvo_read_response()
553 * Also beware that the first response by many devices is to intel_sdvo_read_response()
591 /* Read the command response */ intel_sdvo_read_response()
595 &((u8 *)response)[i])) intel_sdvo_read_response()
597 BUF_PRINT(" %02X", ((u8 *)response)[i]); intel_sdvo_read_response()
658 * This function is making an assumption about the layout of the response,
663 struct intel_sdvo_get_trained_inputs_response response; intel_sdvo_get_trained_inputs() local
665 BUILD_BUG_ON(sizeof(response) != 1); intel_sdvo_get_trained_inputs()
667 &response, sizeof(response))) intel_sdvo_get_trained_inputs()
670 *input_1 = response.input0_trained; intel_sdvo_get_trained_inputs()
671 *input_2 = response.input1_trained; intel_sdvo_get_trained_inputs()
1712 uint16_t response; intel_sdvo_detect() local
1722 &response, 2)) intel_sdvo_detect()
1725 DRM_DEBUG_KMS("SDVO response %d %d [%x]\n", intel_sdvo_detect()
1726 response & 0xff, response >> 8, intel_sdvo_detect()
1729 if (response == 0) intel_sdvo_detect()
1732 intel_sdvo->attached_output = response; intel_sdvo_detect()
1738 if ((intel_sdvo_connector->output_flag & response) == 0) intel_sdvo_detect()
1766 if (response & SDVO_TV_MASK) intel_sdvo_detect()
1768 if (response & SDVO_LVDS_MASK) intel_sdvo_detect()
2731 !intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_##NAME, &response, 2)) \
2734 intel_sdvo_connector->cur_##name = response; \
2742 data_value[0], data_value[1], response); \
2753 uint16_t response, data_value[2]; intel_sdvo_create_enhance_property_tv() local
2764 &response, 2)) intel_sdvo_create_enhance_property_tv()
2768 intel_sdvo_connector->left_margin = data_value[0] - response; intel_sdvo_create_enhance_property_tv()
2789 data_value[0], data_value[1], response); intel_sdvo_create_enhance_property_tv()
2800 &response, 2)) intel_sdvo_create_enhance_property_tv()
2804 intel_sdvo_connector->top_margin = data_value[0] - response; intel_sdvo_create_enhance_property_tv()
2827 data_value[0], data_value[1], response); intel_sdvo_create_enhance_property_tv()
2844 if (!intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_DOT_CRAWL, &response, 2)) intel_sdvo_create_enhance_property_tv()
2848 intel_sdvo_connector->cur_dot_crawl = response & 0x1; intel_sdvo_create_enhance_property_tv()
2857 DRM_DEBUG_KMS("dot crawl: current %d\n", response); intel_sdvo_create_enhance_property_tv()
2870 uint16_t response, data_value[2]; intel_sdvo_create_enhance_property_lvds() local
2883 uint16_t response; intel_sdvo_create_enhance_property() member in union:__anon4286
2888 enhancements.response = 0; intel_sdvo_create_enhance_property()
2892 if (enhancements.response == 0) { intel_sdvo_create_enhance_property()
535 intel_sdvo_read_response(struct intel_sdvo *intel_sdvo, void *response, int response_len) intel_sdvo_read_response() argument
/linux-4.4.14/arch/s390/mm/
H A Dextmem.c676 int i, response; segment_save() local
697 response = 0; segment_save()
698 cpcmd(cmd1, NULL, 0, &response); segment_save()
699 if (response) { segment_save()
700 pr_err("Saving a DCSS failed with DEFSEG response code " segment_save()
701 "%i\n", response); segment_save()
704 cpcmd(cmd2, NULL, 0, &response); segment_save()
705 if (response) { segment_save()
706 pr_err("Saving a DCSS failed with SAVESEG response code " segment_save()
707 "%i\n", response); segment_save()
/linux-4.4.14/drivers/pci/pcie/aer/
H A Daerdrv.c133 /* Disable system error generation in response to error messages */ aer_enable_rootport()
152 /* Enable Root Port's interrupt in response to error messages */ aer_enable_rootport()
177 /* Disable Root's interrupt in response to error messages */ aer_disable_rootport()
348 /* Disable Root's interrupt in response to error messages */ aer_root_reset()
360 /* Enable Root Port's interrupt in response to error messages */ aer_root_reset()
/linux-4.4.14/drivers/net/ethernet/qlogic/qed/
H A Dqed_mcp.h169 * response. Waiting for MCP response will be checked up
176 * @param o_mcp_resp - The MCP response code (exclude sequence).
178 * response
317 * @param p_load_code - The MCP response param containing one
/linux-4.4.14/sound/soc/intel/atom/sst/
H A Dsst_pvt.c232 bool large, bool fill_dsp, bool sync, bool response) sst_prepare_and_post_msg()
243 if (response) sst_prepare_and_post_msg()
262 dev_dbg(sst->dev, "response rqd: %x", sst_prepare_and_post_msg()
280 if (response) { sst_prepare_and_post_msg()
296 if (response) sst_prepare_and_post_msg()
229 sst_prepare_and_post_msg(struct intel_sst_drv *sst, int task_id, int ipc_msg, int cmd_id, int pipe_id, size_t mbox_data_len, const void *mbox_data, void **data, bool large, bool fill_dsp, bool sync, bool response) sst_prepare_and_post_msg() argument
/linux-4.4.14/fs/ocfs2/dlm/
H A Ddlmdomain.c780 * query_join's response is a status, and that status is treated as a u32
792 union dlm_query_join_response response; dlm_query_join_packet_to_wire() local
794 response.packet = *packet; dlm_query_join_packet_to_wire()
795 *wire = be32_to_cpu(response.intval); dlm_query_join_packet_to_wire()
801 union dlm_query_join_response response; dlm_query_join_wire_to_packet() local
803 response.intval = cpu_to_be32(wire); dlm_query_join_wire_to_packet()
804 *packet = response.packet; dlm_query_join_wire_to_packet()
815 u32 response; dlm_query_join_handler() local
923 dlm_query_join_packet_to_wire(&packet, &response); dlm_query_join_handler()
924 return response; dlm_query_join_handler()
1432 enum dlm_query_join_response_code *response) dlm_request_join()
1467 *response = JOIN_OK_NO_MAP; dlm_request_join()
1469 *response = packet.code; dlm_request_join()
1502 mlog(ML_ERROR, "invalid response %d from node %u\n", dlm_request_join()
1504 /* Reset response to JOIN_DISALLOW */ dlm_request_join()
1505 *response = JOIN_DISALLOW; dlm_request_join()
1510 mlog(0, "status %d, node %d response is %d\n", status, node, dlm_request_join()
1511 *response); dlm_request_join()
1585 enum dlm_query_join_response_code response) dlm_should_restart_join()
1589 if (response == JOIN_DISALLOW) { dlm_should_restart_join()
1590 mlog(0, "Latest response of disallow -- should restart\n"); dlm_should_restart_join()
1611 enum dlm_query_join_response_code response = JOIN_DISALLOW; dlm_try_to_join_domain() local
1640 status = dlm_request_join(dlm, node, &response); dlm_try_to_join_domain()
1646 /* Ok, either we got a response or the node doesn't have a dlm_try_to_join_domain()
1648 if (response == JOIN_OK) dlm_try_to_join_domain()
1651 if (dlm_should_restart_join(dlm, ctxt, response)) { dlm_try_to_join_domain()
1430 dlm_request_join(struct dlm_ctxt *dlm, int node, enum dlm_query_join_response_code *response) dlm_request_join() argument
1583 dlm_should_restart_join(struct dlm_ctxt *dlm, struct domain_join_ctxt *ctxt, enum dlm_query_join_response_code response) dlm_should_restart_join() argument
/linux-4.4.14/arch/blackfin/mach-bf548/include/mach/
H A DdefBF542.h103 #define USB_NAKLIMIT0 0xffc03c58 /* Sets the NAK response timeout on Endpoint 0 and on Bulk transfers for Host Tx endpoint */
104 #define USB_TXINTERVAL 0xffc03c58 /* Sets the NAK response timeout on Endpoint 0 and on Bulk transfers for Host Tx endpoint */
106 #define USB_RXINTERVAL 0xffc03c60 /* Sets the polling interval for Interrupt and Isochronous transfers or the NAK response timeout on Bulk transfers */
154 #define USB_EP_NI0_TXINTERVAL 0xffc03e18 /* Sets the NAK response timeout on Endpoint 0 */
156 #define USB_EP_NI0_RXINTERVAL 0xffc03e20 /* Sets the polling interval for Interrupt/Isochronous transfers or the NAK response timeout on Bulk transfers for Host Rx endpoint0 */
167 #define USB_EP_NI1_TXINTERVAL 0xffc03e58 /* Sets the NAK response timeout on Endpoint1 */
169 #define USB_EP_NI1_RXINTERVAL 0xffc03e60 /* Sets the polling interval for Interrupt/Isochronous transfers or the NAK response timeout on Bulk transfers for Host Rx endpoint1 */
180 #define USB_EP_NI2_TXINTERVAL 0xffc03e98 /* Sets the NAK response timeout on Endpoint2 */
182 #define USB_EP_NI2_RXINTERVAL 0xffc03ea0 /* Sets the polling interval for Interrupt/Isochronous transfers or the NAK response timeout on Bulk transfers for Host Rx endpoint2 */
193 #define USB_EP_NI3_TXINTERVAL 0xffc03ed8 /* Sets the NAK response timeout on Endpoint3 */
195 #define USB_EP_NI3_RXINTERVAL 0xffc03ee0 /* Sets the polling interval for Interrupt/Isochronous transfers or the NAK response timeout on Bulk transfers for Host Rx endpoint3 */
206 #define USB_EP_NI4_TXINTERVAL 0xffc03f18 /* Sets the NAK response timeout on Endpoint4 */
208 #define USB_EP_NI4_RXINTERVAL 0xffc03f20 /* Sets the polling interval for Interrupt/Isochronous transfers or the NAK response timeout on Bulk transfers for Host Rx endpoint4 */
219 #define USB_EP_NI5_TXINTERVAL 0xffc03f58 /* Sets the NAK response timeout on Endpoint5 */
221 #define USB_EP_NI5_RXINTERVAL 0xffc03f60 /* Sets the polling interval for Interrupt/Isochronous transfers or the NAK response timeout on Bulk transfers for Host Rx endpoint5 */
232 #define USB_EP_NI6_TXINTERVAL 0xffc03f98 /* Sets the NAK response timeout on Endpoint6 */
234 #define USB_EP_NI6_RXINTERVAL 0xffc03fa0 /* Sets the polling interval for Interrupt/Isochronous transfers or the NAK response timeout on Bulk transfers for Host Rx endpoint6 */
245 #define USB_EP_NI7_TXINTERVAL 0xffc03fd8 /* Sets the NAK response timeout on Endpoint7 */
247 #define USB_EP_NI7_RXINTERVAL 0xffc03ff0 /* Sets the polling interval for Interrupt/Isochronous transfers or the NAK response timeout on Bulk transfers for Host Rx endpoint7 */
/linux-4.4.14/drivers/net/wireless/iwlwifi/mvm/
H A Dsta.h99 * O(1) in time sensitive paths (Tx / Tx response / BA notification). These
115 * were drained), so it also needs to be accessible from the Tx response flow.
122 * station while we have Tx / Tx response / BA notification running.
176 * (we know about it with its Tx response), we remove the station in fw and set
219 * done by %iwl_mvm_sta_modify_ps_wake in response to mac80211 signaling the
258 * Tx response (TX_CMD), and the block ack notification (COMPRESSED_BA).
260 * Tx response (TX_CMD), and the block ack notification (COMPRESSED_BA).
297 * @next_status_eosp: the next reclaimed packet is a PS-Poll response and
300 * and from Tx response flow, it needs a spinlock.
/linux-4.4.14/drivers/char/ipmi/
H A Dipmi_bt_sm.c38 #define BT_DEBUG_MSG 2 /* Prints all request/response buffers */
210 /* Jam a completion code (probably an error) into a response */
311 * Get rid of an unwanted/stale response. This should only be needed for
319 if (!(BT_STATUS & BT_B2H_ATN)) /* Not signalling a response */ drain_BMC2HOST()
328 printk(KERN_WARNING "IPMI BT: stale response %s; ", drain_BMC2HOST()
436 printk(KERN_WARNING "failed %d retries, sending error response\n", error_recovery()
488 * Commands that time out may still (eventually) provide a response. bt_event()
489 * This stale response will get in the way of a new response so remove bt_event()
/linux-4.4.14/drivers/macintosh/
H A Dvia-cuda.c283 /* wait for the CUDA to assert TREQ in response */ cuda_init_via()
284 WAIT_FOR((in_8(&via[B]) & TREQ) == 0, "CUDA response to sync"); cuda_init_via()
287 WAIT_FOR(in_8(&via[IFR]) & SR_INT, "CUDA response to sync (2)"); cuda_init_via()
295 WAIT_FOR(in_8(&via[B]) & TREQ, "CUDA response to sync (3)"); cuda_init_via()
296 WAIT_FOR(in_8(&via[IFR]) & SR_INT, "CUDA response to sync (4)"); cuda_init_via()
563 /* the 0x2 bit indicates no response */ cuda_interrupt()
/linux-4.4.14/Documentation/misc-devices/mei/
H A Dmei-amt-version.c413 struct amt_host_if_resp_header *response = NULL; amt_get_code_versions() local
419 (uint8_t **)&response, amt_get_code_versions()
425 status = amt_verify_code_versions(response); amt_get_code_versions()
429 memcpy(versions, response->data, sizeof(struct amt_code_versions)); amt_get_code_versions()
431 if (response != NULL) amt_get_code_versions()
432 free(response); amt_get_code_versions()
/linux-4.4.14/drivers/net/wireless/iwlwifi/
H A Diwl-trans.h163 * driver, and each response/notification received from uCode.
171 * when sending the response to each driver-originated command, so
172 * the driver can match the response to the command. Since the values
176 * the response/notification, i.e. when the response/notification
177 * is not a direct response to a command sent by the driver. For
179 * to the driver; it is not a direct response to any driver command.
195 * driver, and each response/notification received from uCode.
241 * @CMD_ASYNC: Return right away and don't wait for the response
243 * the response. The caller needs to call iwl_free_resp when done.
248 * @CMD_MAKE_TRANS_IDLE: The command response should mark the trans as idle.
249 * @CMD_WAKE_UP_TRANS: The command response should wake up the trans
322 * @resp_pkt: response packet, if %CMD_WANT_SKB was set
323 * @_rx_page_order: (internally used to free response packet)
324 * @_rx_page_addr: (internally used to free response packet)
622 * @IWL_TRANS_NO_FW: no fw has sent an alive response
623 * @IWL_TRANS_FW_ALIVE: a fw has sent an alive response
/linux-4.4.14/drivers/usb/storage/
H A Doption_ms.c68 /* Some of the devices need to be asked for a response, but we don't option_rezero()
69 * care what that response is. option_rezero()
/linux-4.4.14/drivers/staging/vme/devices/
H A Dvme_pio2_gpio.c101 /* Directionality configured at board build - send appropriate response */ pio2_gpio_dir_in()
120 /* Directionality configured at board build - send appropriate response */ pio2_gpio_dir_out()

Completed in 6797 milliseconds

12345678