Home
last modified time | relevance | path

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

12

/freebsd-13-stable/usr.sbin/bhyve/
HDacpi_device.c48 SLIST_HEAD(acpi_resource_list, acpi_resource_list_entry) crs;
67 SLIST_INIT(&dev->crs); in acpi_device_create()
88 while (!SLIST_EMPTY(&dev->crs)) { in acpi_device_destroy()
89 res = SLIST_FIRST(&dev->crs); in acpi_device_destroy()
90 SLIST_REMOVE_HEAD(&dev->crs, chain); in acpi_device_destroy()
114 SLIST_INSERT_HEAD(&dev->crs, res, chain); in acpi_device_add_res_fixed_ioport()
137 SLIST_INSERT_HEAD(&dev->crs, res, chain); in acpi_device_add_res_fixed_memory32()
167 SLIST_FOREACH(res, &dev->crs, chain) { in acpi_device_write_dsdt_crs()
/freebsd-13-stable/crypto/openssh/
HDkrl.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-13-stable/share/examples/scsi_target/
HDscsi_target.c947 struct ccb_relsim crs; in rel_simq() local
949 bzero(&crs, sizeof(crs)); in rel_simq()
950 crs.ccb_h.func_code = XPT_REL_SIMQ; in rel_simq()
951 crs.release_flags = RELSIM_RELEASE_AFTER_QEMPTY; in rel_simq()
952 crs.openings = 0; in rel_simq()
953 crs.release_timeout = 0; in rel_simq()
954 crs.qfrozen_cnt = 0; in rel_simq()
955 send_ccb((union ccb *)&crs, /*priority*/0); in rel_simq()
/freebsd-13-stable/usr.bin/lorder/tests/
HDlorder_test.sh91 ar -crs $n.a $n.o
94 ar -crs z.a d.o e.o
/freebsd-13-stable/sys/dev/smartpqi/
HDsmartpqi_cam.c1138 struct ccb_relsim crs; in smartpqi_adjust_queue_depth() local
1142 memset(&crs, 0, sizeof(crs)); in smartpqi_adjust_queue_depth()
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-13-stable/sys/contrib/device-tree/Bindings/pinctrl/
Dmarvell,orion-pinctrl.txt34 mpp10 10 gpio, ge(crs)
59 mpp10 10 gpio, ge(crs)
84 mpp10 10 gpio, ge(crs)
Dmarvell,kirkwood-pinctrl.txt35 mii(crs)
43 mpp16 16 gpio, sdio(d2), uart0(cts), uart1(rxd), mii(crs)
73 mii(crs), sata0(prsnt)
81 mpp16 16 gpio, sdio(d2), uart0(cts), uart1(rxd), mii(crs)
117 mii(crs), sata0(prsnt)
125 mpp16 16 gpio, sdio(d2), uart0(cts), uart1(rxd), mii(crs),
166 mii(crs), sata0(prsnt)
174 mpp16 16 gpio, sdio(d2), uart0(cts), uart1(rxd), mii(crs),
228 mpp9 9 gpio, twsi(sck), uart0(cts), uart1(cts), mii(crs),
238 mpp16 16 gpio, sdio(d2), uart0(cts), uart1(rxd), mii(crs),
Dmarvell,armada-xp-pinctrl.txt40 mpp19 19 gpio, ge0(crs), ge1(rxd1), lcd(d19), ptp(evreq)
Dmarvell,armada-370-pinctrl.txt47 mpp26 26 gpio, ge0(crs), ge1(rxd1), spi1(miso)
Dmarvell,armada-38x-pinctrl.txt24 mpp6 6 gpio, ge0(txclkout), ge0(crs), dev(cs3)
/freebsd-13-stable/sys/cam/
HDcam_xpt.c2998 struct ccb_relsim *crs; in xpt_action_default() local
3001 crs = &start_ccb->crs; in xpt_action_default()
3004 crs->ccb_h.status = CAM_DEV_NOT_THERE; in xpt_action_default()
3008 if ((crs->release_flags & RELSIM_ADJUST_OPENINGS) != 0) { in xpt_action_default()
3010 if (crs->openings > 0) { in xpt_action_default()
3011 xpt_dev_ccbq_resize(path, crs->openings); in xpt_action_default()
3015 crs->openings); in xpt_action_default()
3021 if ((crs->release_flags & RELSIM_RELEASE_AFTER_TIMEOUT) != 0) { in xpt_action_default()
3035 SBT_1MS * crs->release_timeout, SBT_1MS, in xpt_action_default()
3041 if ((crs->release_flags & RELSIM_RELEASE_AFTER_CMDCMPLT) != 0) { in xpt_action_default()
[all …]
HDcam_periph.c1349 struct ccb_relsim crs; in cam_release_devq() local
1353 memset(&crs, 0, sizeof(crs)); in cam_release_devq()
1354 xpt_setup_ccb(&crs.ccb_h, path, CAM_PRIORITY_NORMAL); in cam_release_devq()
1355 crs.ccb_h.func_code = XPT_REL_SIMQ; in cam_release_devq()
1356 crs.ccb_h.flags = getcount_only ? CAM_DEV_QFREEZE : 0; in cam_release_devq()
1357 crs.release_flags = relsim_flags; in cam_release_devq()
1358 crs.openings = openings; in cam_release_devq()
1359 crs.release_timeout = arg; in cam_release_devq()
1360 xpt_action((union ccb *)&crs); in cam_release_devq()
1361 return (crs.qfrozen_cnt); in cam_release_devq()
HDcam_ccb.h1341 struct ccb_relsim crs; member
/freebsd-13-stable/sbin/iscontrol/
HDfsm.c375 CCB_CLEAR_ALL_EXCEPT_HDR(&ccb->crs); in doCAM()
377 ccb->crs.release_flags = RELSIM_ADJUST_OPENINGS; in doCAM()
378 ccb->crs.openings = sess->op->tags; in doCAM()
388 syslog(LOG_INFO, "%s tagged openings now %d\n", pathstr, ccb->crs.openings); in doCAM()
/freebsd-13-stable/sys/dev/mpt/
HDmpt_raid.c1070 struct ccb_relsim crs; in mpt_adjust_queue_depth() local
1072 xpt_setup_ccb(&crs.ccb_h, path, /*priority*/5); in mpt_adjust_queue_depth()
1073 crs.ccb_h.func_code = XPT_REL_SIMQ; in mpt_adjust_queue_depth()
1074 crs.ccb_h.flags = CAM_DEV_QFREEZE; in mpt_adjust_queue_depth()
1075 crs.release_flags = RELSIM_ADJUST_OPENINGS; in mpt_adjust_queue_depth()
1076 crs.openings = mpt->raid_queue_depth; in mpt_adjust_queue_depth()
1077 xpt_action((union ccb *)&crs); in mpt_adjust_queue_depth()
1078 if (crs.ccb_h.status != CAM_REQ_CMP) in mpt_adjust_queue_depth()
1080 "with CAM status %#x\n", crs.ccb_h.status); in mpt_adjust_queue_depth()
HDmpt_cam.c2425 struct ccb_relsim crs; in mpt_cam_event() local
2449 xpt_setup_ccb(&crs.ccb_h, tmppath, 5); in mpt_cam_event()
2450 crs.ccb_h.func_code = XPT_REL_SIMQ; in mpt_cam_event()
2451 crs.ccb_h.flags = CAM_DEV_QFREEZE; in mpt_cam_event()
2452 crs.release_flags = RELSIM_ADJUST_OPENINGS; in mpt_cam_event()
2453 crs.openings = pqf->CurrentDepth - 1; in mpt_cam_event()
2454 xpt_action((union ccb *)&crs); in mpt_cam_event()
2455 if (crs.ccb_h.status != CAM_REQ_CMP) { in mpt_cam_event()
/freebsd-13-stable/tools/build/mk/
HDMakefile.boot60 ARFLAGS:= -crs
/freebsd-13-stable/contrib/ntp/include/
HDmbg_gps166.h888 l_fp crs; ///< +- Sine Corr. Term to Orbit Radius [m] member
/freebsd-13-stable/sys/netinet/
HDtcp_ratelimit.c1480 const struct tcp_rate_set *crs; in tcp_rel_pacing_rate() local
1487 crs = crte->ptbl; in tcp_rel_pacing_rate()
1492 rs = __DECONST(struct tcp_rate_set *, crs); in tcp_rel_pacing_rate()
/freebsd-13-stable/contrib/ntp/libparse/
HDdata_mbg.c451 FETCH_DOUBLE(buffpp, &ephp->crs); in get_mbg_eph()
/freebsd-13-stable/sys/dev/pms/freebsd/driver/ini/src/
HDagtiapi.c464 struct ccb_relsim crs; in agtiapi_adjust_queue_depth() local
465 xpt_setup_ccb(&crs.ccb_h, path, 5); in agtiapi_adjust_queue_depth()
466 crs.ccb_h.func_code = XPT_REL_SIMQ; in agtiapi_adjust_queue_depth()
467 crs.ccb_h.flags = CAM_DEV_QFREEZE; in agtiapi_adjust_queue_depth()
468 crs.release_flags = RELSIM_ADJUST_OPENINGS; in agtiapi_adjust_queue_depth()
469 crs.openings = QueueDepth; in agtiapi_adjust_queue_depth()
470 xpt_action((union ccb *)&crs); in agtiapi_adjust_queue_depth()
471 if(crs.ccb_h.status != CAM_REQ_CMP) { in agtiapi_adjust_queue_depth()
/freebsd-13-stable/sys/contrib/device-tree/Bindings/arm/marvell/
HDcp110-system-controller.txt140 mpp49 49 gpio, ge1(txclkout), mii(crs), spi1(miso), uart1(rxd), ge(mdio), pcie0(clkreq), sdio(v18_e…
/freebsd-13-stable/sys/contrib/device-tree/src/arm/
HDstih407-pinctrl.dtsi250 crs = <&pio1 2 ALT1 IN BYPASS 1000>;
/freebsd-13-stable/contrib/file/magic/Magdir/
HDwordprocessors91 !:ext wpd/wpt/wkb/icr/tut/sty/tst/crs
/freebsd-13-stable/sbin/camcontrol/
HDcamcontrol.c5222 CCB_CLEAR_ALL_EXCEPT_HDR(&ccb->crs); in tagcontrol()
5225 ccb->crs.release_flags = RELSIM_ADJUST_OPENINGS; in tagcontrol()
5226 ccb->crs.openings = numtags; in tagcontrol()
5246 pathstr, ccb->crs.openings); in tagcontrol()

12