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

/freebsd-11-stable/crypto/openssh/
H A Dkrl.c244 struct revoked_serial rs, *ers, *crs, *irs; local
283 while ((crs = RB_PREV(revoked_serial_tree, rt, ers)) != NULL) {
284 KRL_DBG(("%s: pred %llu:%llu", __func__, crs->lo, crs->hi));
285 if (ers->lo != 0 && crs->hi < ers->lo - 1)
288 if (crs->lo < ers->lo) {
289 ers->lo = crs->lo;
293 RB_REMOVE(revoked_serial_tree, rt, crs);
294 free(crs);
297 while ((crs
[all...]
/freebsd-11-stable/share/examples/scsi_target/
H A Dscsi_target.c943 struct ccb_relsim crs; local
945 bzero(&crs, sizeof(crs));
946 crs.ccb_h.func_code = XPT_REL_SIMQ;
947 crs.release_flags = RELSIM_RELEASE_AFTER_QEMPTY;
948 crs.openings = 0;
949 crs.release_timeout = 0;
950 crs.qfrozen_cnt = 0;
951 send_ccb((union ccb *)&crs, /*priority*/0);
/freebsd-11-stable/sys/dev/smartpqi/
H A Dsmartpqi_cam.c1018 struct ccb_relsim crs; local
1022 xpt_setup_ccb(&crs.ccb_h, path, 5);
1023 crs.ccb_h.func_code = XPT_REL_SIMQ;
1024 crs.ccb_h.flags = CAM_DEV_QFREEZE;
1025 crs.release_flags = RELSIM_ADJUST_OPENINGS;
1026 crs.openings = queue_depth;
1027 xpt_action((union ccb *)&crs);
1028 if(crs.ccb_h.status != CAM_REQ_CMP) {
1029 printf("XPT_REL_SIMQ failed stat=%d\n", crs.ccb_h.status);
/freebsd-11-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-11-stable/sys/cam/
H A Dcam_xpt.c2931 struct ccb_relsim *crs; local
2934 crs = &start_ccb->crs;
2938 crs->ccb_h.status = CAM_DEV_NOT_THERE;
2942 if ((crs->release_flags & RELSIM_ADJUST_OPENINGS) != 0) {
2945 if (crs->openings > 0) {
2946 xpt_dev_ccbq_resize(path, crs->openings);
2950 crs->openings);
2956 if ((crs->release_flags & RELSIM_RELEASE_AFTER_TIMEOUT) != 0) {
2973 SBT_1MS * crs
4933 struct ccb_relsim crs; local
4963 struct ccb_relsim crs; local
[all...]
H A Dcam_periph.c1269 struct ccb_relsim crs; local
1273 xpt_setup_ccb(&crs.ccb_h, path, CAM_PRIORITY_NORMAL);
1274 crs.ccb_h.func_code = XPT_REL_SIMQ;
1275 crs.ccb_h.flags = getcount_only ? CAM_DEV_QFREEZE : 0;
1276 crs.release_flags = relsim_flags;
1277 crs.openings = openings;
1278 crs.release_timeout = arg;
1279 xpt_action((union ccb *)&crs);
1280 return (crs.qfrozen_cnt);
H A Dcam_ccb.h1268 struct ccb_relsim crs; member in union:ccb
/freebsd-11-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.c2451 struct ccb_relsim crs; local
2475 xpt_setup_ccb(&crs.ccb_h, tmppath, 5);
2476 crs.ccb_h.func_code = XPT_REL_SIMQ;
2477 crs.ccb_h.flags = CAM_DEV_QFREEZE;
2478 crs.release_flags = RELSIM_ADJUST_OPENINGS;
2479 crs.openings = pqf->CurrentDepth - 1;
2480 xpt_action((union ccb *)&crs);
2481 if (crs.ccb_h.status != CAM_REQ_CMP) {
/freebsd-11-stable/contrib/ntp/include/
H A Dmbg_gps166.h888 l_fp crs; ///< +- Sine Corr. Term to Orbit Radius [m] member in struct:__anon4766
/freebsd-11-stable/contrib/ntp/libparse/
H A Ddata_mbg.c451 FETCH_DOUBLE(buffpp, &ephp->crs);
/freebsd-11-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) {
3092 struct ccb_relsim crs; local
/freebsd-11-stable/sbin/camcontrol/
H A Dcamcontrol.c4955 CCB_CLEAR_ALL_EXCEPT_HDR(&ccb->crs);
4958 ccb->crs.release_flags = RELSIM_ADJUST_OPENINGS;
4959 ccb->crs.openings = numtags;
4979 pathstr, ccb->crs.openings);

Completed in 412 milliseconds