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

12

/freebsd-10.2-release/sys/sys/
H A Dkhelp.h54 struct osd;
64 int khelp_init_osd(uint32_t classes, struct osd *hosd);
66 int khelp_destroy_osd(struct osd *hosd);
68 void * khelp_get_osd(struct osd *hosd, int32_t id);
H A Dosd.h26 * $FreeBSD: releng/10.2/sys/sys/osd.h 216615 2010-12-21 13:45:29Z lstewart $
39 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);
62 void *osd_get(u_int type, struct osd *osd, u_int slot);
63 void osd_del(u_int type, struct osd *osd, u_int slot);
66 void osd_exit(u_int type, struct osd *os
[all...]
H A Dhhook.h69 struct osd;
73 void *ctx_data, void *hdata, struct osd *hosd);
105 void hhook_run_hooks(struct hhook_head *hhh, void *ctx_data, struct osd *hosd);
H A Djail.h134 #include <sys/osd.h>
165 struct osd pr_osd; /* (p) additional data */
H A Dproc.h51 #include <sys/osd.h>
272 struct osd td_osd; /* (k) Object specific data. */
/freebsd-10.2-release/sys/kern/
H A Dkern_osd.c43 #include <sys/osd.h>
47 static MALLOC_DEFINE(M_OSD, "osd", "Object Specific Data");
50 TUNABLE_INT("debug.osd", &osd_debug);
51 SYSCTL_INT(_debug, OID_AUTO, osd, CTLFLAG_RW, &osd_debug, 0, "OSD debug level");
61 static void do_osd_del(u_int type, struct osd *osd, u_int slot,
72 static LIST_HEAD(, osd) osd_list[OSD_LAST + 1]; /* (m) */
150 struct osd *osd, *tosd; local
162 LIST_FOREACH_SAFE(osd,
196 osd_set(u_int type, struct osd *osd, u_int slot, void *value) argument
254 osd_get(u_int type, struct osd *osd, u_int slot) argument
277 osd_del(u_int type, struct osd *osd, u_int slot) argument
287 do_osd_del(u_int type, struct osd *osd, u_int slot, int list_locked) argument
364 osd_exit(u_int type, struct osd *osd) argument
[all...]
H A Dkern_khelp.c48 #include <sys/osd.h>
60 static inline void khelp_remove_osd(struct helper *h, struct osd *hosd);
149 khelp_init_osd(uint32_t classes, struct osd *hosd)
155 KASSERT(hosd != NULL, ("struct osd not initialised!"));
186 khelp_destroy_osd(struct osd *hosd)
191 KASSERT(hosd != NULL, ("struct osd not initialised!"));
210 khelp_remove_osd(struct helper *h, struct osd *hosd)
230 khelp_get_osd(struct osd *hosd, int32_t id)
H A Dkern_hhook.c47 #include <sys/osd.h>
94 hhook_run_hooks(struct hhook_head *hhh, void *ctx_data, struct osd *hosd)
/freebsd-10.2-release/contrib/ofed/management/opensm/complib/
H A Dcl_thread.c65 p_thread->osd.state = CL_UNINITIALIZED;
83 ret = pthread_create(&p_thread->osd.id, NULL,
89 p_thread->osd.state = CL_INITIALIZED;
97 CL_ASSERT(cl_is_state_valid(p_thread->osd.state));
99 if (p_thread->osd.state == CL_INITIALIZED)
100 pthread_join(p_thread->osd.id, NULL);
102 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-10.2-release/share/examples/kld/khelp/
H A Dh_example.c59 void *ctx_data, void *hdata, struct osd *hosd);
132 void *hdata, struct osd *hosd)
/freebsd-10.2-release/contrib/ofed/management/opensm/include/complib/
H A Dcl_thread.h105 cl_thread_osd_t osd; member in struct:_cl_thread
112 * osd
/freebsd-10.2-release/sys/dev/ixl/
H A Dif_ixl.c3748 struct i40e_hw_port_stats *osd = &pf->stats_offsets; local
3753 &osd->crc_errors, &nsd->crc_errors);
3756 &osd->illegal_bytes, &nsd->illegal_bytes);
3760 &osd->eth.rx_bytes, &nsd->eth.rx_bytes);
3764 &osd->eth.tx_bytes, &nsd->eth.tx_bytes);
3767 &osd->eth.rx_discards,
3772 &osd->eth.rx_unicast,
3777 &osd->eth.tx_unicast,
3782 &osd->eth.rx_multicast,
3787 &osd
[all...]
/freebsd-10.2-release/sys/netinet/khelp/
H A Dh_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)
430 void *ctx_data, void *hdata, struct osd *hosd)
/freebsd-10.2-release/sys/netinet/cc/
H A Dcc_hd.c139 e_t = khelp_get_osd(CCV(ccv, osd), ertt_id);
H A Dcc_chd.c242 e_t = khelp_get_osd(CCV(ccv, osd), ertt_id);
335 e_t = khelp_get_osd(CCV(ccv, osd), ertt_id);
H A Dcc_vegas.c133 e_t = khelp_get_osd(CCV(ccv, osd), ertt_id);
H A Dcc_cdg.c561 e_t = (struct ertt *)khelp_get_osd(CCV(ccv, osd), ertt_id);
/freebsd-10.2-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Dzfs_context.h89 #include <sys/osd.h>
/freebsd-10.2-release/sys/cddl/compat/opensolaris/kern/
H A Dopensolaris_zone.c40 #include <sys/osd.h>
/freebsd-10.2-release/contrib/ofed/management/opensm/libvendor/
H A Dosm_vendor_ts.c192 pthread_cancel(p_vend->smi_bind.poller.osd.id);
193 pthread_cancel(p_vend->gsi_bind.poller.osd.id);
/freebsd-10.2-release/sys/netinet/
H A Dtcp_var.h204 struct osd *osd; /* storage for Khelp module data */ member in struct:tcpcb
H A Dtcp_subr.c255 struct osd osd; member in struct:tcpcb_mem
765 tp->osd = &tm->osd;
766 if (khelp_init_osd(HELPER_CLASS_TCP, tp->osd)) {
1008 khelp_destroy_osd(tp->osd);
H A Dtcp_output.c149 tp->osd);
H A Dtcp_input.c275 tp->osd);
/freebsd-10.2-release/share/man/man9/
H A DMakefile190 osd.9 \

Completed in 147 milliseconds

12