Searched refs:crs (Results 1 - 15 of 15) sorted by relevance

/freebsd-13-stable/crypto/openssh/
H A Dkrl.c251 struct revoked_serial rs, *ers, *crs, *irs; local
290 while ((crs = RB_PREV(revoked_serial_tree, rt, ers)) != NULL) {
291 KRL_DBG(("%s: pred %llu:%llu", __func__, crs->lo, crs->hi));
292 if (ers->lo != 0 && crs->hi < ers->lo - 1)
295 if (crs->lo < ers->lo) {
296 ers->lo = crs->lo;
300 RB_REMOVE(revoked_serial_tree, rt, crs);
301 free(crs);
304 while ((crs
[all...]
/freebsd-13-stable/share/examples/scsi_target/
H A Dscsi_target.c945 struct ccb_relsim crs; local
947 bzero(&crs, sizeof(crs));
948 crs.ccb_h.func_code = XPT_REL_SIMQ;
949 crs.release_flags = RELSIM_RELEASE_AFTER_QEMPTY;
950 crs.openings = 0;
951 crs.release_timeout = 0;
952 crs.qfrozen_cnt = 0;
953 send_ccb((union ccb *)&crs, /*priority*/0);
/freebsd-13-stable/sys/dev/smartpqi/
H A Dsmartpqi_cam.c1139 struct ccb_relsim crs; local
1143 memset(&crs, 0, sizeof(crs));
1144 xpt_setup_ccb(&crs.ccb_h, path, 5);
1145 crs.ccb_h.func_code = XPT_REL_SIMQ;
1146 crs.ccb_h.flags = CAM_DEV_QFREEZE;
1147 crs.release_flags = RELSIM_ADJUST_OPENINGS;
1148 crs.openings = queue_depth;
1149 xpt_action((union ccb *)&crs);
1150 if(crs
[all...]
/freebsd-13-stable/tools/build/mk/
H A DMakefile.boot61 ARFLAGS:= -crs
/freebsd-13-stable/sbin/iscontrol/
H A Dfsm.c377 CCB_CLEAR_ALL_EXCEPT_HDR(&ccb->crs);
379 ccb->crs.release_flags = RELSIM_ADJUST_OPENINGS;
380 ccb->crs.openings = sess->op->tags;
390 syslog(LOG_INFO, "%s tagged openings now %d\n", pathstr, ccb->crs.openings);
/freebsd-13-stable/sys/cam/
H A Dcam_xpt.c3032 struct ccb_relsim *crs; local
3035 crs = &start_ccb->crs;
3038 crs->ccb_h.status = CAM_DEV_NOT_THERE;
3042 if ((crs->release_flags & RELSIM_ADJUST_OPENINGS) != 0) {
3044 if (crs->openings > 0) {
3045 xpt_dev_ccbq_resize(path, crs->openings);
3049 crs->openings);
3055 if ((crs->release_flags & RELSIM_RELEASE_AFTER_TIMEOUT) != 0) {
3069 SBT_1MS * crs
5045 struct ccb_relsim crs; local
5075 struct ccb_relsim crs; local
[all...]
H A Dcam_periph.c1332 struct ccb_relsim crs; local
1336 xpt_setup_ccb(&crs.ccb_h, path, CAM_PRIORITY_NORMAL);
1337 crs.ccb_h.func_code = XPT_REL_SIMQ;
1338 crs.ccb_h.flags = getcount_only ? CAM_DEV_QFREEZE : 0;
1339 crs.release_flags = relsim_flags;
1340 crs.openings = openings;
1341 crs.release_timeout = arg;
1342 xpt_action((union ccb *)&crs);
1343 return (crs.qfrozen_cnt);
H A Dcam_ccb.h1343 struct ccb_relsim crs; member in union:ccb
/freebsd-13-stable/sys/dev/mpt/
H A Dmpt_raid.c1072 struct ccb_relsim crs; local
1074 xpt_setup_ccb(&crs.ccb_h, path, /*priority*/5);
1075 crs.ccb_h.func_code = XPT_REL_SIMQ;
1076 crs.ccb_h.flags = CAM_DEV_QFREEZE;
1077 crs.release_flags = RELSIM_ADJUST_OPENINGS;
1078 crs.openings = mpt->raid_queue_depth;
1079 xpt_action((union ccb *)&crs);
1080 if (crs.ccb_h.status != CAM_REQ_CMP)
1082 "with CAM status %#x\n", crs.ccb_h.status);
H A Dmpt_cam.c2427 struct ccb_relsim crs; local
2451 xpt_setup_ccb(&crs.ccb_h, tmppath, 5);
2452 crs.ccb_h.func_code = XPT_REL_SIMQ;
2453 crs.ccb_h.flags = CAM_DEV_QFREEZE;
2454 crs.release_flags = RELSIM_ADJUST_OPENINGS;
2455 crs.openings = pqf->CurrentDepth - 1;
2456 xpt_action((union ccb *)&crs);
2457 if (crs.ccb_h.status != CAM_REQ_CMP) {
/freebsd-13-stable/contrib/ntp/include/
H A Dmbg_gps166.h888 l_fp crs; ///< +- Sine Corr. Term to Orbit Radius [m] member in struct:__anon5217
/freebsd-13-stable/sys/netinet/
H A Dtcp_ratelimit.c1481 const struct tcp_rate_set *crs; local
1488 crs = crte->ptbl;
1493 rs = __DECONST(struct tcp_rate_set *, crs);
/freebsd-13-stable/contrib/ntp/libparse/
H A Ddata_mbg.c451 FETCH_DOUBLE(buffpp, &ephp->crs);
/freebsd-13-stable/sys/dev/pms/freebsd/driver/ini/src/
H A Dagtiapi.c472 struct ccb_relsim crs; local
473 xpt_setup_ccb(&crs.ccb_h, path, 5);
474 crs.ccb_h.func_code = XPT_REL_SIMQ;
475 crs.ccb_h.flags = CAM_DEV_QFREEZE;
476 crs.release_flags = RELSIM_ADJUST_OPENINGS;
477 crs.openings = QueueDepth;
478 xpt_action((union ccb *)&crs);
479 if(crs.ccb_h.status != CAM_REQ_CMP) {
/freebsd-13-stable/sbin/camcontrol/
H A Dcamcontrol.c5110 CCB_CLEAR_ALL_EXCEPT_HDR(&ccb->crs);
5113 ccb->crs.release_flags = RELSIM_ADJUST_OPENINGS;
5114 ccb->crs.openings = numtags;
5134 pathstr, ccb->crs.openings);

Completed in 122 milliseconds