Home
last modified time | relevance | path

Searched refs:start_node (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/dev/ice/
H A Dice_sched.c72 * @start_node: pointer to the starting ice_sched_node struct in a sub-tree
82 ice_sched_find_node_by_teid(struct ice_sched_node *start_node, u32 teid)
86 if (!start_node) in ice_sched_find_node_by_teid()
89 /* The TEID is same as that of the start_node */ in ice_sched_find_node_by_teid()
90 if (ICE_TXSCHED_GET_NODE_TEID(start_node) == teid) in ice_sched_find_node_by_teid()
91 return start_node; in ice_sched_find_node_by_teid()
94 if (!start_node->num_children || in ice_sched_find_node_by_teid()
95 start_node->tx_sched_layer >= ICE_AQC_TOPO_MAX_LEVEL_NUM || in ice_sched_find_node_by_teid()
96 start_node->info.data.elem_type == ICE_AQC_ELEM_TYPE_LEAF) in ice_sched_find_node_by_teid()
100 for (i = 0; i < start_node in ice_sched_find_node_by_teid()
83 ice_sched_find_node_by_teid(struct ice_sched_node * start_node,u32 teid) ice_sched_find_node_by_teid() argument
[all...]
H A Dice_sched.h171 ice_sched_find_node_by_teid(struct ice_sched_node *start_node, u32 teid);
/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_ucast_dfsssp.c724 cdg_node_t * start_node) in search_cycle_in_channel_dep_graph() argument
727 cdg_node_t *current = start_node, *next_node = NULL, *tmp = NULL; in search_cycle_in_channel_dep_graph()