Searched refs:inot (Results 1 – 10 of 10) sorted by relevance
/freebsd/sys/dev/isp/ |
H A D | isp_target.c | 719 isp_handle_notify_24xx(ispsoftc_t *isp, in_fcentry_24xx_t *inot) in isp_handle_notify_24xx() 726 uint8_t *ptr = (uint8_t *)inot; in isp_handle_notify_24xx() 731 nphdl = inot->in_nphdl; in isp_handle_notify_24xx() 733 portid = inot->in_portid_hi << 16 | inot->in_portid_lo; in isp_handle_notify_24xx() 738 chan = ISP_GET_VPIDX(isp, inot->in_vpidx); in isp_handle_notify_24xx() 740 inot->in_status != IN24XX_LIP_RESET && in isp_handle_notify_24xx() 741 inot->in_status != IN24XX_LINK_RESET && in isp_handle_notify_24xx() 742 inot->in_status != IN24XX_LINK_FAILED) { in isp_handle_notify_24xx() 744 __func__, inot in isp_handle_notify_24xx() 716 isp_handle_notify_24xx(ispsoftc_t * isp,in_fcentry_24xx_t * inot) isp_handle_notify_24xx() argument [all...] |
/freebsd/share/examples/scsi_target/ |
H A D | scsi_target.c | 372 struct ccb_immediate_notify *inot; in init_ccbs() local 389 inot = (struct ccb_immediate_notify *)malloc(sizeof(*inot)); in init_ccbs() 390 if (inot == NULL) { in init_ccbs() 394 inot->ccb_h.func_code = XPT_IMMEDIATE_NOTIFY; in init_ccbs() 395 send_ccb((union ccb *)inot, /*priority*/1); in init_ccbs() 779 work_inot(struct ccb_immediate_notify *inot) in work_inot() argument 784 warnx("Working on INOT %p", inot); in work_inot() 786 status = inot->ccb_h.status; in work_inot() 799 switch (inot->arg) { in work_inot() 810 warnx("INOT message %#x", inot->arg); in work_inot() [all …]
|
/freebsd/sys/dev/ocs_fc/ |
H A D | ocs_cam.c | 687 struct ccb_immediate_notify *inot = NULL; in ocs_scsi_recv_tmf() local 707 inot = (struct ccb_immediate_notify *)STAILQ_FIRST(&trsrc->inot); in ocs_scsi_recv_tmf() 710 if (!inot) { in ocs_scsi_recv_tmf() 725 STAILQ_REMOVE_HEAD(&trsrc->inot, sim_links.stqe); in ocs_scsi_recv_tmf() 727 inot->tag_id = tmfio->tag; in ocs_scsi_recv_tmf() 728 inot->seq_id = tmfio->tag; in ocs_scsi_recv_tmf() 731 inot->initiator_id = node->instance_index; in ocs_scsi_recv_tmf() 733 inot->initiator_id = CAM_TARGET_WILDCARD; in ocs_scsi_recv_tmf() 736 inot->ccb_h.status = CAM_MESSAGE_RECV; in ocs_scsi_recv_tmf() 737 inot->ccb_h.target_lun = lun; in ocs_scsi_recv_tmf() [all …]
|
H A D | ocs_cam.h | 50 ocs_hdr_list_t inot; member
|
/freebsd/sys/cam/scsi/ |
H A D | scsi_targ_bh.c | 307 struct ccb_immediate_notify *inot; in targbhenlun() local 309 inot = (struct ccb_immediate_notify*)malloc(sizeof(*inot), in targbhenlun() 312 if (inot == NULL) { in targbhenlun() 317 xpt_setup_ccb(&inot->ccb_h, periph->path, CAM_PRIORITY_NORMAL); in targbhenlun() 318 inot->ccb_h.func_code = XPT_IMMEDIATE_NOTIFY; in targbhenlun() 319 inot->ccb_h.cbfcnp = targbhdone; in targbhenlun() 320 SLIST_INSERT_HEAD(&softc->immed_notify_slist, &inot->ccb_h, in targbhenlun() 322 xpt_action((union ccb *)inot); in targbhenlun() 323 status = inot->ccb_h.status; in targbhenlun()
|
/freebsd/sys/cam/ctl/ |
H A D | scsi_ctl.c | 1404 struct ccb_immediate_notify *inot; in ctlfedone() local 1408 inot = &done_ccb->cin1; in ctlfedone() 1416 inot->ccb_h.io_ptr = io; in ctlfedone() 1417 io->io_hdr.nexus.initid = inot->initiator_id; in ctlfedone() 1421 CAM_EXTLUN_BYTE_SWIZZLE(inot->ccb_h.target_lun)); in ctlfedone() 1423 io->io_hdr.nexus.targ_lun = inot->ccb_h.target_lun; in ctlfedone() 1426 io->taskio.tag_num = inot->seq_id; in ctlfedone() 1428 status = inot->ccb_h.status & CAM_STATUS_MASK; in ctlfedone() 1437 switch (inot->arg) { in ctlfedone() 1475 __func__, inot in ctlfedone() [all...] |
/freebsd/sys/dev/mpt/ |
H A D | mpt_cam.c | 4761 struct ccb_immediate_notify *inot; in mpt_scsi_tgt_tsk_mgmt() local 4765 inot = (struct ccb_immediate_notify *) STAILQ_FIRST(&trtp->inots); in mpt_scsi_tgt_tsk_mgmt() 4766 if (inot == NULL) { in mpt_scsi_tgt_tsk_mgmt() 4773 "Get FREE INOT %p lun %jx\n", inot, in mpt_scsi_tgt_tsk_mgmt() 4774 (uintmax_t)inot->ccb_h.target_lun); in mpt_scsi_tgt_tsk_mgmt() 4776 inot->initiator_id = init_id; /* XXX */ in mpt_scsi_tgt_tsk_mgmt() 4777 inot->tag_id = tgt->tag_id; in mpt_scsi_tgt_tsk_mgmt() 4778 inot->seq_id = 0; in mpt_scsi_tgt_tsk_mgmt() 4785 inot->arg = MSG_QUERY_TASK_SET; in mpt_scsi_tgt_tsk_mgmt() 4788 inot->arg = MSG_ABORT_TASK_SET; in mpt_scsi_tgt_tsk_mgmt() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
H A D | SystemZInstrDFP.td | 10 // arithmetic. These instructions are inot currently used for code generation,
|
/freebsd/sys/dev/aic7xxx/ |
H A D | aic79xx.c | 8486 struct ccb_immediate_notify *inot; in ahd_send_lstate_events() local 8494 inot = (struct ccb_immediate_notify *)ccbh; in ahd_send_lstate_events() 8501 inot->arg = event->event_type; in ahd_send_lstate_events() 8502 inot->seq_id = event->event_arg; in ahd_send_lstate_events() 8505 inot->initiator_id = event->initiator_id; in ahd_send_lstate_events() 8506 xpt_done((union ccb *)inot); in ahd_send_lstate_events()
|
/freebsd/sys/dev/firewire/ |
H A D | sbp_targ.c | 529 struct ccb_immediate_notify *inot; in sbp_targ_send_lstate_events()
|