Lines Matching defs:details

218 	 * qdisc and configure it according to 'details'.  The implementation
223 * The contents of 'details' should be documented as valid for
232 int (*tc_install)(struct netdev *netdev, const struct smap *details);
237 * so don't know any of the details.
256 * Retrieves details of 'netdev->tc' configuration into 'details'.
258 * The contents of 'details' should be documented as valid for
264 int (*qdisc_get)(const struct netdev *netdev, struct smap *details);
267 * Reconfigures 'netdev->tc' according to 'details'.
269 * The contents of 'details' should be documented as valid for
275 int (*qdisc_set)(struct netdev *, const struct smap *details);
278 * Retrieves details of 'queue' on 'netdev->tc' into 'details'.
282 * The contents of 'details' should be documented as valid for
290 const struct tc_queue *queue, struct smap *details);
294 * 'details'. The caller ensures that 'queue_id' is less than
297 * The contents of 'details' should be documented as valid for
305 const struct smap *details);
1665 const char **typep, struct smap *details)
1678 netdev->tc->ops->qdisc_get(netdev_, details) : 0);
1686 const char *type, const struct smap *details)
1708 new_ops->qdisc_set(netdev_, details) :
1719 error = new_ops->tc_install(netdev_, details);
1731 unsigned int queue_id, struct smap *details)
1744 netdev->tc->ops->class_get(netdev_, queue, details) :
1755 unsigned int queue_id, const struct smap *details)
1768 netdev->tc->ops->class_set(netdev_, queue_id, details) :
1865 void *state_, unsigned int *queue_idp, struct smap *details)
1892 details);
2585 const struct smap *details, struct htb_class *hc)
2614 max_rate_s = smap_get(details, "max-rate");
2627 htb_tc_install(struct netdev *netdev, const struct smap *details)
2637 htb_parse_qdisc_details__(netdev, details, &hc);
2661 htb_qdisc_get(const struct netdev *netdev, struct smap *details)
2666 smap_add_format(details, "max-rate", "%llu", 8ULL * htb->max_rate);
2671 htb_qdisc_set(struct netdev *netdev, const struct smap *details)
2677 htb_parse_qdisc_details__(netdev, details, &hc);
2695 const struct tc_queue *queue, struct smap *details)
2702 smap_add_format(details, "max-rate", "%llu",
2712 const struct smap *details, struct htb_class *hc)
2715 const char *max_rate_s = smap_get(details, "max-rate");
2756 const struct smap *details)
2763 error = htb_parse_class_details__(netdev, details, &hc);
2846 const struct smap *details OVS_UNUSED)