2017-12-19 15:48:59 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
* Copyright(c) 2017 Intel Corporation
|
2017-10-16 19:55:08 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _CMDLINE_TM_H_
|
|
|
|
#define _CMDLINE_TM_H_
|
|
|
|
|
|
|
|
/* Traffic Management CLI */
|
|
|
|
extern cmdline_parse_inst_t cmd_show_port_tm_cap;
|
|
|
|
extern cmdline_parse_inst_t cmd_show_port_tm_level_cap;
|
|
|
|
extern cmdline_parse_inst_t cmd_show_port_tm_node_cap;
|
|
|
|
extern cmdline_parse_inst_t cmd_show_port_tm_node_type;
|
|
|
|
extern cmdline_parse_inst_t cmd_show_port_tm_node_stats;
|
2017-10-16 19:55:09 +01:00
|
|
|
extern cmdline_parse_inst_t cmd_add_port_tm_node_shaper_profile;
|
|
|
|
extern cmdline_parse_inst_t cmd_del_port_tm_node_shaper_profile;
|
|
|
|
extern cmdline_parse_inst_t cmd_add_port_tm_node_shared_shaper;
|
|
|
|
extern cmdline_parse_inst_t cmd_del_port_tm_node_shared_shaper;
|
|
|
|
extern cmdline_parse_inst_t cmd_add_port_tm_node_wred_profile;
|
|
|
|
extern cmdline_parse_inst_t cmd_del_port_tm_node_wred_profile;
|
|
|
|
extern cmdline_parse_inst_t cmd_set_port_tm_node_shaper_profile;
|
2017-10-16 19:55:10 +01:00
|
|
|
extern cmdline_parse_inst_t cmd_add_port_tm_nonleaf_node;
|
|
|
|
extern cmdline_parse_inst_t cmd_add_port_tm_leaf_node;
|
|
|
|
extern cmdline_parse_inst_t cmd_del_port_tm_node;
|
|
|
|
extern cmdline_parse_inst_t cmd_set_port_tm_node_parent;
|
|
|
|
extern cmdline_parse_inst_t cmd_port_tm_hierarchy_commit;
|
2017-10-16 19:55:08 +01:00
|
|
|
|
|
|
|
#endif /* _CMDLINE_TM_H_ */
|