Searched refs:iu (Results 1 - 30 of 30) sorted by relevance

/linux-4.4.14/drivers/scsi/libsas/
H A Dsas_task.c8 struct ssp_response_iu *iu) sas_ssp_task_response()
14 if (iu->datapres == 0) sas_ssp_task_response()
15 tstat->stat = iu->status; sas_ssp_task_response()
16 else if (iu->datapres == 1) sas_ssp_task_response()
17 tstat->stat = iu->resp_data[3]; sas_ssp_task_response()
18 else if (iu->datapres == 2) { sas_ssp_task_response()
22 be32_to_cpu(iu->sense_data_len)); sas_ssp_task_response()
23 memcpy(tstat->buf, iu->sense_data, tstat->buf_valid_size); sas_ssp_task_response()
25 if (iu->status != SAM_STAT_CHECK_CONDITION) sas_ssp_task_response()
30 iu->status); sas_ssp_task_response()
7 sas_ssp_task_response(struct device *dev, struct sas_task *task, struct ssp_response_iu *iu) sas_ssp_task_response() argument
/linux-4.4.14/sound/usb/usx2y/
H A Dusb_stream.c334 static void prepare_inurb(int number_of_packets, struct urb *iu) prepare_inurb() argument
339 iu->number_of_packets = number_of_packets; prepare_inurb()
340 id = iu->iso_frame_desc; prepare_inurb()
342 for (p = 0; p < iu->number_of_packets - 1; ++p) prepare_inurb()
345 iu->transfer_buffer_length = prepare_inurb()
346 id[0].length * iu->number_of_packets; prepare_inurb()
379 struct urb *iu; loop_back() local
387 iu = sk->idle_inurb; loop_back()
388 id = iu->iso_frame_desc; loop_back()
393 for (; p < iu->number_of_packets && l < s->period_size; ++p) { loop_back()
394 i = iu->transfer_buffer + id[p].offset; loop_back()
412 if (iu == sk->completed_inurb) { loop_back()
420 iu = sk->completed_inurb; loop_back()
421 id = iu->iso_frame_desc; loop_back()
/linux-4.4.14/drivers/infiniband/ulp/srp/
H A Dib_srp.c213 struct srp_iu *iu; srp_alloc_iu() local
215 iu = kmalloc(sizeof *iu, gfp_mask); srp_alloc_iu()
216 if (!iu) srp_alloc_iu()
219 iu->buf = kzalloc(size, gfp_mask); srp_alloc_iu()
220 if (!iu->buf) srp_alloc_iu()
223 iu->dma = ib_dma_map_single(host->srp_dev->dev, iu->buf, size, srp_alloc_iu()
225 if (ib_dma_mapping_error(host->srp_dev->dev, iu->dma)) srp_alloc_iu()
228 iu->size = size; srp_alloc_iu()
229 iu->direction = direction; srp_alloc_iu()
231 return iu; srp_alloc_iu()
234 kfree(iu->buf); srp_alloc_iu()
236 kfree(iu); srp_alloc_iu()
241 static void srp_free_iu(struct srp_host *host, struct srp_iu *iu) srp_free_iu() argument
243 if (!iu) srp_free_iu()
246 ib_dma_unmap_single(host->srp_dev->dev, iu->dma, iu->size, srp_free_iu()
247 iu->direction); srp_free_iu()
248 kfree(iu->buf); srp_free_iu()
249 kfree(iu); srp_free_iu()
1690 static void srp_put_tx_iu(struct srp_rdma_ch *ch, struct srp_iu *iu, srp_put_tx_iu() argument
1696 list_add(&iu->list, &ch->free_tx); srp_put_tx_iu()
1720 struct srp_iu *iu; __srp_get_tx_iu() local
1737 iu = list_first_entry(&ch->free_tx, struct srp_iu, list); __srp_get_tx_iu()
1738 list_del(&iu->list); __srp_get_tx_iu()
1739 return iu; __srp_get_tx_iu()
1742 static int srp_post_send(struct srp_rdma_ch *ch, struct srp_iu *iu, int len) srp_post_send() argument
1748 list.addr = iu->dma; srp_post_send()
1753 wr.wr_id = (uintptr_t) iu; srp_post_send()
1762 static int srp_post_recv(struct srp_rdma_ch *ch, struct srp_iu *iu) srp_post_recv() argument
1768 list.addr = iu->dma; srp_post_recv()
1769 list.length = iu->size; srp_post_recv()
1773 wr.wr_id = (uintptr_t) iu; srp_post_recv()
1845 struct srp_iu *iu; srp_response_common() local
1850 iu = __srp_get_tx_iu(ch, SRP_IU_RSP); srp_response_common()
1853 if (!iu) { srp_response_common()
1859 ib_dma_sync_single_for_cpu(dev, iu->dma, len, DMA_TO_DEVICE); srp_response_common()
1860 memcpy(iu->buf, rsp, len); srp_response_common()
1861 ib_dma_sync_single_for_device(dev, iu->dma, len, DMA_TO_DEVICE); srp_response_common()
1863 err = srp_post_send(ch, iu, len); srp_response_common()
1867 srp_put_tx_iu(ch, iu, SRP_IU_RSP); srp_response_common()
1909 struct srp_iu *iu = (struct srp_iu *) (uintptr_t) wc->wr_id; srp_handle_recv() local
1913 ib_dma_sync_single_for_cpu(dev, iu->dma, ch->max_ti_iu_len, srp_handle_recv()
1916 opcode = *(u8 *) iu->buf; srp_handle_recv()
1922 iu->buf, wc->byte_len, true); srp_handle_recv()
1927 srp_process_rsp(ch, iu->buf); srp_handle_recv()
1931 srp_process_cred_req(ch, iu->buf); srp_handle_recv()
1935 srp_process_aer_req(ch, iu->buf); srp_handle_recv()
1950 ib_dma_sync_single_for_device(dev, iu->dma, ch->max_ti_iu_len, srp_handle_recv()
1953 res = srp_post_recv(ch, iu); srp_handle_recv()
1996 PFX "failed %s status %s (%d) for iu %p\n", srp_handle_qp_err()
2025 struct srp_iu *iu; srp_send_completion() local
2029 iu = (struct srp_iu *) (uintptr_t) wc.wr_id; srp_send_completion()
2030 list_add(&iu->list, &ch->free_tx); srp_send_completion()
2043 struct srp_iu *iu; srp_queuecommand() local
2074 iu = __srp_get_tx_iu(ch, SRP_IU_CMD); srp_queuecommand()
2077 if (!iu) srp_queuecommand()
2082 ib_dma_sync_single_for_cpu(dev, iu->dma, target->max_iu_len, srp_queuecommand()
2087 cmd = iu->buf; srp_queuecommand()
2096 req->cmd = iu; srp_queuecommand()
2113 ib_dma_sync_single_for_device(dev, iu->dma, target->max_iu_len, srp_queuecommand()
2116 if (srp_post_send(ch, iu, len)) { srp_queuecommand()
2133 srp_put_tx_iu(ch, iu, SRP_IU_CMD); srp_queuecommand()
2285 struct srp_iu *iu = ch->rx_ring[i]; srp_cm_rep_handler() local
2287 ret = srp_post_recv(ch, iu); srp_cm_rep_handler()
2477 struct srp_iu *iu; srp_send_tsk_mgmt() local
2491 iu = __srp_get_tx_iu(ch, SRP_IU_TSK_MGMT); srp_send_tsk_mgmt()
2494 if (!iu) { srp_send_tsk_mgmt()
2500 ib_dma_sync_single_for_cpu(dev, iu->dma, sizeof *tsk_mgmt, srp_send_tsk_mgmt()
2502 tsk_mgmt = iu->buf; srp_send_tsk_mgmt()
2511 ib_dma_sync_single_for_device(dev, iu->dma, sizeof *tsk_mgmt, srp_send_tsk_mgmt()
2513 if (srp_post_send(ch, iu, sizeof(*tsk_mgmt))) { srp_send_tsk_mgmt()
2514 srp_put_tx_iu(ch, iu, SRP_IU_TSK_MGMT); srp_send_tsk_mgmt()
/linux-4.4.14/drivers/usb/storage/
H A Duas.c251 struct iu *iu = urb->transfer_buffer; uas_stat_cmplt() local
273 idx = be16_to_cpup(&iu->tag) - 1; uas_stat_cmplt()
288 switch (iu->iu_id) { uas_stat_cmplt()
316 uas_log_cmd_state(cmnd, "unexpected response iu", uas_stat_cmplt()
317 ((struct response_iu *)iu)->response_code); uas_stat_cmplt()
326 uas_log_cmd_state(cmnd, "bogus IU", iu->iu_id); uas_stat_cmplt()
429 struct sense_iu *iu; uas_alloc_sense_urb() local
434 iu = kzalloc(sizeof(*iu), gfp); uas_alloc_sense_urb()
435 if (!iu) uas_alloc_sense_urb()
438 usb_fill_bulk_urb(urb, udev, devinfo->status_pipe, iu, sizeof(*iu), uas_alloc_sense_urb()
457 struct command_iu *iu; uas_alloc_cmd_urb() local
467 iu = kzalloc(sizeof(*iu) + len, gfp); uas_alloc_cmd_urb()
468 if (!iu) uas_alloc_cmd_urb()
471 iu->iu_id = IU_ID_COMMAND; uas_alloc_cmd_urb()
472 iu->tag = cpu_to_be16(cmdinfo->uas_tag); uas_alloc_cmd_urb()
473 iu->prio_attr = UAS_SIMPLE_TAG; uas_alloc_cmd_urb()
474 iu->len = len; uas_alloc_cmd_urb()
475 int_to_scsilun(sdev->lun, &iu->lun); uas_alloc_cmd_urb()
476 memcpy(iu->cdb, cmnd->cmnd, cmnd->cmd_len); uas_alloc_cmd_urb()
478 usb_fill_bulk_urb(urb, udev, devinfo->cmd_pipe, iu, sizeof(*iu) + len, uas_alloc_cmd_urb()
992 * with a READ/WRITE_READY iu code, so keep waiting until the list gets empty.
/linux-4.4.14/drivers/scsi/ibmvscsi/
H A Dibmvfc.c156 struct ibmvfc_cmd *vfc_cmd = &evt->iu.cmd; ibmvfc_trc_start()
157 struct ibmvfc_mad_common *mad = &evt->iu.mad_common; ibmvfc_trc_start()
168 entry->op_code = vfc_cmd->iu.cdb[0]; ibmvfc_trc_start()
170 entry->lun = scsilun_to_int(&vfc_cmd->iu.lun); ibmvfc_trc_start()
171 entry->tmf_flags = vfc_cmd->iu.tmf_flags; ibmvfc_trc_start()
172 entry->u.start.xfer_len = be32_to_cpu(vfc_cmd->iu.xfer_len); ibmvfc_trc_start()
201 entry->op_code = vfc_cmd->iu.cdb[0]; ibmvfc_trc_end()
203 entry->lun = scsilun_to_int(&vfc_cmd->iu.lun); ibmvfc_trc_end()
204 entry->tmf_flags = vfc_cmd->iu.tmf_flags; ibmvfc_trc_end()
1350 vfc_cmd->iu.add_cdb_len |= IBMVFC_WRDATA; ibmvfc_map_sg_data()
1353 vfc_cmd->iu.add_cdb_len |= IBMVFC_RDDATA; ibmvfc_map_sg_data()
1411 *evt->xfer_iu = evt->iu; ibmvfc_send_event()
1632 vfc_cmd = &evt->iu.cmd; ibmvfc_queuecommand_lck()
1637 vfc_cmd->payload_len = cpu_to_be32(sizeof(vfc_cmd->iu)); ibmvfc_queuecommand_lck()
1641 vfc_cmd->iu.xfer_len = cpu_to_be32(scsi_bufflen(cmnd)); ibmvfc_queuecommand_lck()
1642 int_to_scsilun(cmnd->device->lun, &vfc_cmd->iu.lun); ibmvfc_queuecommand_lck()
1643 memcpy(vfc_cmd->iu.cdb, cmnd->cmnd, cmnd->cmd_len); ibmvfc_queuecommand_lck()
1647 vfc_cmd->iu.pri_task_attr = IBMVFC_SIMPLE_TASK; ibmvfc_queuecommand_lck()
1724 tmf = &evt->iu.tmf; ibmvfc_bsg_timeout()
1781 plogi = &evt->iu.plogi; ibmvfc_bsg_plogi()
1895 mad = &evt->iu.passthru; ibmvfc_bsg_request()
1900 mad->common.length = cpu_to_be16(sizeof(*mad) - sizeof(mad->fc_iu) - sizeof(mad->iu)); ibmvfc_bsg_request()
1903 offsetof(struct ibmvfc_passthru_mad, iu)); ibmvfc_bsg_request()
1904 mad->cmd_ioba.len = cpu_to_be32(sizeof(mad->iu)); ibmvfc_bsg_request()
1906 mad->iu.cmd_len = cpu_to_be32(job->request_payload.payload_len); ibmvfc_bsg_request()
1907 mad->iu.rsp_len = cpu_to_be32(job->reply_payload.payload_len); ibmvfc_bsg_request()
1908 mad->iu.flags = cpu_to_be32(fc_flags); ibmvfc_bsg_request()
1909 mad->iu.cancel_key = cpu_to_be32(IBMVFC_PASSTHRU_CANCEL_KEY); ibmvfc_bsg_request()
1911 mad->iu.cmd.va = cpu_to_be64(sg_dma_address(job->request_payload.sg_list)); ibmvfc_bsg_request()
1912 mad->iu.cmd.len = cpu_to_be32(sg_dma_len(job->request_payload.sg_list)); ibmvfc_bsg_request()
1913 mad->iu.rsp.va = cpu_to_be64(sg_dma_address(job->reply_payload.sg_list)); ibmvfc_bsg_request()
1914 mad->iu.rsp.len = cpu_to_be32(sg_dma_len(job->reply_payload.sg_list)); ibmvfc_bsg_request()
1915 mad->iu.scsi_id = cpu_to_be64(port_id); ibmvfc_bsg_request()
1916 mad->iu.tag = cpu_to_be64((u64)evt); ibmvfc_bsg_request()
1917 rsp_len = be32_to_cpu(mad->iu.rsp.len); ibmvfc_bsg_request()
1978 tmf = &evt->iu.cmd; ibmvfc_reset_device()
1983 tmf->payload_len = cpu_to_be32(sizeof(tmf->iu)); ibmvfc_reset_device()
1987 int_to_scsilun(sdev->lun, &tmf->iu.lun); ibmvfc_reset_device()
1989 tmf->iu.tmf_flags = type; ibmvfc_reset_device()
2177 tmf = &evt->iu.tmf; ibmvfc_cancel_all()
2246 be32_to_cpu(evt->iu.cmd.cancel_key) == cancel_key) ibmvfc_match_key()
2308 tmf = &evt->iu.cmd; ibmvfc_abort_task_set()
2313 tmf->payload_len = cpu_to_be32(sizeof(tmf->iu)); ibmvfc_abort_task_set()
2317 int_to_scsilun(sdev->lun, &tmf->iu.lun); ibmvfc_abort_task_set()
2319 tmf->iu.tmf_flags = IBMVFC_ABORT_TASK_SET; ibmvfc_abort_task_set()
3373 prli = &evt->iu.prli; ibmvfc_tgt_send_prli()
3471 plogi = &evt->iu.plogi; ibmvfc_tgt_send_plogi()
3544 mad = &evt->iu.implicit_logout; ibmvfc_tgt_implicit_logout()
3613 ibmvfc_get_cmd_error(be16_to_cpu(mad->iu.status), be16_to_cpu(mad->iu.error)), ibmvfc_tgt_adisc_done()
3614 mad->iu.status, mad->iu.error, ibmvfc_tgt_adisc_done()
3632 struct ibmvfc_passthru_mad *mad = &evt->iu.passthru; ibmvfc_init_passthru()
3637 mad->common.length = cpu_to_be16(sizeof(*mad) - sizeof(mad->fc_iu) - sizeof(mad->iu)); ibmvfc_init_passthru()
3639 offsetof(struct ibmvfc_passthru_mad, iu)); ibmvfc_init_passthru()
3640 mad->cmd_ioba.len = cpu_to_be32(sizeof(mad->iu)); ibmvfc_init_passthru()
3641 mad->iu.cmd_len = cpu_to_be32(sizeof(mad->fc_iu.payload)); ibmvfc_init_passthru()
3642 mad->iu.rsp_len = cpu_to_be32(sizeof(mad->fc_iu.response)); ibmvfc_init_passthru()
3643 mad->iu.cmd.va = cpu_to_be64((u64)be64_to_cpu(evt->crq.ioba) + ibmvfc_init_passthru()
3646 mad->iu.cmd.len = cpu_to_be32(sizeof(mad->fc_iu.payload)); ibmvfc_init_passthru()
3647 mad->iu.rsp.va = cpu_to_be64((u64)be64_to_cpu(evt->crq.ioba) + ibmvfc_init_passthru()
3650 mad->iu.rsp.len = cpu_to_be32(sizeof(mad->fc_iu.response)); ibmvfc_init_passthru()
3707 tmf = &evt->iu.tmf; ibmvfc_adisc_timeout()
3754 mad = &evt->iu.passthru; ibmvfc_tgt_adisc()
3755 mad->iu.flags = cpu_to_be32(IBMVFC_FC_ELS); ibmvfc_tgt_adisc()
3756 mad->iu.scsi_id = cpu_to_be64(tgt->scsi_id); ibmvfc_tgt_adisc()
3757 mad->iu.cancel_key = cpu_to_be32(tgt->cancel_key); ibmvfc_tgt_adisc()
3857 query_tgt = &evt->iu.query_tgt; ibmvfc_tgt_query_target()
3986 mad = &evt->iu.discover_targets; ibmvfc_discover_targets()
4101 mad = &evt->iu.npiv_login; ibmvfc_npiv_login()
4162 mad = &evt->iu.npiv_logout; ibmvfc_npiv_logout()
H A Dibmvscsi.h73 union viosrp_iu iu; member in struct:srp_event_struct
H A Dibmvscsi.c806 unmap_cmd_data(&evt->iu.srp.cmd, evt, purge_requests()
811 evt->iu.srp.login_req.opcode != SRP_LOGIN_REQ) purge_requests()
844 evt_struct->iu.srp.cmd.opcode); ibmvscsi_timeout()
892 evt_struct->iu.srp.login_req.opcode != SRP_LOGIN_REQ) ibmvscsi_send_srp_event()
899 evt_struct->iu.srp.cmd.opcode != SRP_TSK_MGMT) { ibmvscsi_send_srp_event()
920 *evt_struct->xfer_iu = evt_struct->iu; ibmvscsi_send_srp_event()
962 unmap_cmd_data(&evt_struct->iu.srp.cmd, evt_struct, hostdata->dev); ibmvscsi_send_srp_event()
970 unmap_cmd_data(&evt_struct->iu.srp.cmd, evt_struct, hostdata->dev); ibmvscsi_send_srp_event()
1006 unmap_cmd_data(&evt_struct->iu.srp.cmd, handle_cmd_rsp()
1052 srp_cmd = &evt_struct->iu.srp.cmd; ibmvscsi_queuecommand_lck()
1201 login = &evt_struct->iu.srp.login_req; send_srp_login()
1270 req = &evt_struct->iu.mad.capabilities; send_mad_capabilities()
1363 fast_fail_mad = &evt_struct->iu.mad.fast_fail; enable_fast_fail()
1442 req = &evt_struct->iu.mad.adapter_info; send_mad_adapter_info()
1527 tsk_mgmt = &evt->iu.srp.tsk_mgmt; ibmvscsi_eh_abort_handler()
1609 unmap_cmd_data(&found_evt->iu.srp.cmd, found_evt, ibmvscsi_eh_abort_handler()
1650 tsk_mgmt = &evt->iu.srp.tsk_mgmt; ibmvscsi_eh_device_reset_handler()
1714 unmap_cmd_data(&tmp_evt->iu.srp.cmd, tmp_evt, ibmvscsi_eh_device_reset_handler()
1881 host_config = &evt_struct->iu.mad.host_config; ibmvscsi_do_host_config()
H A Dibmvfc.h455 struct ibmvfc_fcp_cmd_iu iu; member in struct:ibmvfc_cmd
489 struct ibmvfc_passthru_iu iu; member in struct:ibmvfc_passthru_mad
642 union ibmvfc_iu iu; member in struct:ibmvfc_event
/linux-4.4.14/include/linux/usb/
H A Duas.h8 struct iu { struct
/linux-4.4.14/drivers/usb/gadget/legacy/
H A Dtcm_usb_gadget.c552 struct sense_iu *iu = &cmd->sense_iu; uasp_prepare_status() local
556 iu->iu_id = IU_ID_STATUS; uasp_prepare_status()
557 iu->tag = cpu_to_be16(cmd->tag); uasp_prepare_status()
560 * iu->status_qual = cpu_to_be16(STATUS QUALIFIER SAM-4. Where R U?); uasp_prepare_status()
562 iu->len = cpu_to_be16(se_cmd->scsi_sense_length); uasp_prepare_status()
563 iu->status = se_cmd->scsi_status; uasp_prepare_status()
566 stream->req_status->buf = iu; uasp_prepare_status()
625 struct sense_iu *iu = &cmd->sense_iu; uasp_send_status_response() local
627 iu->tag = cpu_to_be16(cmd->tag); uasp_send_status_response()
639 struct sense_iu *iu = &cmd->sense_iu; uasp_send_read_response() local
644 iu->tag = cpu_to_be16(cmd->tag); uasp_send_read_response()
659 iu->iu_id = IU_ID_READ_READY; uasp_send_read_response()
660 iu->tag = cpu_to_be16(cmd->tag); uasp_send_read_response()
666 stream->req_status->buf = iu; uasp_send_read_response()
667 stream->req_status->length = sizeof(struct iu); uasp_send_read_response()
683 struct sense_iu *iu = &cmd->sense_iu; uasp_send_write_request() local
689 iu->tag = cpu_to_be16(cmd->tag); uasp_send_write_request()
702 iu->iu_id = IU_ID_WRITE_READY; uasp_send_write_request()
703 iu->tag = cpu_to_be16(cmd->tag); uasp_send_write_request()
709 stream->req_status->buf = iu; uasp_send_write_request()
710 stream->req_status->length = sizeof(struct iu); uasp_send_write_request()
/linux-4.4.14/drivers/scsi/
H A Dgdth_ioctl.h219 } iu; member in struct:__anon9461
261 } iu; member in struct:__anon9469
H A Dscsi_transport_spi.c390 spi_transport_max_attr(iu, "%d\n");
790 DV_SET(iu, 0); spi_dv_retrain()
935 DV_SET(iu, 1); spi_dv_device_internal()
943 DV_SET(iu, 0); spi_dv_device_internal()
1160 tp->iu ? " IU" : "", spi_display_xfer_agreement()
1488 return TARGET_ATTRIBUTE_HELPER(iu); target_attribute_is_visible()
1491 return TARGET_ATTRIBUTE_HELPER(iu); target_attribute_is_visible()
/linux-4.4.14/include/scsi/
H A Dscsi_transport_spi.h38 unsigned int iu:1; /* Information Units enabled */ member in struct:spi_transport_attrs
81 #define spi_iu(x) (((struct spi_transport_attrs *)&(x)->starget_data)->iu)
H A Dlibsas.h729 struct ssp_response_iu *iu);
/linux-4.4.14/drivers/scsi/isci/
H A Dscu_task_context.h753 * This field is the command iu length in dwords
795 * command iu buffer
801 * command iu buffer
808 * response iu buffer
814 * response iu buffer
H A Drequest.c2459 * response iu, in the task struct, from the request object for the upper
2462 * @resp_iu: This parameter points to the response iu of the completed request.
2486 /* libsas updates the task status fields based on the response iu. */ isci_request_process_response_iu()
2765 /* crack the iu response buffer. */ isci_request_io_request_complete()
/linux-4.4.14/fs/9p/
H A Dcache.h4 * Copyright (C) 2009 by Abhishek Kulkarni <adkulkar@umail.iu.edu>
H A Dcache.c4 * Copyright (C) 2009 by Abhishek Kulkarni <adkulkar@umail.iu.edu>
/linux-4.4.14/drivers/scsi/mvsas/
H A Dmv_sas.c1650 void mvs_fill_ssp_resp_iu(struct ssp_response_iu *iu, mvs_fill_ssp_resp_iu() argument
1653 iu->datapres = 2; mvs_fill_ssp_resp_iu()
1654 iu->response_data_len = 0; mvs_fill_ssp_resp_iu()
1655 iu->sense_data_len = 17; mvs_fill_ssp_resp_iu()
1656 iu->status = 02; mvs_fill_ssp_resp_iu()
1657 mvs_set_sense(iu->sense_data, 17, 0, mvs_fill_ssp_resp_iu()
1682 struct ssp_response_iu *iu = slot->response + mvs_slot_err() local
1684 mvs_fill_ssp_resp_iu(iu, NOT_READY, 0x04, 01); mvs_slot_err()
1685 sas_ssp_task_response(mvi->dev, task, iu); mvs_slot_err()
1786 struct ssp_response_iu *iu = slot->response + mvs_slot_complete() local
1788 sas_ssp_task_response(mvi->dev, task, iu); mvs_slot_complete()
/linux-4.4.14/drivers/scsi/sym53c8xx_2/
H A Dsym_glue.c940 tp->tgoal.iu = tp->tgoal.dt = sym_exec_user_command()
946 tp->tgoal.iu = tp->tgoal.dt = sym_exec_user_command()
954 tp->tgoal.iu = tp->tgoal.dt = sym_exec_user_command()
1937 tp->tgoal.iu = tp->tgoal.dt = tp->tgoal.qas = 0; sym2_set_width()
1953 tp->tgoal.iu = tp->tgoal.dt = tp->tgoal.qas = 0; sym2_set_dt()
1958 static void sym2_set_iu(struct scsi_target *starget, int iu)
1964 if (iu)
1965 tp->tgoal.iu = tp->tgoal.dt = 1;
1967 tp->tgoal.iu = 0;
H A Dsym_hipd.c1371 goal->iu = 0; sym_check_goals()
1402 goal->iu = goal->qas = 0; sym_check_goals()
1434 (goal->iu || goal->dt || goal->qas || (goal->period < 0xa)))) { sym_prepare_nego()
1456 (goal->iu ? PPR_OPT_IU : 0) | sym_prepare_nego()
2055 tp->tprint.iu != spi_iu(starget) || sym_announce_transfer_rate()
2062 tp->tprint.iu = spi_iu(starget); sym_announce_transfer_rate()
2123 if (!tp->tgoal.dt && !tp->tgoal.iu && !tp->tgoal.qas) { sym_setsync()
2152 spi_iu(starget) = tp->tgoal.iu = !!(opts & PPR_OPT_IU); sym_setpprot()
4167 tp->tgoal.iu = tp->tgoal.dt = tp->tgoal.qas = 0; sym_ppr_nego_check()
4348 tp->tgoal.iu = tp->tgoal.dt = tp->tgoal.qas = 0; sym_nego_default()
H A Dsym_hipd.h353 unsigned int iu:1; member in struct:sym_trans
/linux-4.4.14/drivers/scsi/aic94xx/
H A Daic94xx_task.c191 struct ssp_response_iu *iu = asd_get_response_tasklet() local
196 sas_ssp_task_response(&asd_ha->pcidev->dev, task, iu); asd_get_response_tasklet()
/linux-4.4.14/drivers/message/fusion/
H A Dmptspi.c1020 static void mptspi_write_iu(struct scsi_target *starget, int iu) mptspi_write_iu() argument
1028 if (!iu && spi_period(starget) < 9) mptspi_write_iu()
1031 spi_iu(starget) = iu; mptspi_write_iu()
/linux-4.4.14/drivers/scsi/aic7xxx/
H A Daic79xx_osm.c2570 static void ahd_linux_set_iu(struct scsi_target *starget, int iu) ahd_linux_set_iu() argument
2589 iu ? "enabling" : "disabling"); ahd_linux_set_iu()
2592 if (iu && spi_max_width(starget)) { ahd_linux_set_iu()
H A Daic7xxx_osm.c2489 static void ahc_linux_set_iu(struct scsi_target *starget, int iu)
2505 if (iu)
/linux-4.4.14/drivers/scsi/pm8001/
H A Dpm8001_hwi.c1856 struct ssp_response_iu *iu; mpi_ssp_completion() local
1896 iu = &psspPayload->ssp_resp_iu; mpi_ssp_completion()
1897 sas_ssp_task_response(pm8001_ha->dev, t, iu); mpi_ssp_completion()
H A Dpm80xx_hwi.c1530 struct ssp_response_iu *iu; mpi_ssp_completion() local
1570 iu = &psspPayload->ssp_resp_iu; mpi_ssp_completion()
1571 sas_ssp_task_response(pm8001_ha->dev, t, iu); mpi_ssp_completion()
/linux-4.4.14/drivers/tty/serial/8250/
H A D8250_pci.c4522 * www.ussg.iu.edu/hypermail/linux/kernel/0303.1/0516.html).
/linux-4.4.14/drivers/scsi/mpt3sas/
H A Dmpt3sas_base.c489 desc = "target iu too short"; _base_sas_ioc_info()

Completed in 1236 milliseconds