Home
last modified time | relevance | path

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

12

/freebsd/usr.sbin/bhyve/
H A Dacpi_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/crypto/openssh/
H A 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/share/examples/scsi_target/
H A Dscsi_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/usr.bin/lorder/tests/
H A Dlorder_test.sh91 ar -crs $n.a $n.o
94 ar -crs z.a d.o e.o
/freebsd/sys/contrib/device-tree/Bindings/pinctrl/
H A Dmarvell,orion-pinctrl.txt34 mpp10 10 gpio, ge(crs)
59 mpp10 10 gpio, ge(crs)
84 mpp10 10 gpio, ge(crs)
H A 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),
H A Dmarvell,armada-xp-pinctrl.txt40 mpp19 19 gpio, ge0(crs), ge1(rxd1), lcd(d19), ptp(evreq)
H A Dmarvell,armada-370-pinctrl.txt47 mpp26 26 gpio, ge0(crs), ge1(rxd1), spi1(miso)
H A Dmarvell,armada-38x-pinctrl.txt24 mpp6 6 gpio, ge0(txclkout), ge0(crs), dev(cs3)
/freebsd/sys/dev/smartpqi/
H A Dsmartpqi_cam.c1172 struct ccb_relsim crs; in smartpqi_adjust_queue_depth() local
1176 memset(&crs, 0, sizeof(struct ccb_relsim)); in smartpqi_adjust_queue_depth()
1177 xpt_setup_ccb(&crs.ccb_h, path, 5); in smartpqi_adjust_queue_depth()
1178 crs.ccb_h.func_code = XPT_REL_SIMQ; in smartpqi_adjust_queue_depth()
1179 crs.ccb_h.flags = CAM_DEV_QFREEZE; in smartpqi_adjust_queue_depth()
1180 crs.release_flags = RELSIM_ADJUST_OPENINGS; in smartpqi_adjust_queue_depth()
1181 crs.openings = queue_depth; in smartpqi_adjust_queue_depth()
1182 xpt_action((union ccb *)&crs); in smartpqi_adjust_queue_depth()
1183 if(crs.ccb_h.status != CAM_REQ_CMP) { in smartpqi_adjust_queue_depth()
1184 printf("XPT_REL_SIMQ failed stat=%d\n", crs.ccb_h.status); in smartpqi_adjust_queue_depth()
/freebsd/sys/cam/
H A Dcam_xpt.c2922 struct ccb_relsim *crs; in xpt_action_default() local
2925 crs = &start_ccb->crs; in xpt_action_default()
2928 crs->ccb_h.status = CAM_DEV_NOT_THERE; in xpt_action_default()
2932 if ((crs->release_flags & RELSIM_ADJUST_OPENINGS) != 0) { in xpt_action_default()
2934 if (crs->openings > 0) { in xpt_action_default()
2935 xpt_dev_ccbq_resize(path, crs->openings); in xpt_action_default()
2939 crs->openings); in xpt_action_default()
2945 if ((crs->release_flags & RELSIM_RELEASE_AFTER_TIMEOUT) != 0) { in xpt_action_default()
2959 SBT_1MS * crs->release_timeout, SBT_1MS, in xpt_action_default()
2965 if ((crs->release_flags & RELSIM_RELEASE_AFTER_CMDCMPLT) != 0) { in xpt_action_default()
[all …]
H A Dcam_periph.c1355 struct ccb_relsim crs; in cam_release_devq() local
1359 memset(&crs, 0, sizeof(crs)); in cam_release_devq()
1360 xpt_setup_ccb(&crs.ccb_h, path, CAM_PRIORITY_NORMAL); in cam_release_devq()
1361 crs.ccb_h.func_code = XPT_REL_SIMQ; in cam_release_devq()
1362 crs.ccb_h.flags = getcount_only ? CAM_DEV_QFREEZE : 0; in cam_release_devq()
1363 crs.release_flags = relsim_flags; in cam_release_devq()
1364 crs.openings = openings; in cam_release_devq()
1365 crs.release_timeout = arg; in cam_release_devq()
1366 xpt_action((union ccb *)&crs); in cam_release_devq()
1367 return (crs.qfrozen_cnt); in cam_release_devq()
H A Dcam_ccb.h1365 struct ccb_relsim crs;
1349 struct ccb_relsim crs; global() member
/freebsd/sys/dev/mpt/
H A Dmpt_raid.c1072 struct ccb_relsim crs; in mpt_adjust_queue_depth() local
1074 memset(&crs, 0, sizeof(crs)); in mpt_adjust_queue_depth()
1075 xpt_setup_ccb(&crs.ccb_h, path, /*priority*/5); in mpt_adjust_queue_depth()
1076 crs.ccb_h.func_code = XPT_REL_SIMQ; in mpt_adjust_queue_depth()
1077 crs.ccb_h.flags = CAM_DEV_QFREEZE; in mpt_adjust_queue_depth()
1078 crs.release_flags = RELSIM_ADJUST_OPENINGS; in mpt_adjust_queue_depth()
1079 crs.openings = mpt->raid_queue_depth; in mpt_adjust_queue_depth()
1080 xpt_action((union ccb *)&crs); in mpt_adjust_queue_depth()
1081 if (crs.ccb_h.status != CAM_REQ_CMP) in mpt_adjust_queue_depth()
1083 "with CAM status %#x\n", crs.ccb_h.status); in mpt_adjust_queue_depth()
H A Dmpt_cam.c2426 struct ccb_relsim crs; in mpt_cam_event() local
2450 memset(&crs, 0, sizeof(crs)); in mpt_cam_event()
2451 xpt_setup_ccb(&crs.ccb_h, tmppath, 5); in mpt_cam_event()
2452 crs.ccb_h.func_code = XPT_REL_SIMQ; in mpt_cam_event()
2453 crs.ccb_h.flags = CAM_DEV_QFREEZE; in mpt_cam_event()
2454 crs.release_flags = RELSIM_ADJUST_OPENINGS; in mpt_cam_event()
2455 crs.openings = pqf->CurrentDepth - 1; in mpt_cam_event()
2456 xpt_action((union ccb *)&crs); in mpt_cam_event()
2457 if (crs.ccb_h.status != CAM_REQ_CMP) { in mpt_cam_event()
/freebsd/tools/build/mk/
H A DMakefile.boot62 ARFLAGS:= -crs
/freebsd/sys/contrib/device-tree/src/arm/ti/omap/
H A Dam335x-boneblack.dts140 "[mii crs]",
/freebsd/contrib/ntp/include/
H A Dmbg_gps166.h888 l_fp crs; ///< +- Sine Corr. Term to Orbit Radius [m] member
/freebsd/sys/dev/pms/freebsd/driver/ini/src/
H A Dagtiapi.c464 struct ccb_relsim crs; in agtiapi_adjust_queue_depth() local
465 memset(&crs, 0, sizeof(crs)); in agtiapi_adjust_queue_depth()
466 xpt_setup_ccb(&crs.ccb_h, path, 5); in agtiapi_adjust_queue_depth()
467 crs.ccb_h.func_code = XPT_REL_SIMQ; in agtiapi_adjust_queue_depth()
468 crs.ccb_h.flags = CAM_DEV_QFREEZE; in agtiapi_adjust_queue_depth()
469 crs.release_flags = RELSIM_ADJUST_OPENINGS; in agtiapi_adjust_queue_depth()
470 crs.openings = QueueDepth; in agtiapi_adjust_queue_depth()
471 xpt_action((union ccb *)&crs); in agtiapi_adjust_queue_depth()
472 if(crs.ccb_h.status != CAM_REQ_CMP) { in agtiapi_adjust_queue_depth()
/freebsd/sys/netinet/
H A Dtcp_ratelimit.c1532 const struct tcp_rate_set *crs; in tcp_rel_pacing_rate() local
1539 crs = crte->ptbl; in tcp_rel_pacing_rate()
1544 rs = __DECONST(struct tcp_rate_set *, crs); in tcp_rel_pacing_rate()
/freebsd/contrib/ntp/libparse/
H A Ddata_mbg.c451 FETCH_DOUBLE(buffpp, &ephp->crs); in get_mbg_eph()
/freebsd/sys/contrib/device-tree/Bindings/arm/marvell/
H A Dcp110-system-controller.txt140 mpp49 49 gpio, ge1(txclkout), mii(crs), spi1(miso), uart1(rxd), ge(mdio), pcie0(clkreq), sdio(v18_en), sei(out_cp2cp)
/freebsd/sys/contrib/device-tree/src/arm/st/
H A Dstih407-pinctrl.dtsi250 crs = <&pio1 2 ALT1 IN BYPASS 1000>;
/freebsd/contrib/file/magic/Magdir/
H A Dwordprocessors91 !:ext wpd/wpt/wkb/icr/tut/sty/tst/crs
/freebsd/sbin/camcontrol/
H A Dcamcontrol.c5196 ccb->crs.release_flags = RELSIM_ADJUST_OPENINGS; in tagcontrol()
5197 ccb->crs.openings = numtags; in tagcontrol()
5217 pathstr, ccb->crs.openings); in tagcontrol()

12