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

/freebsd-9.3-release/sys/cam/scsi/
H A Dscsi_targ_bh.c308 struct ccb_immediate_notify *inot; local
310 inot = (struct ccb_immediate_notify*)malloc(sizeof(*inot),
313 if (inot == NULL) {
318 xpt_setup_ccb(&inot->ccb_h, periph->path, CAM_PRIORITY_NORMAL);
319 inot->ccb_h.func_code = XPT_IMMEDIATE_NOTIFY;
320 inot->ccb_h.cbfcnp = targbhdone;
321 SLIST_INSERT_HEAD(&softc->immed_notify_slist, &inot->ccb_h,
323 xpt_action((union ccb *)inot);
324 status = inot
[all...]
/freebsd-9.3-release/share/examples/scsi_target/
H A Dscsi_target.c374 struct ccb_immediate_notify *inot; local
391 inot = (struct ccb_immediate_notify *)malloc(sizeof(*inot));
392 if (inot == NULL) {
396 inot->ccb_h.func_code = XPT_IMMEDIATE_NOTIFY;
397 send_ccb((union ccb *)inot, /*priority*/1);
781 work_inot(struct ccb_immediate_notify *inot) argument
786 warnx("Working on INOT %p", inot);
788 status = inot->ccb_h.status;
801 switch (inot
[all...]
/freebsd-9.3-release/sys/dev/isp/
H A Disp_freebsd.c2734 in_fcentry_24xx_t *inot; local
2738 inot = (in_fcentry_24xx_t *)atp->srr;
2739 srr_off = inot->in_srr_reloff_lo | (inot->in_srr_reloff_hi << 16);
2752 switch (inot->in_srr_iu) {
2784 isp_prt(isp, ISP_LOGWARN, "Got an unknown information (%x) SRR- dropping", inot->in_srr_iu);
2793 if (isp_notify_ack(isp, inot)) {
2800 inot->in_reserved = 1;
2801 isp_async(isp, ISPASYNC_TARGET_NOTIFY_ACK, inot);
2807 if (isp_notify_ack(isp, inot)) {
2833 in_fcentry_24xx_t *inot = inot_raw; local
3039 isp_handle_platform_notify_scsi(ispsoftc_t *isp, in_entry_t *inot) argument
3071 struct ccb_immediate_notify *inot = NULL; local
3140 isp_handle_platform_notify_24xx(ispsoftc_t *isp, in_fcentry_24xx_t *inot) argument
3399 struct ccb_immediate_notify *inot; local
3648 isptargnotify(ispsoftc_t *isp, union ccb *iccb, struct ccb_immediate_notify *inot) argument
3996 struct ccb_immediate_notify *inot; local
5924 void *inot; local
[all...]
/freebsd-9.3-release/sys/cam/ctl/
H A Dscsi_ctl.c1507 struct ccb_immediate_notify *inot; local
1511 inot = &done_ccb->cin1;
1518 "seq %#x\n", __func__, inot->ccb_h.status,
1519 inot->tag_id, inot->seq_id);
1530 inot->ccb_h.io_ptr = io;
1531 io->io_hdr.nexus.initid.id = inot->initiator_id;
1533 io->io_hdr.nexus.targ_target.id = inot->ccb_h.target_id;
1534 io->io_hdr.nexus.targ_lun = inot->ccb_h.target_lun;
1536 io->taskio.tag_num = inot
[all...]
/freebsd-9.3-release/sys/dev/mpt/
H A Dmpt_cam.c4762 struct ccb_immediate_notify *inot; local
4766 inot = (struct ccb_immediate_notify *) STAILQ_FIRST(&trtp->inots);
4767 if (inot == NULL) {
4774 "Get FREE INOT %p lun %d\n", inot, inot->ccb_h.target_lun);
4776 inot->initiator_id = init_id; /* XXX */
4783 inot->arg = MSG_ABORT_TAG;
4786 inot->arg = MSG_CLEAR_TASK_SET;
4789 inot->arg = MSG_TARGET_RESET;
4792 inot
[all...]
/freebsd-9.3-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-9.3-release/sys/dev/firewire/
H A Dsbp_targ.c491 struct ccb_immediate_notify *inot;

Completed in 134 milliseconds