Home
last modified time | relevance | path

Searched refs:osm_subn_t (Results 1 – 25 of 42) sorted by relevance

12

/freebsd/contrib/ofed/opensm/include/opensm/
H A Dosm_subnet.h788 } osm_subn_t; typedef
977 void osm_subn_construct(IN osm_subn_t * p_subn);
1006 void osm_subn_destroy(IN osm_subn_t * p_subn);
1034 ib_api_status_t osm_subn_init(IN osm_subn_t * p_subn,
1078 IN const osm_subn_t * p_subn,
1116 IN const osm_subn_t * p_subn,
1151 IN const osm_subn_t * p_subn,
1183 struct osm_switch *osm_get_switch_by_guid(IN const osm_subn_t * p_subn,
1212 struct osm_node *osm_get_node_by_guid(IN osm_subn_t const *p_subn,
1241 struct osm_port *osm_get_port_by_guid(IN osm_subn_t const *p_subn,
[all …]
H A Dosm_inform.h178 osm_infr_t *osm_infr_get_by_rec(IN osm_subn_t const *p_subn,
198 void osm_infr_insert_to_db(IN osm_subn_t * p_subn, IN osm_log_t * p_log,
201 void osm_infr_remove_from_db(IN osm_subn_t * p_subn, IN osm_log_t * p_log,
214 osm_infr_remove_subscriptions(IN osm_subn_t * p_subn, IN osm_log_t * p_log,
247 ib_api_status_t osm_report_notice(IN osm_log_t * p_log, IN osm_subn_t * p_subn,
H A Dosm_multicast.h182 osm_mgrp_t *osm_mgrp_new(IN osm_subn_t * subn, IN ib_net16_t mlid,
337 osm_mcm_port_t *osm_mgrp_add_port(osm_subn_t *subn, osm_log_t *log,
426 void osm_mgrp_delete_port(IN osm_subn_t * subn, IN osm_log_t * log,
451 boolean_t osm_mgrp_remove_port(osm_subn_t * subn, osm_log_t * log, osm_mgrp_t * mgrp,
454 void osm_mgrp_cleanup(osm_subn_t * subn, osm_mgrp_t * mpgr);
H A Dosm_service.h181 osm_svcr_t *osm_svcr_get_by_rid(IN osm_subn_t const *p_subn,
185 void osm_svcr_insert_to_db(IN osm_subn_t * p_subn, IN osm_log_t * p_log,
187 void osm_svcr_remove_from_db(IN osm_subn_t * p_subn, IN osm_log_t * p_log,
H A Dosm_partition.h147 void osm_prtn_delete(IN osm_subn_t * p_subn, IN OUT osm_prtn_t ** pp_prtn);
235 IN osm_subn_t * p_subn);
261 osm_prtn_t *osm_prtn_find_by_name(IN osm_subn_t * p_subn, IN const char *name);
H A Dosm_qos_policy.h151 osm_subn_t *p_subn; /* osm subnet object */
181 osm_qos_policy_t * osm_qos_policy_create(osm_subn_t * p_subn);
201 int osm_qos_parse_policy_file(IN osm_subn_t * p_subn);
H A Dosm_sm_mad_ctrl.h97 osm_subn_t *p_subn;
213 IN osm_subn_t * p_subn,
H A Dosm_sa_mad_ctrl.h105 osm_subn_t *p_subn;
219 IN osm_subn_t * p_subn,
H A Dosm_vl15intf.h131 osm_subn_t *p_subn;
259 IN osm_subn_t * p_subn,
H A Dosm_port.h516 void osm_physp_set_pkey_tbl(IN osm_log_t * p_log, IN const osm_subn_t * p_subn,
1463 IN const osm_subn_t * p_subn,
1501 IN osm_subn_t const *p_subn,
H A Dosm_sm.h120 osm_subn_t *p_subn;
272 ib_api_status_t osm_sm_init(IN osm_sm_t * p_sm, IN osm_subn_t * p_subn,
H A Dosm_sa.h184 osm_subn_t *p_subn;
353 IN osm_subn_t * p_subn, IN osm_vendor_t * p_vendor,
H A Dosm_lid_mgr.h95 osm_subn_t *p_subn;
H A Dosm_ucast_mgr.h95 osm_subn_t *p_subn;
H A Dosm_congestion_control.h78 osm_subn_t *subn;
H A Dosm_opensm.h213 osm_subn_t subn;
H A Dosm_perfmgr.h136 osm_subn_t *subn;
/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_subnet.c91 void (*parse_fn)(osm_subn_t *p_subn, char *p_key, char *p_val_str,
93 void (*)(osm_subn_t *, void *));
94 void (*setup_fn)(osm_subn_t *p_subn, void *p_val);
239 static void opts_setup_log_flags(osm_subn_t *p_subn, void *p_val) in opts_setup_log_flags()
244 static void opts_setup_force_log_flush(osm_subn_t *p_subn, void *p_val) in opts_setup_force_log_flush()
249 static void opts_setup_accum_log_file(osm_subn_t *p_subn, void *p_val) in opts_setup_accum_log_file()
254 static void opts_setup_log_max_size(osm_subn_t *p_subn, void *p_val) in opts_setup_log_max_size()
261 static void opts_setup_sminfo_polling_timeout(osm_subn_t *p_subn, void *p_val) in opts_setup_sminfo_polling_timeout()
270 static void opts_setup_sm_priority(osm_subn_t *p_subn, void *p_val) in opts_setup_sm_priority()
321 static void opts_parse_net64(IN osm_subn_t *p_subn, IN char *p_key, in opts_parse_net64()
[all …]
H A Dosm_prtn.c63 extern int osm_prtn_config_parse_file(osm_log_t * p_log, osm_subn_t * p_subn,
92 void osm_prtn_delete(IN osm_subn_t * p_subn, IN OUT osm_prtn_t ** pp_prtn) in osm_prtn_delete()
125 ib_api_status_t osm_prtn_add_port(osm_log_t * p_log, osm_subn_t * p_subn, in osm_prtn_add_port()
183 ib_api_status_t osm_prtn_add_all(osm_log_t * p_log, osm_subn_t * p_subn, in osm_prtn_add_all()
211 osm_subn_t *p_subn, const ib_gid_t *mgid, in track_mgrp_w_partition()
244 ib_api_status_t osm_prtn_add_mcgroup(osm_log_t * p_log, osm_subn_t * p_subn, in osm_prtn_add_mcgroup()
294 static uint16_t generate_pkey(osm_subn_t * p_subn) in generate_pkey()
308 osm_prtn_t *osm_prtn_find_by_name(osm_subn_t * p_subn, const char *name) in osm_prtn_find_by_name()
324 osm_prtn_t *osm_prtn_make_new(osm_log_t * p_log, osm_subn_t * p_subn, in osm_prtn_make_new()
358 static ib_api_status_t prtn_make_default(osm_log_t * p_log, osm_subn_t * p_subn, in prtn_make_default()
[all …]
H A Dosm_service.c102 osm_svcr_t *osm_svcr_get_by_rid(IN osm_subn_t const *p_subn, in osm_svcr_get_by_rid()
119 void osm_svcr_insert_to_db(IN osm_subn_t * p_subn, IN osm_log_t * p_log, in osm_svcr_insert_to_db()
133 void osm_svcr_remove_from_db(IN osm_subn_t * p_subn, IN osm_log_t * p_log, in osm_svcr_remove_from_db()
H A Dosm_multicast.c119 osm_mgrp_t *osm_mgrp_new(IN osm_subn_t * subn, IN ib_net16_t mlid, in osm_mgrp_new()
151 void osm_mgrp_cleanup(osm_subn_t * subn, osm_mgrp_t * mgrp) in osm_mgrp_cleanup()
190 static void mgrp_send_notice(osm_subn_t * subn, osm_log_t * log, in mgrp_send_notice()
272 osm_mcm_port_t *osm_mgrp_add_port(IN osm_subn_t * subn, osm_log_t * log, in osm_mgrp_add_port()
346 boolean_t osm_mgrp_remove_port(osm_subn_t * subn, osm_log_t * log, osm_mgrp_t * mgrp, in osm_mgrp_remove_port()
423 void osm_mgrp_delete_port(osm_subn_t * subn, osm_log_t * log, osm_mgrp_t * mgrp, in osm_mgrp_delete_port()
H A Dosm_inform.c84 static void dump_all_informs(IN const osm_subn_t * p_subn, IN osm_log_t * p_log) in dump_all_informs()
193 osm_infr_t *osm_infr_get_by_rec(IN osm_subn_t const *p_subn, in osm_infr_get_by_rec()
219 void osm_infr_insert_to_db(IN osm_subn_t * p_subn, IN osm_log_t * p_log, in osm_infr_insert_to_db()
245 void osm_infr_remove_from_db(IN osm_subn_t * p_subn, IN osm_log_t * p_log, in osm_infr_remove_from_db()
268 ib_api_status_t osm_infr_remove_subscriptions(IN osm_subn_t * p_subn, in osm_infr_remove_subscriptions()
376 osm_subn_t *p_subn = p_infr_rec->sa->p_subn; in is_access_permitted()
769 ib_api_status_t osm_report_notice(IN osm_log_t * p_log, IN osm_subn_t * p_subn, in osm_report_notice()
H A Dosm_prtn_config.c91 osm_subn_t *p_subn;
99 extern osm_prtn_t *osm_prtn_make_new(osm_log_t * p_log, osm_subn_t * p_subn,
101 extern ib_api_status_t osm_prtn_add_all(osm_log_t * p_log, osm_subn_t * p_subn,
105 osm_subn_t * p_subn, osm_prtn_t * p,
109 ib_api_status_t osm_prtn_add_mcgroup(osm_log_t * p_log, osm_subn_t * p_subn,
639 static struct part_conf *new_part_conf(osm_log_t * p_log, osm_subn_t * p_subn) in new_part_conf()
761 int osm_prtn_config_parse_file(osm_log_t * p_log, osm_subn_t * p_subn, in osm_prtn_config_parse_file()
H A Dosm_port.c239 IN const osm_subn_t * p_subn, in osm_physp_calc_link_op_vls()
319 IN osm_subn_t const *p_subn, in physp_get_dr_physp_set()
435 IN osm_subn_t const in osm_physp_replace_dr_path_with_alternate_dr_path()
604 void osm_physp_set_pkey_tbl(IN osm_log_t * p_log, IN const osm_subn_t * p_subn, in osm_physp_set_pkey_tbl()
H A Dosm_ucast_dnup.c105 static int dnup_bfs_by_node(IN osm_log_t * p_log, IN osm_subn_t * p_subn, in dnup_bfs_by_node()
297 osm_subn_t *p_subn = &p_dnup->p_osm->subn; in dnup_set_min_hop_table()

12