1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2014 Intel Corporation
13 #include <rte_cycles.h>
14 #include <rte_ether.h>
16 #include <rte_byteorder.h>
17 #include <rte_sched.h>
25 static struct rte_sched_pipe_params pipe_profile[] = {
30 .tc_rate = {305175, 305175, 305175, 305175, 305175, 305175,
31 305175, 305175, 305175, 305175, 305175, 305175, 305175},
35 .wrr_weights = {1, 1, 1, 1},
39 static struct rte_sched_subport_params subport_param[] = {
41 .tb_rate = 1250000000,
44 .tc_rate = {1250000000, 1250000000, 1250000000, 1250000000,
45 1250000000, 1250000000, 1250000000, 1250000000, 1250000000,
46 1250000000, 1250000000, 1250000000, 1250000000},
48 .n_pipes_per_subport_enabled = 1024,
49 .qsize = {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32},
50 .pipe_profiles = pipe_profile,
52 .n_max_pipe_profiles = 1,
56 static struct rte_sched_port_params port_param = {
57 .socket = 0, /* computed */
58 .rate = 0, /* computed */
60 .frame_overhead = RTE_SCHED_FRAME_OVERHEAD_DEFAULT,
61 .n_subports_per_port = 1,
62 .n_pipes_per_subport = 1024,
66 #define MBUF_DATA_SZ (2048 + RTE_PKTMBUF_HEADROOM)
67 #define MEMPOOL_CACHE_SZ 0
71 static struct rte_mempool *
74 struct rte_mempool * mp;
76 mp = rte_mempool_lookup("test_sched");
78 mp = rte_pktmbuf_pool_create("test_sched", NB_MBUF,
79 MEMPOOL_CACHE_SZ, 0, MBUF_DATA_SZ, SOCKET);
85 prepare_pkt(struct rte_sched_port *port, struct rte_mbuf *mbuf)
87 struct rte_ether_hdr *eth_hdr;
88 struct rte_vlan_hdr *vlan1, *vlan2;
89 struct rte_ipv4_hdr *ip_hdr;
91 /* Simulate a classifier */
92 eth_hdr = rte_pktmbuf_mtod(mbuf, struct rte_ether_hdr *);
93 vlan1 = (struct rte_vlan_hdr *)(ð_hdr->ether_type);
94 vlan2 = (struct rte_vlan_hdr *)(
95 (uintptr_t)ð_hdr->ether_type + sizeof(struct rte_vlan_hdr));
96 eth_hdr = (struct rte_ether_hdr *)(
97 (uintptr_t)ð_hdr->ether_type +
98 2 * sizeof(struct rte_vlan_hdr));
99 ip_hdr = (struct rte_ipv4_hdr *)(
100 (uintptr_t)eth_hdr + sizeof(eth_hdr->ether_type));
102 vlan1->vlan_tci = rte_cpu_to_be_16(SUBPORT);
103 vlan2->vlan_tci = rte_cpu_to_be_16(PIPE);
104 eth_hdr->ether_type = rte_cpu_to_be_16(RTE_ETHER_TYPE_IPV4);
105 ip_hdr->dst_addr = RTE_IPV4(0,0,TC,QUEUE);
108 rte_sched_port_pkt_write(port, mbuf, SUBPORT, PIPE, TC, QUEUE,
118 * test main entrance for library sched
123 struct rte_mempool *mp = NULL;
124 struct rte_sched_port *port = NULL;
126 struct rte_mbuf *in_mbufs[10];
127 struct rte_mbuf *out_mbufs[10];
132 mp = create_mempool();
133 TEST_ASSERT_NOT_NULL(mp, "Error creating mempool\n");
135 port_param.socket = 0;
136 port_param.rate = (uint64_t) 10000 * 1000 * 1000 / 8;
138 port = rte_sched_port_config(&port_param);
139 TEST_ASSERT_NOT_NULL(port, "Error config sched port\n");
141 err = rte_sched_subport_config(port, SUBPORT, subport_param);
142 TEST_ASSERT_SUCCESS(err, "Error config sched, err=%d\n", err);
144 for (pipe = 0; pipe < subport_param[0].n_pipes_per_subport_enabled; pipe++) {
145 err = rte_sched_pipe_config(port, SUBPORT, pipe, 0);
146 TEST_ASSERT_SUCCESS(err, "Error config sched pipe %u, err=%d\n", pipe, err);
149 for (i = 0; i < 10; i++) {
150 in_mbufs[i] = rte_pktmbuf_alloc(mp);
151 TEST_ASSERT_NOT_NULL(in_mbufs[i], "Packet allocation failed\n");
152 prepare_pkt(port, in_mbufs[i]);
156 err = rte_sched_port_enqueue(port, in_mbufs, 10);
157 TEST_ASSERT_EQUAL(err, 10, "Wrong enqueue, err=%d\n", err);
159 err = rte_sched_port_dequeue(port, out_mbufs, 10);
160 TEST_ASSERT_EQUAL(err, 10, "Wrong dequeue, err=%d\n", err);
162 for (i = 0; i < 10; i++) {
163 enum rte_color color;
164 uint32_t subport, traffic_class, queue;
166 color = rte_sched_port_pkt_read_color(out_mbufs[i]);
167 TEST_ASSERT_EQUAL(color, RTE_COLOR_YELLOW, "Wrong color\n");
169 rte_sched_port_pkt_read_tree_path(port, out_mbufs[i],
170 &subport, &pipe, &traffic_class, &queue);
172 TEST_ASSERT_EQUAL(subport, SUBPORT, "Wrong subport\n");
173 TEST_ASSERT_EQUAL(pipe, PIPE, "Wrong pipe\n");
174 TEST_ASSERT_EQUAL(traffic_class, TC, "Wrong traffic_class\n");
175 TEST_ASSERT_EQUAL(queue, QUEUE, "Wrong queue\n");
180 struct rte_sched_subport_stats subport_stats;
182 rte_sched_subport_read_stats(port, SUBPORT, &subport_stats, &tc_ov);
184 TEST_ASSERT_EQUAL(subport_stats.n_pkts_tc[TC-1], 10, "Wrong subport stats\n");
186 struct rte_sched_queue_stats queue_stats;
188 rte_sched_queue_read_stats(port, QUEUE, &queue_stats, &qlen);
190 TEST_ASSERT_EQUAL(queue_stats.n_pkts, 10, "Wrong queue stats\n");
193 rte_sched_port_free(port);
198 REGISTER_TEST_COMMAND(sched_autotest, test_sched);