.\" Automatically generated by Pandoc 3.1.3 .\" .\" Define V font for inline verbatim, using C font in formats .\" that render this, and otherwise B font. .ie "\f[CB]x\f[]"x" \{\ . ftr V B . ftr VI BI . ftr VB B . ftr VBI BI .\} .el \{\ . ftr V CR . ftr VI CI . ftr VB CB . ftr VBI CBI .\} .TH "mlx5dv_sched_node[/leaf]_create / modify / destroy" "3" "2020-9-3" "mlx5" "mlx5 Programmer\[cq]s Manual" .hy .SH NAME .PP mlx5dv_sched_node_create - Creates a scheduling node element .PP mlx5dv_sched_leaf_create - Creates a scheduling leaf element .PP mlx5dv_sched_node_modify - Modifies a node scheduling element .PP mlx5dv_sched_leaf_modify - Modifies a leaf scheduling element .PP mlx5dv_sched_node_destroy - Destroys a node scheduling element .PP mlx5dv_sched_leaf_destroy - Destroys a leaf scheduling element .SH SYNOPSIS .IP .nf \f[C] #include struct mlx5dv_sched_node *mlx5dv_sched_node_create(struct ibv_context *context, struct mlx5dv_sched_attr *sched_attr); struct mlx5dv_sched_leaf *mlx5dv_sched_leaf_create(struct ibv_context *context, struct mlx5dv_sched_attr *sched_attr); int mlx5dv_sched_node_modify(struct mlx5dv_sched_node *node, struct mlx5dv_sched_attr *sched_attr); int mlx5dv_sched_leaf_modify(struct mlx5dv_sched_leaf *leaf, struct mlx5dv_sched_attr *sched_attr); int mlx5dv_sched_node_destroy(struct mlx5dv_sched_node *node); int mlx5dv_sched_leaf_destroy(struct mlx5dv_sched_leaf *leaf); \f[R] .fi .SH DESCRIPTION .PP The transmit scheduling element (SE) is scheduling the transmission for of all nodes connected it. By configuring the SE, QoS policies may be enforced between the competing entities (e.g.\ SQ, QP). .PP In each scheduling cycle, the SE schedules all ready-to-transmit entities. The SE assures that weight for each entity is met. If entity has reached its maximum allowed bandwidth within the scheduling cycle, it won\[cq]t be scheduled till end of the scheduling cycle. The unused transmission bandwidth will be distributed among the remaining entities assuring the weight setting. .PP The SEs are connected in a tree structure. The entity is connected to a leaf. One or more leaves can be connected to a SE node. One or more SE nodes can be connected to a SE node, until reaching the SE root. For each input on each node, user can assign the maximum bandwidth and the scheduling weight. .PP The SE APIs (mlx5dv_sched_*) allows access by verbs application to set the hierarchical SE tree to the device. The ibv_qp shall be connected to a leaf. .SH ARGUMENTS .PP Please see \f[I]ibv_create_qp_ex(3)\f[R] man page for \f[I]context\f[R]. .SS mlx5dv_sched_attr .IP .nf \f[C] struct mlx5dv_sched_attr { struct mlx5dv_sched_node *parent; uint32_t flags; uint32_t bw_share; uint32_t max_avg_bw; uint64_t comp_mask; }; \f[R] .fi .TP \f[I]parent\f[R] A node handler to the parent scheduling element which this scheduling element will be connected to. The root scheduling element doesn\[cq]t have a parent. .TP \f[I]flags\f[R] Specifying what attributes in the structure are valid: .RS .PP MLX5DV_SCHED_ELEM_ATTR_FLAGS_BW_SHARE for \f[I]bw_share\f[R] .PP MLX5DV_SCHED_ELEM_ATTR_FLAGS_MAX_AVG_BW for \f[I]max_avg_bw\f[R] .RE .TP \f[I]bw_share\f[R] The relative bandwidth share allocated for this element. This field has no units. The bandwidth is shared between all elements connected to the same parent element, relatively to their bw_share. Value of 0, indicates a device default Weight. This field must be 0 for the root TSAR. .TP \f[I]max_avg_bw\f[R] The maximal transmission rate allowed for the element, averaged over time. Value is given in units of 1 Mbit/sec.\ Value 0x0 indicates the rate is unlimited. This field must be 0 for the root TSAR. .TP \f[I]comp_mask\f[R] Reserved for future extension, must be 0 now. .TP \f[I]node/leaf\f[R] For modify, destroy: the scheduling element to work on. .TP \f[I]sched_attr\f[R] For create, modify: the attribute of the scheduling element to work on. .SH NOTES .PP For example if an application wants to create 2 QoS QP groups: .IP .nf \f[C] g1: 70% bandwidth share of this application g2: 30% bandwidth share of this application, with maximum average bandwidth limited to 4Gbps \f[R] .fi .PP Pseudo code: .IP .nf \f[C] struct mlx5dv_sched_node *root; struct mlx5dv_sched_leaf *leaf_g1, *leaf_g2; struct mlx5dv_sched_attr; struct ibv_qp *qp1, qp2; /* Create root node */ attr.comp_mask = 0; attr.parent = NULL; attr.flags = 0; root = mlx5dv_sched_node_create(context, attr); /* Create group1 */ attr.comp_mask = 0; attr.parent = root; attr.bw_share = 7; attr.flags = MLX5DV_SCHED_ELEM_ATTR_FLAGS_BW_SHARE; leaf_g1 = mlx5dv_sched_leaf_create(context, attr); /* Create group2 */ attr.comp_mask = 0; attr.parent = root; attr.bw_share = 3; attr.max_avg_bw = 4096; attr.flags = MLX5DV_SCHED_ELEM_ATTR_FLAGS_BW_SHARE | MLX5DV_SCHED_ELEM_ATTR_FLAGS_MAX_AVG_BW; leaf_g2 = mlx5dv_sched_leaf_create(context, attr); foreach (qp1 in group1) mlx5dv_modify_qp_sched_elem(qp1, leaf_g1, NULL); foreach (qp2 in group2) mlx5dv_modify_qp_sched_elem(qp2, leaf_g2, NULL); \f[R] .fi .SH RETURN VALUE .PP Upon success *mlx5dv_sched_node[/leaf]_create()* will return a new \f[I]struct mlx5dv_sched_node[/leaf]\f[R], on error NULL will be returned and errno will be set. .PP Upon success modify and destroy, 0 is returned or the value of errno on a failure. .SH SEE ALSO .PP \f[B]ibv_create_qp_ex\f[R](3), \f[B]mlx5dv_modify_qp_sched_elem\f[R](3) .SH AUTHOR .PP Mark Zhang .PP Ariel Almog