From: Intel Date: Mon, 22 Jul 2013 22:00:00 +0000 (+0200) Subject: examples/qos_sched: minor changes X-Git-Tag: spdx-start~11166 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=624148d2b11f52228075d0a65f9840e7c47fac70;hp=e93b24a3da57166218598d116bd3a2df7865974a;p=dpdk.git examples/qos_sched: minor changes Signed-off-by: Intel --- 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);