Searched refs:osd (Results 1 - 25 of 30) sorted by relevance

12

/freebsd-13-stable/sys/sys/
H A Dkhelp.h56 struct osd;
67 int khelp_init_osd(uint32_t classes, struct osd *hosd);
69 int khelp_destroy_osd(struct osd *hosd);
71 void * khelp_get_osd(struct osd *hosd, int32_t id);
H A Dosd.h41 struct osd { struct
44 LIST_ENTRY(osd) osd_next; /* (l) */
63 int osd_set(u_int type, struct osd *osd, u_int slot, void *value);
65 int osd_set_reserved(u_int type, struct osd *osd, u_int slot, void **rsv,
68 void *osd_get(u_int type, struct osd *osd, u_int slot);
69 void osd_del(u_int type, struct osd *osd, u_in
[all...]
H A Dhhook.h74 struct osd;
78 void *ctx_data, void *hdata, struct osd *hosd);
110 void hhook_run_hooks(struct hhook_head *hhh, void *ctx_data, struct osd *hosd);
H A Dsocketvar.h49 #include <sys/osd.h>
111 struct osd osd; /* Object Specific extensions */ member in struct:socket
H A Djail.h140 #include <sys/osd.h>
175 struct osd pr_osd; /* (p) additional data */
H A Dproc.h56 #include <sys/osd.h>
305 struct osd td_osd; /* (k) Object specific data. */
/freebsd-13-stable/sys/kern/
H A Dkern_osd.c45 #include <sys/osd.h>
59 LIST_HEAD(, osd) osd_list; /* (l) */
66 static MALLOC_DEFINE(M_OSD, "osd", "Object Specific Data");
69 SYSCTL_INT(_debug, OID_AUTO, osd, CTLFLAG_RWTUN, &osd_debug, 0, "OSD debug level");
79 static void do_osd_del(u_int type, struct osd *osd, u_int slot,
155 struct osd *osd, *tosd; local
167 LIST_FOREACH_SAFE(osd, &osdm[type].osd_list, osd_next, tosd)
168 do_osd_del(type, osd, slo
201 osd_set(u_int type, struct osd *osd, u_int slot, void *value) argument
218 osd_set_reserved(u_int type, struct osd *osd, u_int slot, void **rsv, void *value) argument
296 osd_get(u_int type, struct osd *osd, u_int slot) argument
319 osd_del(u_int type, struct osd *osd, u_int slot) argument
329 do_osd_del(u_int type, struct osd *osd, u_int slot, int list_locked) argument
406 osd_exit(u_int type, struct osd *osd) argument
[all...]
H A Dkern_khelp.c50 #include <sys/osd.h>
62 static inline void khelp_remove_osd(struct helper *h, struct osd *hosd);
151 khelp_init_osd(uint32_t classes, struct osd *hosd)
157 KASSERT(hosd != NULL, ("struct osd not initialised!"));
188 khelp_destroy_osd(struct osd *hosd)
193 KASSERT(hosd != NULL, ("struct osd not initialised!"));
212 khelp_remove_osd(struct helper *h, struct osd *hosd)
232 khelp_get_osd(struct osd *hosd, int32_t id)
H A Dkern_hhook.c49 #include <sys/osd.h>
96 hhook_run_hooks(struct hhook_head *hhh, void *ctx_data, struct osd *hosd)
/freebsd-13-stable/contrib/ofed/opensm/complib/
H A Dcl_thread.c66 p_thread->osd.state = CL_UNINITIALIZED;
84 ret = pthread_create(&p_thread->osd.id, NULL,
90 p_thread->osd.state = CL_INITIALIZED;
98 CL_ASSERT(cl_is_state_valid(p_thread->osd.state));
100 if (p_thread->osd.state == CL_INITIALIZED)
101 pthread_join(p_thread->osd.id, NULL);
103 p_thread->osd.state = CL_UNINITIALIZED;
136 CL_ASSERT(p_thread->osd.state == CL_INITIALIZED);
139 return (pthread_equal(current, p_thread->osd.id));
/freebsd-13-stable/share/examples/kld/khelp/
H A Dh_example.c61 void *ctx_data, void *hdata, struct osd *hosd);
134 void *hdata, struct osd *hosd)
/freebsd-13-stable/contrib/ofed/opensm/include/complib/
H A Dcl_thread.h105 cl_thread_osd_t osd; member in struct:_cl_thread
112 * osd
/freebsd-13-stable/sys/dev/ixl/
H A Dixl_pf_main.c1948 struct i40e_hw_port_stats *osd = &pf->stats_offsets; local
1953 &osd->crc_errors, &nsd->crc_errors);
1956 &osd->illegal_bytes, &nsd->illegal_bytes);
1960 &osd->eth.rx_bytes, &nsd->eth.rx_bytes);
1964 &osd->eth.tx_bytes, &nsd->eth.tx_bytes);
1967 &osd->eth.rx_discards,
1972 &osd->eth.rx_unicast,
1977 &osd->eth.tx_unicast,
1982 &osd->eth.rx_multicast,
1987 &osd
[all...]
/freebsd-13-stable/sys/netinet/khelp/
H A Dh_ertt.c74 void *udata, void *ctx_data, void *hdata, struct osd *hosd);
76 void *udata, void *ctx_data, void *hdata, struct osd *hosd);
198 void *ctx_data, void *hdata, struct osd *hosd)
433 void *ctx_data, void *hdata, struct osd *hosd)
/freebsd-13-stable/sys/netinet/cc/
H A Dcc_hd.c138 e_t = khelp_get_osd(CCV(ccv, osd), ertt_id);
H A Dcc_chd.c241 e_t = khelp_get_osd(CCV(ccv, osd), ertt_id);
333 e_t = khelp_get_osd(CCV(ccv, osd), ertt_id);
H A Dcc_vegas.c131 e_t = khelp_get_osd(CCV(ccv, osd), ertt_id);
H A Dcc_cdg.c575 e_t = (struct ertt *)khelp_get_osd(CCV(ccv, osd), ertt_id);
/freebsd-13-stable/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dspl_zone.c41 #include <sys/osd.h>
/freebsd-13-stable/contrib/ofed/opensm/libvendor/
H A Dosm_vendor_ts.c189 pthread_cancel(p_vend->smi_bind.poller.osd.id);
190 pthread_cancel(p_vend->gsi_bind.poller.osd.id);
/freebsd-13-stable/share/man/man9/
H A DMakefile234 osd.9 \
1671 MLINKS+=osd.9 osd_call.9 \
1672 osd.9 osd_del.9 \
1673 osd.9 osd_deregister.9 \
1674 osd.9 osd_exit.9 \
1675 osd.9 osd_get.9 \
1676 osd.9 osd_register.9 \
1677 osd.9 osd_set.9
/freebsd-13-stable/sys/netinet/
H A Din_jail.c43 #include <sys/osd.h>
H A Dtcp_var.h240 struct osd *osd; /* storage for Khelp module data */ member in struct:tcpcb
/freebsd-13-stable/sys/netinet6/
H A Din6_jail.c43 #include <sys/osd.h>
/freebsd-13-stable/sys/net/
H A Dif_enc.c243 void *hdata, struct osd *hosd)

Completed in 282 milliseconds

12