| /freebsd-9-stable/sys/kern/ |
| D | kern_osd.c | 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; in osd_deregister() local 162 LIST_FOREACH_SAFE(osd, &osd_list[type], osd_next, tosd) in osd_deregister() 163 do_osd_del(type, osd, slot, 1); in osd_deregister() 196 osd_set(u_int type, struct osd *osd, u_int slot, void *value) in osd_set() argument 205 if (slot > osd->osd_nslots) { in osd_set() 212 } else if (osd->osd_nslots == 0) { in osd_set() 217 osd->osd_slots = malloc(sizeof(void *) * slot, M_OSD, in osd_set() [all …]
|
| D | kern_khelp.c | 60 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()
|
| D | kern_hhook.c | 94 hhook_run_hooks(struct hhook_head *hhh, void *ctx_data, struct osd *hosd) in hhook_run_hooks()
|
| /freebsd-9-stable/sys/sys/ |
| D | osd.h | 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 *osd);
|
| D | khelp.h | 54 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);
|
| D | hhook.h | 69 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);
|
| D | jail.h | 164 struct osd pr_osd; /* (p) additional data */
|
| D | proc.h | 273 struct osd td_osd; /* (k) Object specific data. */
|
| /freebsd-9-stable/contrib/ofed/management/opensm/complib/ |
| D | cl_thread.c | 65 p_thread->osd.state = CL_UNINITIALIZED; in cl_thread_construct() 83 ret = pthread_create(&p_thread->osd.id, NULL, in cl_thread_init() 89 p_thread->osd.state = CL_INITIALIZED; in cl_thread_init() 97 CL_ASSERT(cl_is_state_valid(p_thread->osd.state)); in cl_thread_destroy() 99 if (p_thread->osd.state == CL_INITIALIZED) in cl_thread_destroy() 100 pthread_join(p_thread->osd.id, NULL); in cl_thread_destroy() 102 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-9-stable/share/examples/kld/khelp/ |
| D | h_example.c | 59 void *ctx_data, void *hdata, struct osd *hosd); 132 void *hdata, struct osd *hosd) in example_hook()
|
| /freebsd-9-stable/sys/netinet/khelp/ |
| D | h_ertt.c | 72 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() 430 void *ctx_data, void *hdata, struct osd *hosd) in ertt_add_tx_segment_info_hook()
|
| /freebsd-9-stable/contrib/ofed/management/opensm/include/complib/ |
| D | cl_thread.h | 105 cl_thread_osd_t osd; member
|
| /freebsd-9-stable/sys/netinet/cc/ |
| D | cc_chd.c | 242 e_t = khelp_get_osd(CCV(ccv, osd), ertt_id); in chd_ack_received() 335 e_t = khelp_get_osd(CCV(ccv, osd), ertt_id); in chd_cong_signal()
|
| D | cc_hd.c | 139 e_t = khelp_get_osd(CCV(ccv, osd), ertt_id); in hd_ack_received()
|
| D | cc_vegas.c | 133 e_t = khelp_get_osd(CCV(ccv, osd), ertt_id); in vegas_ack_received()
|
| D | cc_cdg.c | 566 e_t = (struct ertt *)khelp_get_osd(CCV(ccv, osd), ertt_id); in cdg_ack_received()
|
| /freebsd-9-stable/sys/netinet/ |
| D | tcp_subr.c | 251 struct osd osd; member 699 tp->osd = &tm->osd; in tcp_newtcpcb() 700 if (khelp_init_osd(HELPER_CLASS_TCP, tp->osd)) { in tcp_newtcpcb() 942 khelp_destroy_osd(tp->osd); in tcp_discardcb()
|
| D | tcp_var.h | 204 struct osd *osd; /* storage for Khelp module data */ member
|
| D | tcp_output.c | 146 tp->osd); in hhook_run_tcp_est_out()
|
| D | tcp_input.c | 275 tp->osd); in hhook_run_tcp_est_in()
|
| /freebsd-9-stable/contrib/ofed/management/opensm/libvendor/ |
| D | osm_vendor_ts.c | 192 pthread_cancel(p_vend->smi_bind.poller.osd.id); in osm_vendor_destroy() 193 pthread_cancel(p_vend->gsi_bind.poller.osd.id); in osm_vendor_destroy()
|
| /freebsd-9-stable/sys/dev/hpt27xx/ |
| D | README | 152 (mailto:jkh@narf.osd.bsdi.com, Sat Apr 21 08:46:19 GMT 2001)
|
| /freebsd-9-stable/sys/dev/hptnr/ |
| D | README | 161 (mailto:jkh@narf.osd.bsdi.com, Sat Apr 21 08:46:19 GMT 2001)
|
| /freebsd-9-stable/sys/dev/hptmv/ |
| D | readme.txt | 182 (mailto:jkh@narf.osd.bsdi.com, Sat Apr 21 08:46:19 GMT 2001)
|
| /freebsd-9-stable/share/man/man9/ |
| D | Makefile | 186 osd.9 \
|