Searched refs:inot (Results 1 - 8 of 8) sorted by relevance

/freebsd-10.2-release/sys/cam/scsi/
H A Dscsi_targ_bh.c307 struct ccb_immediate_notify *inot; local
309 inot = (struct ccb_immediate_notify*)malloc(sizeof(*inot),
312 if (inot == NULL) {
317 xpt_setup_ccb(&inot->ccb_h, periph->path, CAM_PRIORITY_NORMAL);
318 inot->ccb_h.func_code = XPT_IMMEDIATE_NOTIFY;
319 inot->ccb_h.cbfcnp = targbhdone;
320 SLIST_INSERT_HEAD(&softc->immed_notify_slist, &inot->ccb_h,
322 xpt_action((union ccb *)inot);
323 status = inot
[all...]
/freebsd-10.2-release/share/examples/scsi_target/
H A Dscsi_target.c368 struct ccb_immediate_notify *inot; local
385 inot = (struct ccb_immediate_notify *)malloc(sizeof(*inot));
386 if (inot == NULL) {
390 inot->ccb_h.func_code = XPT_IMMEDIATE_NOTIFY;
391 send_ccb((union ccb *)inot, /*priority*/1);
775 work_inot(struct ccb_immediate_notify *inot) argument
780 warnx("Working on INOT %p", inot);
782 status = inot->ccb_h.status;
795 switch (inot
[all...]
/freebsd-10.2-release/sys/dev/isp/
H A Disp_freebsd.c2773 in_fcentry_24xx_t *inot; local
2777 inot = (in_fcentry_24xx_t *)atp->srr;
2778 srr_off = inot->in_srr_reloff_lo | (inot->in_srr_reloff_hi << 16);
2791 switch (inot->in_srr_iu) {
2823 isp_prt(isp, ISP_LOGWARN, "Got an unknown information (%x) SRR- dropping", inot->in_srr_iu);
2832 if (isp_notify_ack(isp, inot)) {
2839 inot->in_reserved = 1;
2840 isp_async(isp, ISPASYNC_TARGET_NOTIFY_ACK, inot);
2846 if (isp_notify_ack(isp, inot)) {
2872 in_fcentry_24xx_t *inot = inot_raw; local
3086 isp_handle_platform_notify_scsi(ispsoftc_t *isp, in_entry_t *inot) argument
3118 struct ccb_immediate_notify *inot = NULL; local
3187 isp_handle_platform_notify_24xx(ispsoftc_t *isp, in_fcentry_24xx_t *inot) argument
3446 struct ccb_immediate_notify *inot; local
3695 isptargnotify(ispsoftc_t *isp, union ccb *iccb, struct ccb_immediate_notify *inot) argument
4043 struct ccb_immediate_notify *inot; local
6025 void *inot; local
[all...]
/freebsd-10.2-release/sys/cam/ctl/
H A Dscsi_ctl.c1411 struct ccb_immediate_notify *inot; local
1415 inot = &done_ccb->cin1;
1417 "seq %#x\n", __func__, inot->ccb_h.status,
1418 inot->tag_id, inot->seq_id);
1427 inot->ccb_h.io_ptr = io;
1428 io->io_hdr.nexus.initid.id = inot->initiator_id;
1430 io->io_hdr.nexus.targ_target.id = inot->ccb_h.target_id;
1431 io->io_hdr.nexus.targ_lun = inot->ccb_h.target_lun;
1433 io->taskio.tag_num = inot
[all...]
/freebsd-10.2-release/sys/dev/mpt/
H A Dmpt_cam.c4764 struct ccb_immediate_notify *inot; local
4768 inot = (struct ccb_immediate_notify *) STAILQ_FIRST(&trtp->inots);
4769 if (inot == NULL) {
4776 "Get FREE INOT %p lun %d\n", inot, inot->ccb_h.target_lun);
4778 inot->initiator_id = init_id; /* XXX */
4785 inot->arg = MSG_ABORT_TAG;
4788 inot->arg = MSG_CLEAR_TASK_SET;
4791 inot->arg = MSG_TARGET_RESET;
4794 inot
[all...]
/freebsd-10.2-release/sys/dev/aic7xxx/
H A Daic7xxx.c6370 struct ccb_immediate_notify *inot; local
6378 inot = (struct ccb_immediate_notify *)ccbh;
6385 inot->arg = event->event_type;
6386 inot->seq_id = event->event_arg;
6389 inot->initiator_id = event->initiator_id;
6390 xpt_done((union ccb *)inot);
H A Daic79xx.c8563 struct ccb_immediate_notify *inot; local
8571 inot = (struct ccb_immediate_notify *)ccbh;
8578 inot->arg = event->event_type;
8579 inot->seq_id = event->event_arg;
8582 inot->initiator_id = event->initiator_id;
8583 xpt_done((union ccb *)inot);
/freebsd-10.2-release/sys/dev/firewire/
H A Dsbp_targ.c536 struct ccb_immediate_notify *inot;

Completed in 223 milliseconds