Home
last modified time | relevance | path

Searched refs:crs (Results 1 – 20 of 20) sorted by relevance

/freebsd-12-stable/crypto/openssh/
Dkrl.c252 struct revoked_serial rs, *ers, *crs, *irs; in insert_serial_range() local
290 while ((crs = RB_PREV(revoked_serial_tree, rt, ers)) != NULL) { in insert_serial_range()
291 KRL_DBG(("pred %llu:%llu", crs->lo, crs->hi)); in insert_serial_range()
292 if (ers->lo != 0 && crs->hi < ers->lo - 1) in insert_serial_range()
295 if (crs->lo < ers->lo) { in insert_serial_range()
296 ers->lo = crs->lo; in insert_serial_range()
299 RB_REMOVE(revoked_serial_tree, rt, crs); in insert_serial_range()
300 free(crs); in insert_serial_range()
303 while ((crs = RB_NEXT(revoked_serial_tree, rt, ers)) != NULL) { in insert_serial_range()
304 KRL_DBG(("succ %llu:%llu", crs->lo, crs->hi)); in insert_serial_range()
[all …]
/freebsd-12-stable/share/examples/scsi_target/
Dscsi_target.c945 struct ccb_relsim crs; in rel_simq() local
947 bzero(&crs, sizeof(crs)); in rel_simq()
948 crs.ccb_h.func_code = XPT_REL_SIMQ; in rel_simq()
949 crs.release_flags = RELSIM_RELEASE_AFTER_QEMPTY; in rel_simq()
950 crs.openings = 0; in rel_simq()
951 crs.release_timeout = 0; in rel_simq()
952 crs.qfrozen_cnt = 0; in rel_simq()
953 send_ccb((union ccb *)&crs, /*priority*/0); in rel_simq()
/freebsd-12-stable/sys/dev/smartpqi/
Dsmartpqi_cam.c1139 struct ccb_relsim crs; in smartpqi_adjust_queue_depth() local
1143 xpt_setup_ccb(&crs.ccb_h, path, 5); in smartpqi_adjust_queue_depth()
1144 crs.ccb_h.func_code = XPT_REL_SIMQ; in smartpqi_adjust_queue_depth()
1145 crs.ccb_h.flags = CAM_DEV_QFREEZE; in smartpqi_adjust_queue_depth()
1146 crs.release_flags = RELSIM_ADJUST_OPENINGS; in smartpqi_adjust_queue_depth()
1147 crs.openings = queue_depth; in smartpqi_adjust_queue_depth()
1148 xpt_action((union ccb *)&crs); in smartpqi_adjust_queue_depth()
1149 if(crs.ccb_h.status != CAM_REQ_CMP) { in smartpqi_adjust_queue_depth()
1150 printf("XPT_REL_SIMQ failed stat=%d\n", crs.ccb_h.status); in smartpqi_adjust_queue_depth()
/freebsd-12-stable/sys/cam/
Dcam_xpt.c3055 struct ccb_relsim *crs; in xpt_action_default() local
3058 crs = &start_ccb->crs; in xpt_action_default()
3062 crs->ccb_h.status = CAM_DEV_NOT_THERE; in xpt_action_default()
3066 if ((crs->release_flags & RELSIM_ADJUST_OPENINGS) != 0) { in xpt_action_default()
3069 if (crs->openings > 0) { in xpt_action_default()
3070 xpt_dev_ccbq_resize(path, crs->openings); in xpt_action_default()
3074 crs->openings); in xpt_action_default()
3080 if ((crs->release_flags & RELSIM_RELEASE_AFTER_TIMEOUT) != 0) { in xpt_action_default()
3097 SBT_1MS * crs->release_timeout, 0, in xpt_action_default()
3104 if ((crs->release_flags & RELSIM_RELEASE_AFTER_CMDCMPLT) != 0) { in xpt_action_default()
[all …]
Dcam_periph.c1353 struct ccb_relsim crs; in cam_release_devq() local
1357 xpt_setup_ccb(&crs.ccb_h, path, CAM_PRIORITY_NORMAL); in cam_release_devq()
1358 crs.ccb_h.func_code = XPT_REL_SIMQ; in cam_release_devq()
1359 crs.ccb_h.flags = getcount_only ? CAM_DEV_QFREEZE : 0; in cam_release_devq()
1360 crs.release_flags = relsim_flags; in cam_release_devq()
1361 crs.openings = openings; in cam_release_devq()
1362 crs.release_timeout = arg; in cam_release_devq()
1363 xpt_action((union ccb *)&crs); in cam_release_devq()
1364 return (crs.qfrozen_cnt); in cam_release_devq()
Dcam_ccb.h1318 struct ccb_relsim crs; member
/freebsd-12-stable/sbin/iscontrol/
Dfsm.c377 CCB_CLEAR_ALL_EXCEPT_HDR(&ccb->crs); in doCAM()
379 ccb->crs.release_flags = RELSIM_ADJUST_OPENINGS; in doCAM()
380 ccb->crs.openings = sess->op->tags; in doCAM()
390 syslog(LOG_INFO, "%s tagged openings now %d\n", pathstr, ccb->crs.openings); in doCAM()
/freebsd-12-stable/sys/dev/mpt/
Dmpt_raid.c1074 struct ccb_relsim crs; in mpt_adjust_queue_depth() local
1076 xpt_setup_ccb(&crs.ccb_h, path, /*priority*/5); in mpt_adjust_queue_depth()
1077 crs.ccb_h.func_code = XPT_REL_SIMQ; in mpt_adjust_queue_depth()
1078 crs.ccb_h.flags = CAM_DEV_QFREEZE; in mpt_adjust_queue_depth()
1079 crs.release_flags = RELSIM_ADJUST_OPENINGS; in mpt_adjust_queue_depth()
1080 crs.openings = mpt->raid_queue_depth; in mpt_adjust_queue_depth()
1081 xpt_action((union ccb *)&crs); in mpt_adjust_queue_depth()
1082 if (crs.ccb_h.status != CAM_REQ_CMP) in mpt_adjust_queue_depth()
1084 "with CAM status %#x\n", crs.ccb_h.status); in mpt_adjust_queue_depth()
Dmpt_cam.c2433 struct ccb_relsim crs; in mpt_cam_event() local
2457 xpt_setup_ccb(&crs.ccb_h, tmppath, 5); in mpt_cam_event()
2458 crs.ccb_h.func_code = XPT_REL_SIMQ; in mpt_cam_event()
2459 crs.ccb_h.flags = CAM_DEV_QFREEZE; in mpt_cam_event()
2460 crs.release_flags = RELSIM_ADJUST_OPENINGS; in mpt_cam_event()
2461 crs.openings = pqf->CurrentDepth - 1; in mpt_cam_event()
2462 xpt_action((union ccb *)&crs); in mpt_cam_event()
2463 if (crs.ccb_h.status != CAM_REQ_CMP) { in mpt_cam_event()
/freebsd-12-stable/sys/gnu/dts/arm/
Dstih415-pinctrl.dtsi160 crs = <&pio1 2 ALT1 IN BYPASS 1000>;
375 crs = <&pio15 2 ALT2 IN BYPASS 1000>;
410 crs = <&pio15 2 ALT2 IN BYPASS 1000>;
Dstih416-pinctrl.dtsi182 crs = <&pio1 2 ALT1 IN BYPASS 1000>;
476 crs = <&pio15 2 ALT2 IN BYPASS 1000>;
Dstih407-pinctrl.dtsi250 crs = <&pio1 2 ALT1 IN BYPASS 1000>;
/freebsd-12-stable/contrib/ntp/include/
Dmbg_gps166.h888 l_fp crs; ///< +- Sine Corr. Term to Orbit Radius [m] member
/freebsd-12-stable/sys/dev/pms/freebsd/driver/ini/src/
Dagtiapi.c472 struct ccb_relsim crs; in agtiapi_adjust_queue_depth() local
473 xpt_setup_ccb(&crs.ccb_h, path, 5); in agtiapi_adjust_queue_depth()
474 crs.ccb_h.func_code = XPT_REL_SIMQ; in agtiapi_adjust_queue_depth()
475 crs.ccb_h.flags = CAM_DEV_QFREEZE; in agtiapi_adjust_queue_depth()
476 crs.release_flags = RELSIM_ADJUST_OPENINGS; in agtiapi_adjust_queue_depth()
477 crs.openings = QueueDepth; in agtiapi_adjust_queue_depth()
478 xpt_action((union ccb *)&crs); in agtiapi_adjust_queue_depth()
479 if(crs.ccb_h.status != CAM_REQ_CMP) { in agtiapi_adjust_queue_depth()
/freebsd-12-stable/contrib/ntp/libparse/
Ddata_mbg.c451 FETCH_DOUBLE(buffpp, &ephp->crs); in get_mbg_eph()
/freebsd-12-stable/contrib/file/magic/Magdir/
Dwordprocessors69 !:ext wpd/wpt/wkb/icr/tut/sty/tst/crs
/freebsd-12-stable/sbin/camcontrol/
Dcamcontrol.c5135 CCB_CLEAR_ALL_EXCEPT_HDR(&ccb->crs); in tagcontrol()
5138 ccb->crs.release_flags = RELSIM_ADJUST_OPENINGS; in tagcontrol()
5139 ccb->crs.openings = numtags; in tagcontrol()
5159 pathstr, ccb->crs.openings); in tagcontrol()
/freebsd-12-stable/usr.sbin/services_mkdb/
Dservices878 crs 507/tcp
879 crs 507/udp
/freebsd-12-stable/crypto/openssl/crypto/objects/
Dobjects.txt628 id-cct 1 : id-cct-crs
/freebsd-12-stable/contrib/gcc/
DChangeLog-199919618 * rs6000.md: Revert "alternate use of crs if cr0 not available"