Home
last modified time | relevance | path

Searched refs:osd (Results 1 – 25 of 31) sorted by relevance

12

/freebsd-14-stable/sys/kern/
HDkern_osd.c57 LIST_HEAD(, osd) osd_list; /* (l) */
67 SYSCTL_INT(_debug, OID_AUTO, osd, CTLFLAG_RWTUN, &osd_debug, 0, "OSD debug level");
77 static void do_osd_del(u_int type, struct osd *osd, u_int slot,
153 struct osd *osd, *tosd; in osd_deregister() local
166 LIST_FOREACH_SAFE(osd, &osdm[type].osd_list, osd_next, tosd) in osd_deregister()
167 do_osd_del(type, osd, slot, 1); in osd_deregister()
186 osd_set(u_int type, struct osd *osd, u_int slot, void *value) in osd_set() argument
189 return (osd_set_reserved(type, osd, slot, NULL, value)); in osd_set()
203 osd_set_reserved(u_int type, struct osd *osd, u_int slot, void **rsv, in osd_set_reserved() argument
214 if (slot > osd->osd_nslots) { in osd_set_reserved()
[all …]
HDkern_khelp.c60 static inline void khelp_remove_osd(struct helper *h, struct osd *hosd);
149 khelp_init_osd(uint32_t classes, struct osd *hosd) in khelp_init_osd()
186 khelp_destroy_osd(struct osd *hosd) in khelp_destroy_osd()
210 khelp_remove_osd(struct helper *h, struct osd *hosd) in khelp_remove_osd()
230 khelp_get_osd(struct osd *hosd, int32_t id) in khelp_get_osd()
HDkern_hhook.c94 hhook_run_hooks(struct hhook_head *hhh, void *ctx_data, struct osd *hosd) in hhook_run_hooks()
/freebsd-14-stable/sys/sys/
HDosd.h39 struct osd { struct
42 LIST_ENTRY(osd) osd_next; /* (l) */
61 int osd_set(u_int type, struct osd *osd, u_int slot, void *value);
63 int osd_set_reserved(u_int type, struct osd *osd, u_int slot, void **rsv,
66 void *osd_get(u_int type, struct osd *osd, u_int slot);
67 void *osd_get_unlocked(u_int type, struct osd *osd, u_int slot);
68 void osd_del(u_int type, struct osd *osd, u_int slot);
71 void osd_exit(u_int type, struct osd *osd);
HDkhelp.h54 struct osd;
65 int khelp_init_osd(uint32_t classes, struct osd *hosd);
67 int khelp_destroy_osd(struct osd *hosd);
69 void * khelp_get_osd(struct osd *hosd, int32_t id);
HDhhook.h72 struct osd;
76 void *ctx_data, void *hdata, struct osd *hosd);
108 void hhook_run_hooks(struct hhook_head *hhh, void *ctx_data, struct osd *hosd);
HDsocketvar.h134 struct osd osd; /* Object Specific extensions */ member
HDjail.h183 struct osd pr_osd; /* (p) additional data */
/freebsd-14-stable/contrib/ofed/opensm/complib/
HDcl_thread.c66 p_thread->osd.state = CL_UNINITIALIZED; in cl_thread_construct()
84 ret = pthread_create(&p_thread->osd.id, NULL, in cl_thread_init()
90 p_thread->osd.state = CL_INITIALIZED; in cl_thread_init()
98 CL_ASSERT(cl_is_state_valid(p_thread->osd.state)); in cl_thread_destroy()
100 if (p_thread->osd.state == CL_INITIALIZED) in cl_thread_destroy()
101 pthread_join(p_thread->osd.id, NULL); in cl_thread_destroy()
103 p_thread->osd.state = CL_UNINITIALIZED; in cl_thread_destroy()
136 CL_ASSERT(p_thread->osd.state == CL_INITIALIZED); in cl_is_current_thread()
139 return (pthread_equal(current, p_thread->osd.id)); in cl_is_current_thread()
/freebsd-14-stable/contrib/llvm-project/lld/ELF/
HDLinkerScript.cpp705 for (OutputDesc *osd : overwriteSections) { in processSectionCommands()
706 OutputSection *osec = &osd->osec; in processSectionCommands()
708 !map.try_emplace(CachedHashStringRef(osec->name), osd).second) in processSectionCommands()
712 if (auto *osd = dyn_cast<OutputDesc>(base)) { in processSectionCommands() local
713 OutputSection *osec = &osd->osec; in processSectionCommands()
726 for (OutputDesc *osd : overwriteSections) in processSectionCommands()
727 if (osd->osec.partition == 1 && osd->osec.sectionIndex == UINT32_MAX) in processSectionCommands()
728 sectionCommands.push_back(osd); in processSectionCommands()
761 if (auto *osd = dyn_cast<OutputDesc>(cmd)) in findByName() local
762 if (osd->osec.name == name) in findByName()
[all …]
HDWriter.cpp297 if (auto *osd = dyn_cast<OutputDesc>(cmd)) in findSection() local
298 if (osd->osec.name == name && osd->osec.partition == partition) in findSection()
299 return &osd->osec; in findSection()
500 auto *osd = dyn_cast<OutputDesc>(cmd); in addSectionSymbols() local
501 if (!osd) in addSectionSymbols()
503 OutputSection &osec = osd->osec; in addSectionSymbols()
905 auto *osd = dyn_cast<OutputDesc>(b); in getRankProximity() local
906 return (osd && osd->osec.hasInputSections) in getRankProximity()
907 ? llvm::countl_zero(a->sortRank ^ osd->osec.sortRank) in getRankProximity()
975 auto *osd = dyn_cast<OutputDesc>(cmd); in findOrphanPos() local
[all …]
HDScriptParser.cpp585 OutputDesc *osd = readOverlaySectionDescription(); in readOverlay() local
586 osd->osec.addrExpr = addrExpr; in readOverlay()
588 osd->osec.lmaExpr = [=] { return prev->getLMA() + prev->size; }; in readOverlay()
590 osd->osec.lmaExpr = lmaExpr; in readOverlay()
593 osd->osec.usedInExpression = true; in readOverlay()
594 addrExpr = [=]() -> ExprValue { return {&osd->osec, false, 0, ""}; }; in readOverlay()
596 v.push_back(osd); in readOverlay()
597 prev = &osd->osec; in readOverlay()
644 if (auto *osd = dyn_cast<OutputDesc>(cmd)) in readSections() local
645 osd->osec.relro = false; in readSections()
[all …]
HDICF.cpp581 if (auto *osd = dyn_cast<OutputDesc>(cmd)) in run() local
582 for (SectionCommand *subCmd : osd->osec.commands) in run()
/freebsd-14-stable/share/examples/kld/khelp/
HDh_example.c58 void *ctx_data, void *hdata, struct osd *hosd);
131 void *hdata, struct osd *hosd) in example_hook()
/freebsd-14-stable/sys/dev/ixl/
HDixl_pf_main.c2026 struct i40e_hw_port_stats *osd = &pf->stats_offsets; in ixl_update_stats_counters() local
2031 &osd->crc_errors, &nsd->crc_errors); in ixl_update_stats_counters()
2034 &osd->illegal_bytes, &nsd->illegal_bytes); in ixl_update_stats_counters()
2038 &osd->eth.rx_bytes, &nsd->eth.rx_bytes); in ixl_update_stats_counters()
2042 &osd->eth.tx_bytes, &nsd->eth.tx_bytes); in ixl_update_stats_counters()
2045 &osd->eth.rx_discards, in ixl_update_stats_counters()
2050 &osd->eth.rx_unicast, in ixl_update_stats_counters()
2055 &osd->eth.tx_unicast, in ixl_update_stats_counters()
2060 &osd->eth.rx_multicast, in ixl_update_stats_counters()
2065 &osd->eth.tx_multicast, in ixl_update_stats_counters()
[all …]
/freebsd-14-stable/sys/netinet/khelp/
HDh_ertt.c72 void *udata, void *ctx_data, void *hdata, struct osd *hosd);
74 void *udata, void *ctx_data, void *hdata, struct osd *hosd);
196 void *ctx_data, void *hdata, struct osd *hosd) in ertt_packet_measurement_hook()
431 void *ctx_data, void *hdata, struct osd *hosd) in ertt_add_tx_segment_info_hook()
/freebsd-14-stable/contrib/ofed/opensm/include/complib/
HDcl_thread.h105 cl_thread_osd_t osd; member
/freebsd-14-stable/sys/contrib/device-tree/Bindings/display/
Dzte,vou.txt25 "osd"
86 reg-names = "osd", "timing_ctrl",
/freebsd-14-stable/share/man/man9/
HDMakefile250 osd.9 \
1770 MLINKS+=osd.9 osd_call.9 \
1771 osd.9 osd_del.9 \
1772 osd.9 osd_deregister.9 \
1773 osd.9 osd_exit.9 \
1774 osd.9 osd_free_reserved.9 \
1775 osd.9 osd_get.9 \
1776 osd.9 osd_register.9 \
1777 osd.9 osd_reserve.9 \
1778 osd.9 osd_set.9 \
[all …]
/freebsd-14-stable/contrib/ofed/opensm/libvendor/
HDosm_vendor_ts.c189 pthread_cancel(p_vend->smi_bind.poller.osd.id); in osm_vendor_destroy()
190 pthread_cancel(p_vend->gsi_bind.poller.osd.id); in osm_vendor_destroy()
/freebsd-14-stable/sys/net/
HDif_enc.c237 void *hdata, struct osd *hosd) in enc_hhook()
/freebsd-14-stable/tools/build/test-includes/
HDbadfiles.inc90 sys/osd.h \
/freebsd-14-stable/sys/dev/hptmv/
HDreadme.txt181 (mailto:jkh@narf.osd.bsdi.com, Sat Apr 21 08:46:19 GMT 2001)
/freebsd-14-stable/sys/dev/hpt27xx/
HDREADME176 (mailto:jkh@narf.osd.bsdi.com, Sat Apr 21 08:46:19 GMT 2001)
/freebsd-14-stable/sys/dev/hptnr/
HDREADME179 (mailto:jkh@narf.osd.bsdi.com, Sat Apr 21 08:46:19 GMT 2001)

12