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

/freebsd-11-stable/sys/dev/ocs_fc/
H A Docs_cam.h53 ocs_hdr_list_t inot; member in struct:ocs_tgt_resource_s
H A Docs_cam.c666 struct ccb_immediate_notify *inot = NULL; local
686 inot = (struct ccb_immediate_notify *)STAILQ_FIRST(&trsrc->inot);
689 if (!inot) {
705 STAILQ_REMOVE_HEAD(&trsrc->inot, sim_links.stqe);
707 inot->tag_id = tmfio->tag;
708 inot->seq_id = tmfio->tag;
711 inot->initiator_id = node->instance_index;
713 inot->initiator_id = CAM_TARGET_WILDCARD;
716 inot
[all...]
/freebsd-11-stable/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-11-stable/sys/dev/isp/
H A Disp_target.c1408 isp_handle_notify_24xx(ispsoftc_t *isp, in_fcentry_24xx_t *inot) argument
1415 uint8_t *ptr = (uint8_t *)inot;
1420 nphdl = inot->in_nphdl;
1422 portid = inot->in_portid_hi << 16 | inot->in_portid_lo;
1427 chan = ISP_GET_VPIDX(isp, inot->in_vpidx);
1429 inot->in_status != IN24XX_LIP_RESET &&
1430 inot->in_status != IN24XX_LINK_RESET &&
1431 inot->in_status != IN24XX_LINK_FAILED) {
1433 __func__, inot
[all...]
H A Disp_freebsd.c1954 in_fcentry_24xx_t *inot; local
1958 inot = (in_fcentry_24xx_t *)atp->srr;
1959 srr_off = inot->in_srr_reloff_lo | (inot->in_srr_reloff_hi << 16);
1972 switch (inot->in_srr_iu) {
2004 isp_prt(isp, ISP_LOGWARN, "Got an unknown information (%x) SRR- dropping", inot->in_srr_iu);
2013 if (isp_notify_ack(isp, inot)) {
2020 inot->in_reserved = 1;
2021 isp_async(isp, ISPASYNC_TARGET_NOTIFY_ACK, inot);
2027 if (isp_notify_ack(isp, inot)) {
2052 in_fcentry_24xx_t *inot = notify->nt_lreserved; local
2338 struct ccb_immediate_notify *inot; local
3940 void *inot; local
[all...]
/freebsd-11-stable/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-11-stable/sys/cam/ctl/
H A Dscsi_ctl.c1411 struct ccb_immediate_notify *inot; local
1415 inot = &done_ccb->cin1;
1423 inot->ccb_h.io_ptr = io;
1424 io->io_hdr.nexus.initid = inot->initiator_id;
1428 CAM_EXTLUN_BYTE_SWIZZLE(inot->ccb_h.target_lun));
1430 io->io_hdr.nexus.targ_lun = inot->ccb_h.target_lun;
1433 io->taskio.tag_num = inot->seq_id;
1435 status = inot->ccb_h.status & CAM_STATUS_MASK;
1444 switch (inot->arg) {
1482 __func__, inot
[all...]
/freebsd-11-stable/sys/dev/mpt/
H A Dmpt_cam.c4785 struct ccb_immediate_notify *inot; local
4789 inot = (struct ccb_immediate_notify *) STAILQ_FIRST(&trtp->inots);
4790 if (inot == NULL) {
4797 "Get FREE INOT %p lun %jx\n", inot,
4798 (uintmax_t)inot->ccb_h.target_lun);
4800 inot->initiator_id = init_id; /* XXX */
4801 inot->tag_id = tgt->tag_id;
4802 inot->seq_id = 0;
4809 inot->arg = MSG_QUERY_TASK_SET;
4812 inot
[all...]
/freebsd-11-stable/sys/dev/aic7xxx/
H A Daic7xxx.c6364 struct ccb_immediate_notify *inot; local
6372 inot = (struct ccb_immediate_notify *)ccbh;
6379 inot->arg = event->event_type;
6380 inot->seq_id = event->event_arg;
6383 inot->initiator_id = event->initiator_id;
6384 xpt_done((union ccb *)inot);
H A Daic79xx.c8554 struct ccb_immediate_notify *inot; local
8562 inot = (struct ccb_immediate_notify *)ccbh;
8569 inot->arg = event->event_type;
8570 inot->seq_id = event->event_arg;
8573 inot->initiator_id = event->initiator_id;
8574 xpt_done((union ccb *)inot);
/freebsd-11-stable/sys/dev/firewire/
H A Dsbp_targ.c529 struct ccb_immediate_notify *inot;

Completed in 285 milliseconds