4 * Copyright(c) 2010-2016 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Intel Corporation nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 #include "test_table_combined.h"
36 #include "test_table.h"
37 #include <rte_table_lpm_ipv6.h>
39 #define MAX_TEST_KEYS 128
42 enum check_table_result {
44 CHECK_TABLE_PORT_CONFIG,
45 CHECK_TABLE_PORT_ENABLE,
46 CHECK_TABLE_TABLE_CONFIG,
47 CHECK_TABLE_ENTRY_ADD,
48 CHECK_TABLE_DEFAULT_ENTRY_ADD,
50 CHECK_TABLE_MANAGE_ERROR,
51 CHECK_TABLE_CONSISTENCY,
52 CHECK_TABLE_NO_TRAFFIC,
53 CHECK_TABLE_INVALID_PARAMETER,
56 struct table_packets {
57 uint32_t hit_packet[MAX_TEST_KEYS];
58 uint32_t miss_packet[MAX_TEST_KEYS];
59 uint32_t n_hit_packets;
60 uint32_t n_miss_packets;
63 combined_table_test table_tests_combined[] = {
64 test_table_lpm_combined,
65 test_table_lpm_ipv6_combined,
72 test_table_hash_cuckoo_combined,
75 unsigned n_table_tests_combined = RTE_DIM(table_tests_combined);
77 /* Generic port tester function */
79 test_table_type(struct rte_table_ops *table_ops, void *table_args,
80 void *key, struct table_packets *table_packets,
81 struct manage_ops *manage_ops, unsigned n_ops)
83 uint32_t ring_in_id, table_id, ring_out_id, ring_out_2_id;
86 RTE_SET_USED(manage_ops);
89 struct rte_pipeline_params pipeline_params = {
94 struct rte_pipeline *pipeline = rte_pipeline_create(&pipeline_params);
96 /* Create input ring */
97 struct rte_port_ring_reader_params ring_params_rx = {
101 struct rte_port_ring_writer_params ring_params_tx = {
103 .tx_burst_sz = RTE_PORT_IN_BURST_SIZE_MAX,
106 struct rte_pipeline_port_in_params ring_in_params = {
107 .ops = &rte_port_ring_reader_ops,
108 .arg_create = (void *)&ring_params_rx,
110 .burst_size = RTE_PORT_IN_BURST_SIZE_MAX,
113 if (rte_pipeline_port_in_create(pipeline, &ring_in_params,
115 rte_pipeline_free(pipeline);
116 return -CHECK_TABLE_PORT_CONFIG;
120 struct rte_pipeline_table_params table_params = {
122 .arg_create = table_args,
123 .f_action_hit = NULL,
124 .f_action_miss = NULL,
126 .action_data_size = 0,
129 if (rte_pipeline_table_create(pipeline, &table_params,
131 rte_pipeline_free(pipeline);
132 return -CHECK_TABLE_TABLE_CONFIG;
135 /* Create output ports */
136 ring_params_tx.ring = RING_TX;
138 struct rte_pipeline_port_out_params ring_out_params = {
139 .ops = &rte_port_ring_writer_ops,
140 .arg_create = (void *)&ring_params_tx,
144 if (rte_pipeline_port_out_create(pipeline, &ring_out_params,
145 &ring_out_id) != 0) {
146 rte_pipeline_free(pipeline);
147 return -CHECK_TABLE_PORT_CONFIG;
150 ring_params_tx.ring = RING_TX_2;
152 if (rte_pipeline_port_out_create(pipeline, &ring_out_params,
153 &ring_out_2_id) != 0) {
154 rte_pipeline_free(pipeline);
155 return -CHECK_TABLE_PORT_CONFIG;
158 /* Add entry to the table */
159 struct rte_pipeline_table_entry default_entry = {
160 .action = RTE_PIPELINE_ACTION_DROP,
161 {.table_id = ring_out_id},
164 struct rte_pipeline_table_entry table_entry = {
165 .action = RTE_PIPELINE_ACTION_PORT,
166 {.table_id = ring_out_id},
169 struct rte_pipeline_table_entry *default_entry_ptr, *entry_ptr;
173 if (rte_pipeline_table_default_entry_add(pipeline, table_id,
174 &default_entry, &default_entry_ptr) != 0) {
175 rte_pipeline_free(pipeline);
176 return -CHECK_TABLE_DEFAULT_ENTRY_ADD;
179 if (rte_pipeline_table_entry_add(pipeline, table_id,
180 key ? key : &table_entry, &table_entry, &key_found,
182 rte_pipeline_free(pipeline);
183 return -CHECK_TABLE_ENTRY_ADD;
186 /* Create connections and check consistency */
187 if (rte_pipeline_port_in_connect_to_table(pipeline, ring_in_id,
189 rte_pipeline_free(pipeline);
190 return -CHECK_TABLE_CONNECT;
193 if (rte_pipeline_port_in_enable(pipeline, ring_in_id) != 0) {
194 rte_pipeline_free(pipeline);
195 return -CHECK_TABLE_PORT_ENABLE;
198 if (rte_pipeline_check(pipeline) != 0) {
199 rte_pipeline_free(pipeline);
200 return -CHECK_TABLE_CONSISTENCY;
205 /* Flow test - All hits */
206 if (table_packets->n_hit_packets) {
207 for (i = 0; i < table_packets->n_hit_packets; i++)
208 RING_ENQUEUE(RING_RX, table_packets->hit_packet[i]);
210 RUN_PIPELINE(pipeline);
212 VERIFY_TRAFFIC(RING_TX, table_packets->n_hit_packets,
213 table_packets->n_hit_packets);
216 /* Flow test - All misses */
217 if (table_packets->n_miss_packets) {
218 for (i = 0; i < table_packets->n_miss_packets; i++)
219 RING_ENQUEUE(RING_RX, table_packets->miss_packet[i]);
221 RUN_PIPELINE(pipeline);
223 VERIFY_TRAFFIC(RING_TX, table_packets->n_miss_packets, 0);
226 /* Flow test - Half hits, half misses */
227 if (table_packets->n_hit_packets && table_packets->n_miss_packets) {
228 for (i = 0; i < (table_packets->n_hit_packets) / 2; i++)
229 RING_ENQUEUE(RING_RX, table_packets->hit_packet[i]);
231 for (i = 0; i < (table_packets->n_miss_packets) / 2; i++)
232 RING_ENQUEUE(RING_RX, table_packets->miss_packet[i]);
234 RUN_PIPELINE(pipeline);
235 VERIFY_TRAFFIC(RING_TX, table_packets->n_hit_packets,
236 table_packets->n_hit_packets / 2);
239 /* Flow test - Single packet */
240 if (table_packets->n_hit_packets) {
241 RING_ENQUEUE(RING_RX, table_packets->hit_packet[0]);
242 RUN_PIPELINE(pipeline);
243 VERIFY_TRAFFIC(RING_TX, table_packets->n_hit_packets, 1);
245 if (table_packets->n_miss_packets) {
246 RING_ENQUEUE(RING_RX, table_packets->miss_packet[0]);
247 RUN_PIPELINE(pipeline);
248 VERIFY_TRAFFIC(RING_TX, table_packets->n_miss_packets, 0);
252 /* Change table entry action */
253 printf("Change entry action\n");
254 table_entry.table_id = ring_out_2_id;
256 if (rte_pipeline_table_default_entry_add(pipeline, table_id,
257 &default_entry, &default_entry_ptr) != 0) {
258 rte_pipeline_free(pipeline);
259 return -CHECK_TABLE_ENTRY_ADD;
262 if (rte_pipeline_table_entry_add(pipeline, table_id,
263 key ? key : &table_entry, &table_entry, &key_found,
265 rte_pipeline_free(pipeline);
266 return -CHECK_TABLE_ENTRY_ADD;
269 /* Check that traffic destination has changed */
270 if (table_packets->n_hit_packets) {
271 for (i = 0; i < table_packets->n_hit_packets; i++)
272 RING_ENQUEUE(RING_RX, table_packets->hit_packet[i]);
274 RUN_PIPELINE(pipeline);
275 VERIFY_TRAFFIC(RING_TX, table_packets->n_hit_packets, 0);
276 VERIFY_TRAFFIC(RING_TX_2, table_packets->n_hit_packets,
277 table_packets->n_hit_packets);
280 printf("delete entry\n");
281 /* Delete table entry */
282 rte_pipeline_table_entry_delete(pipeline, table_id,
283 key ? key : &table_entry, &key_found, NULL);
285 rte_pipeline_free(pipeline);
292 test_table_stub_combined(void)
295 struct table_packets table_packets;
297 printf("--------------\n");
298 printf("RUNNING TEST - %s\n", __func__);
299 printf("--------------\n");
300 for (i = 0; i < N_PACKETS; i++)
301 table_packets.hit_packet[i] = i;
303 table_packets.n_hit_packets = N_PACKETS;
304 table_packets.n_miss_packets = 0;
306 status = test_table_type(&rte_table_stub_ops, NULL, NULL,
307 &table_packets, NULL, 1);
308 VERIFY(status, CHECK_TABLE_OK);
314 test_table_lpm_combined(void)
319 struct rte_table_lpm_params lpm_params = {
322 .number_tbl8s = 1 << 8,
324 .entry_unique_size = 8,
325 .offset = APP_METADATA_OFFSET(0),
328 struct rte_table_lpm_key lpm_key = {
333 struct table_packets table_packets;
335 printf("--------------\n");
336 printf("RUNNING TEST - %s\n", __func__);
337 printf("--------------\n");
339 for (i = 0; i < N_PACKETS; i++)
340 table_packets.hit_packet[i] = 0xadadadad;
342 for (i = 0; i < N_PACKETS; i++)
343 table_packets.miss_packet[i] = 0xfefefefe;
345 table_packets.n_hit_packets = N_PACKETS;
346 table_packets.n_miss_packets = N_PACKETS;
348 status = test_table_type(&rte_table_lpm_ops, (void *)&lpm_params,
349 (void *)&lpm_key, &table_packets, NULL, 0);
350 VERIFY(status, CHECK_TABLE_OK);
352 /* Invalid parameters */
353 lpm_params.n_rules = 0;
355 status = test_table_type(&rte_table_lpm_ops, (void *)&lpm_params,
356 (void *)&lpm_key, &table_packets, NULL, 0);
357 VERIFY(status, CHECK_TABLE_TABLE_CONFIG);
359 lpm_params.n_rules = 1 << 24;
362 status = test_table_type(&rte_table_lpm_ops, (void *)&lpm_params,
363 (void *)&lpm_key, &table_packets, NULL, 0);
364 VERIFY(status, CHECK_TABLE_ENTRY_ADD);
368 status = test_table_type(&rte_table_lpm_ops, (void *)&lpm_params,
369 (void *)&lpm_key, &table_packets, NULL, 0);
370 VERIFY(status, CHECK_TABLE_ENTRY_ADD);
376 test_table_lpm_ipv6_combined(void)
381 struct rte_table_lpm_ipv6_params lpm_ipv6_params = {
384 .number_tbl8s = 1 << 13,
385 .entry_unique_size = 8,
386 .offset = APP_METADATA_OFFSET(32),
389 struct rte_table_lpm_ipv6_key lpm_ipv6_key = {
392 memset(lpm_ipv6_key.ip, 0xad, 16);
394 struct table_packets table_packets;
396 printf("--------------\n");
397 printf("RUNNING TEST - %s\n", __func__);
398 printf("--------------\n");
399 for (i = 0; i < N_PACKETS; i++)
400 table_packets.hit_packet[i] = 0xadadadad;
402 for (i = 0; i < N_PACKETS; i++)
403 table_packets.miss_packet[i] = 0xadadadab;
405 table_packets.n_hit_packets = N_PACKETS;
406 table_packets.n_miss_packets = N_PACKETS;
408 status = test_table_type(&rte_table_lpm_ipv6_ops,
409 (void *)&lpm_ipv6_params,
410 (void *)&lpm_ipv6_key, &table_packets, NULL, 0);
411 VERIFY(status, CHECK_TABLE_OK);
413 /* Invalid parameters */
414 lpm_ipv6_params.n_rules = 0;
416 status = test_table_type(&rte_table_lpm_ipv6_ops,
417 (void *)&lpm_ipv6_params,
418 (void *)&lpm_ipv6_key, &table_packets, NULL, 0);
419 VERIFY(status, CHECK_TABLE_TABLE_CONFIG);
421 lpm_ipv6_params.n_rules = 1 << 24;
422 lpm_ipv6_key.depth = 0;
424 status = test_table_type(&rte_table_lpm_ipv6_ops,
425 (void *)&lpm_ipv6_params,
426 (void *)&lpm_ipv6_key, &table_packets, NULL, 0);
427 VERIFY(status, CHECK_TABLE_ENTRY_ADD);
429 lpm_ipv6_key.depth = 129;
430 status = test_table_type(&rte_table_lpm_ipv6_ops,
431 (void *)&lpm_ipv6_params,
432 (void *)&lpm_ipv6_key, &table_packets, NULL, 0);
433 VERIFY(status, CHECK_TABLE_ENTRY_ADD);
439 test_table_hash8lru(void)
444 struct rte_table_hash_params key8lru_params = {
447 .key_offset = APP_METADATA_OFFSET(32),
450 .n_buckets = 1 << 16,
451 .f_hash = pipeline_test_hash,
456 uint32_t *k8lru = (uint32_t *) key8lru;
458 memset(key8lru, 0, sizeof(key8lru));
459 k8lru[0] = 0xadadadad;
461 struct table_packets table_packets;
463 printf("--------------\n");
464 printf("RUNNING TEST - %s\n", __func__);
465 printf("--------------\n");
466 for (i = 0; i < 50; i++)
467 table_packets.hit_packet[i] = 0xadadadad;
469 for (i = 0; i < 50; i++)
470 table_packets.miss_packet[i] = 0xfefefefe;
472 table_packets.n_hit_packets = 50;
473 table_packets.n_miss_packets = 50;
475 status = test_table_type(&rte_table_hash_key8_lru_ops,
476 (void *)&key8lru_params, (void *)key8lru, &table_packets,
478 VERIFY(status, CHECK_TABLE_OK);
480 /* Invalid parameters */
481 key8lru_params.n_keys = 0;
483 status = test_table_type(&rte_table_hash_key8_lru_ops,
484 (void *)&key8lru_params, (void *)key8lru, &table_packets,
486 VERIFY(status, CHECK_TABLE_TABLE_CONFIG);
488 key8lru_params.n_keys = 1<<16;
489 key8lru_params.f_hash = NULL;
491 status = test_table_type(&rte_table_hash_key8_lru_ops,
492 (void *)&key8lru_params, (void *)key8lru, &table_packets,
494 VERIFY(status, CHECK_TABLE_TABLE_CONFIG);
500 test_table_hash16lru(void)
505 struct rte_table_hash_params key16lru_params = {
508 .key_offset = APP_METADATA_OFFSET(32),
511 .n_buckets = 1 << 16,
512 .f_hash = pipeline_test_hash,
516 uint8_t key16lru[16];
517 uint32_t *k16lru = (uint32_t *) key16lru;
519 memset(key16lru, 0, sizeof(key16lru));
520 k16lru[0] = 0xadadadad;
522 struct table_packets table_packets;
524 printf("--------------\n");
525 printf("RUNNING TEST - %s\n", __func__);
526 printf("--------------\n");
527 for (i = 0; i < 50; i++)
528 table_packets.hit_packet[i] = 0xadadadad;
530 for (i = 0; i < 50; i++)
531 table_packets.miss_packet[i] = 0xfefefefe;
533 table_packets.n_hit_packets = 50;
534 table_packets.n_miss_packets = 50;
536 status = test_table_type(&rte_table_hash_key16_lru_ops,
537 (void *)&key16lru_params, (void *)key16lru, &table_packets,
539 VERIFY(status, CHECK_TABLE_OK);
541 /* Invalid parameters */
542 key16lru_params.n_keys = 0;
544 status = test_table_type(&rte_table_hash_key16_lru_ops,
545 (void *)&key16lru_params, (void *)key16lru, &table_packets,
547 VERIFY(status, CHECK_TABLE_TABLE_CONFIG);
549 key16lru_params.n_keys = 1<<16;
550 key16lru_params.f_hash = NULL;
552 status = test_table_type(&rte_table_hash_key16_lru_ops,
553 (void *)&key16lru_params, (void *)key16lru, &table_packets,
555 VERIFY(status, CHECK_TABLE_TABLE_CONFIG);
561 test_table_hash32lru(void)
566 struct rte_table_hash_params key32lru_params = {
569 .key_offset = APP_METADATA_OFFSET(32),
572 .n_buckets = 1 << 16,
573 .f_hash = pipeline_test_hash,
577 uint8_t key32lru[32];
578 uint32_t *k32lru = (uint32_t *) key32lru;
580 memset(key32lru, 0, sizeof(key32lru));
581 k32lru[0] = 0xadadadad;
583 struct table_packets table_packets;
585 printf("--------------\n");
586 printf("RUNNING TEST - %s\n", __func__);
587 printf("--------------\n");
588 for (i = 0; i < 50; i++)
589 table_packets.hit_packet[i] = 0xadadadad;
591 for (i = 0; i < 50; i++)
592 table_packets.miss_packet[i] = 0xbdadadad;
594 table_packets.n_hit_packets = 50;
595 table_packets.n_miss_packets = 50;
597 status = test_table_type(&rte_table_hash_key32_lru_ops,
598 (void *)&key32lru_params, (void *)key32lru, &table_packets,
600 VERIFY(status, CHECK_TABLE_OK);
602 /* Invalid parameters */
603 key32lru_params.n_keys = 0;
605 status = test_table_type(&rte_table_hash_key32_lru_ops,
606 (void *)&key32lru_params, (void *)key32lru, &table_packets,
608 VERIFY(status, CHECK_TABLE_TABLE_CONFIG);
610 key32lru_params.n_keys = 1<<16;
611 key32lru_params.f_hash = NULL;
613 status = test_table_type(&rte_table_hash_key32_lru_ops,
614 (void *)&key32lru_params, (void *)key32lru, &table_packets,
616 VERIFY(status, CHECK_TABLE_TABLE_CONFIG);
622 test_table_hash8ext(void)
627 struct rte_table_hash_params key8ext_params = {
630 .key_offset = APP_METADATA_OFFSET(32),
633 .n_buckets = 1 << 16,
634 .f_hash = pipeline_test_hash,
639 uint32_t *k8ext = (uint32_t *) key8ext;
641 memset(key8ext, 0, sizeof(key8ext));
642 k8ext[0] = 0xadadadad;
644 struct table_packets table_packets;
646 printf("--------------\n");
647 printf("RUNNING TEST - %s\n", __func__);
648 printf("--------------\n");
649 for (i = 0; i < 50; i++)
650 table_packets.hit_packet[i] = 0xadadadad;
652 for (i = 0; i < 50; i++)
653 table_packets.miss_packet[i] = 0xbdadadad;
655 table_packets.n_hit_packets = 50;
656 table_packets.n_miss_packets = 50;
658 status = test_table_type(&rte_table_hash_key8_ext_ops,
659 (void *)&key8ext_params, (void *)key8ext, &table_packets,
661 VERIFY(status, CHECK_TABLE_OK);
663 /* Invalid parameters */
664 key8ext_params.n_keys = 0;
666 status = test_table_type(&rte_table_hash_key8_ext_ops,
667 (void *)&key8ext_params, (void *)key8ext, &table_packets,
669 VERIFY(status, CHECK_TABLE_TABLE_CONFIG);
671 key8ext_params.n_keys = 1<<16;
672 key8ext_params.f_hash = NULL;
674 status = test_table_type(&rte_table_hash_key8_ext_ops,
675 (void *)&key8ext_params, (void *)key8ext, &table_packets,
677 VERIFY(status, CHECK_TABLE_TABLE_CONFIG);
683 test_table_hash16ext(void)
688 struct rte_table_hash_params key16ext_params = {
691 .key_offset = APP_METADATA_OFFSET(32),
694 .n_buckets = 1 << 16,
695 .f_hash = pipeline_test_hash,
699 uint8_t key16ext[16];
700 uint32_t *k16ext = (uint32_t *) key16ext;
702 memset(key16ext, 0, sizeof(key16ext));
703 k16ext[0] = 0xadadadad;
705 struct table_packets table_packets;
707 printf("--------------\n");
708 printf("RUNNING TEST - %s\n", __func__);
709 printf("--------------\n");
710 for (i = 0; i < 50; i++)
711 table_packets.hit_packet[i] = 0xadadadad;
713 for (i = 0; i < 50; i++)
714 table_packets.miss_packet[i] = 0xbdadadad;
716 table_packets.n_hit_packets = 50;
717 table_packets.n_miss_packets = 50;
719 status = test_table_type(&rte_table_hash_key16_ext_ops,
720 (void *)&key16ext_params, (void *)key16ext, &table_packets,
722 VERIFY(status, CHECK_TABLE_OK);
724 /* Invalid parameters */
725 key16ext_params.n_keys = 0;
727 status = test_table_type(&rte_table_hash_key16_ext_ops,
728 (void *)&key16ext_params, (void *)key16ext, &table_packets,
730 VERIFY(status, CHECK_TABLE_TABLE_CONFIG);
732 key16ext_params.n_keys = 1<<16;
733 key16ext_params.f_hash = NULL;
735 status = test_table_type(&rte_table_hash_key16_ext_ops,
736 (void *)&key16ext_params, (void *)key16ext, &table_packets,
738 VERIFY(status, CHECK_TABLE_TABLE_CONFIG);
744 test_table_hash32ext(void)
749 struct rte_table_hash_params key32ext_params = {
752 .key_offset = APP_METADATA_OFFSET(32),
755 .n_buckets = 1 << 16,
756 .f_hash = pipeline_test_hash,
760 uint8_t key32ext[32];
761 uint32_t *k32ext = (uint32_t *) key32ext;
763 memset(key32ext, 0, sizeof(key32ext));
764 k32ext[0] = 0xadadadad;
766 struct table_packets table_packets;
768 printf("--------------\n");
769 printf("RUNNING TEST - %s\n", __func__);
770 printf("--------------\n");
771 for (i = 0; i < 50; i++)
772 table_packets.hit_packet[i] = 0xadadadad;
774 for (i = 0; i < 50; i++)
775 table_packets.miss_packet[i] = 0xbdadadad;
777 table_packets.n_hit_packets = 50;
778 table_packets.n_miss_packets = 50;
780 status = test_table_type(&rte_table_hash_key32_ext_ops,
781 (void *)&key32ext_params, (void *)key32ext, &table_packets,
783 VERIFY(status, CHECK_TABLE_OK);
785 /* Invalid parameters */
786 key32ext_params.n_keys = 0;
788 status = test_table_type(&rte_table_hash_key32_ext_ops,
789 (void *)&key32ext_params, (void *)key32ext, &table_packets,
791 VERIFY(status, CHECK_TABLE_TABLE_CONFIG);
793 key32ext_params.n_keys = 1<<16;
794 key32ext_params.f_hash = NULL;
796 status = test_table_type(&rte_table_hash_key32_ext_ops,
797 (void *)&key32ext_params, (void *)key32ext, &table_packets,
799 VERIFY(status, CHECK_TABLE_TABLE_CONFIG);
805 test_table_hash_cuckoo_combined(void)
810 struct rte_table_hash_params cuckoo_params = {
813 .key_offset = APP_METADATA_OFFSET(32),
816 .n_buckets = 1 << 16,
817 .f_hash = pipeline_test_hash,
821 uint8_t key_cuckoo[32];
822 uint32_t *kcuckoo = (uint32_t *) key_cuckoo;
824 memset(key_cuckoo, 0, sizeof(key_cuckoo));
825 kcuckoo[0] = 0xadadadad;
827 struct table_packets table_packets;
829 printf("--------------\n");
830 printf("RUNNING TEST - %s\n", __func__);
831 printf("--------------\n");
832 for (i = 0; i < 50; i++)
833 table_packets.hit_packet[i] = 0xadadadad;
835 for (i = 0; i < 50; i++)
836 table_packets.miss_packet[i] = 0xbdadadad;
838 table_packets.n_hit_packets = 50;
839 table_packets.n_miss_packets = 50;
841 status = test_table_type(&rte_table_hash_cuckoo_ops,
842 (void *)&cuckoo_params, (void *)key_cuckoo, &table_packets,
844 VERIFY(status, CHECK_TABLE_OK);
846 /* Invalid parameters */
847 cuckoo_params.key_size = 0;
849 status = test_table_type(&rte_table_hash_cuckoo_ops,
850 (void *)&cuckoo_params, (void *)key_cuckoo, &table_packets,
852 VERIFY(status, CHECK_TABLE_TABLE_CONFIG);
854 cuckoo_params.key_size = 32;
855 cuckoo_params.n_keys = 0;
857 status = test_table_type(&rte_table_hash_cuckoo_ops,
858 (void *)&cuckoo_params, (void *)key_cuckoo, &table_packets,
860 VERIFY(status, CHECK_TABLE_TABLE_CONFIG);
862 cuckoo_params.n_keys = 1<<16;
863 cuckoo_params.f_hash = NULL;
865 status = test_table_type(&rte_table_hash_cuckoo_ops,
866 (void *)&cuckoo_params, (void *)key_cuckoo, &table_packets,
868 VERIFY(status, CHECK_TABLE_TABLE_CONFIG);