From 624148d2b11f52228075d0a65f9840e7c47fac70 Mon Sep 17 00:00:00 2001 From: Intel Date: Tue, 23 Jul 2013 00:00:00 +0200 Subject: [PATCH 1/1] examples/qos_sched: minor changes Signed-off-by: Intel --- examples/qos_sched/init.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/examples/qos_sched/init.c b/examples/qos_sched/init.c index b2e7b7175f..6a1d83072d 100755 --- a/examples/qos_sched/init.c +++ b/examples/qos_sched/init.c @@ -201,7 +201,7 @@ static struct rte_sched_pipe_params pipe_profiles[RTE_SCHED_PIPE_PROFILES_PER_PO }; struct rte_sched_port_params port_params = { - .name = "port_0", + .name = "port_scheduler_0", .socket = 0, /* computed */ .rate = 0, /* computed */ .mtu = 6 + 6 + 4 + 4 + 2 + 1500, @@ -210,7 +210,7 @@ struct rte_sched_port_params port_params = { .n_pipes_per_subport = 4096, .qsize = {64, 64, 64, 64}, .pipe_profiles = pipe_profiles, - .n_pipe_profiles = 1, + .n_pipe_profiles = sizeof(pipe_profiles) / sizeof(struct rte_sched_pipe_params), #ifdef RTE_SCHED_RED .red_params = { @@ -354,8 +354,6 @@ int app_init(void) if (qos_conf[i].mbuf_pool == NULL) rte_exit(EXIT_FAILURE, "Cannot init mbuf pool for socket %u\n", i); - //printf("MP = %d\n", rte_mempool_count(qos_conf[i].app_pktmbuf_pool)); - app_init_port(qos_conf[i].rx_port, qos_conf[i].mbuf_pool); app_init_port(qos_conf[i].tx_port, qos_conf[i].mbuf_pool); -- 2.20.1