summaryrefslogtreecommitdiffstats
path: root/build/external/packages/libbpf.mk
blob: 39da05d987150e3fa744dc7d27906bc5953b55a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Copyright (c) 2018 Cisco and/or its affiliates.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

LIBBPF_DEBUG?=n

libbpf_version             := 0.2
libbpf_tarball             := v$(libbpf_version).tar.gz
libbpf_tarball_md5sum_0.2  := cd0f82d76a9830c1e66b1a249393d5a8
libbpf_tarball_md5sum_0.1.0 := 00b991a6e2d28d797a56ab1575ed40e1
libbpf_tarball_md5sum      := $(libbpf_tarball_md5sum_$(libbpf_version))
libbpf_tarball_strip_dirs  := 1
libbpf_url                 := https://github.com/libbpf/libbpf/archive/$(libbpf_tarball)

LIBBPF_CFLAGS:=-g -Werror -Wall -fPIC -fvisibility=hidden
ifeq ($(LIBBPF_DEBUG),y)
  LIBBPF_CFLAGS+= -O0
else
  LIBBPF_CFLAGS+= -O2
endif

# check for libelf, zlib and kernel if_xdp.h presence
LIBBPF_DEPS_CHECK:="\#include <linux/if_xdp.h>\\n\#include <gelf.h>\\n\#include <zlib.h>\\nint main(void){return 0;}"
LIBBPF_DEPS_CHECK:=$(shell echo -e $(LIBBPF_DEPS_CHECK) | $(CC) -xc -lelf -lz -o /dev/null - > /dev/null 2>&1)
LIBBPF_DEPS_CHECK:=$(.SHELLSTATUS)

define  libbpf_config_cmds
	@true
endef

define  libbpf_build_cmds__
	BUILD_STATIC_ONLY=y OBJDIR='$(libbpf_build_dir)' PREFIX='' DESTDIR='$(libbpf_install_dir)' CFLAGS='$(LIBBPF_CFLAGS)' make -C '$(libbpf_src_dir)/src' $(1) > $(2)
endef

define  libbpf_build_cmds
	$(call libbpf_build_cmds__,,$(libbpf_build_log))
endef

define  libbpf_install_cmds
	$(call libbpf_build_cmds__,install,$(libbpf_install_log))
endef

ifneq ($(LIBBPF_DEPS_CHECK),0)
  $(warning "Missing libbpf dependencies. libbpf will be skipped.")
libbpf-install:
	@true
else
  $(eval $(call package,libbpf))
endif
a> 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980
CSIT Tags
=========

All CSIT test cases are labelled with Robot Framework tags used to allow for
easy test case type identification, test case grouping and selection for
execution. Following sections list currently used CSIT tags and their
descriptions.

Testbed Topology Tags
---------------------

.. topic:: 2_NODE_DOUBLE_LINK_TOPO

    2 nodes connected in a circular topology with two links interconnecting
    the devices.

.. topic:: 2_NODE_SINGLE_LINK_TOPO

    2 nodes connected in a circular topology with at least one link
    interconnecting devices.

.. topic:: 3_NODE_DOUBLE_LINK_TOPO

    3 nodes connected in a circular topology with two links interconnecting
    the devices.

.. topic:: 3_NODE_SINGLE_LINK_TOPO

    3 nodes connected in a circular topology with at least one link
    interconnecting devices.

Objective Tags
--------------

.. topic:: SKIP_PATCH

    Test case(s) marked to not run in case of vpp-csit-verify (i.e. VPP patch)
    and csit-vpp-verify jobs (i.e. CSIT patch).

.. topic:: SKIP_VPP_PATCH

    Test case(s) marked to not run in case of vpp-csit-verify (i.e. VPP patch).

Environment Tags
----------------

.. topic:: HW_ENV

    DUTs and TGs are running on bare metal.

.. topic:: VM_ENV

    DUTs and TGs are running in virtual environment.

.. topic:: VPP_VM_ENV

    DUTs with VPP and capable of running Virtual Machine.

NIC Model Tags
--------------

.. topic:: NIC_Intel-X520-DA2

    Intel X520-DA2 NIC.

.. topic:: NIC_Intel-XL710

    Intel XL710 NIC.

.. topic:: NIC_Intel-X710

    Intel X710 NIC.

.. topic:: NIC_Intel-XXV710

    Intel XXV710 NIC.

.. topic:: NIC_Cisco-VIC-1227

    VIC-1227 by Cisco.

.. topic:: NIC_Cisco-VIC-1385

    VIC-1385 by Cisco.

.. topic:: NIC_Amazon-Nitro-50G

    Amazon EC2 ENA NIC.

Scaling Tags
------------

.. topic:: FIB_20K

    2x10,000 entries in single fib table

.. topic:: FIB_200K

    2x100,000 entries in single fib table

.. topic:: FIB_2M

    2x1,000,000 entries in single fib table

.. topic:: L2BD_1

    Test with 1 L2 bridge domain.

.. topic:: L2BD_10

    Test with 10 L2 bridge domains.

.. topic:: L2BD_100

    Test with 100 L2 bridge domains.

.. topic:: L2BD_1K

    Test with 1000 L2 bridge domains.

.. topic:: VLAN_1

    Test with 1 VLAN sub-interface.

.. topic:: VLAN_10

    Test with 10 VLAN sub-interfaces.

.. topic:: VLAN_100

    Test with 100 VLAN sub-interfaces.

.. topic:: VLAN_1K

    Test with 1000 VLAN sub-interfaces.

.. topic:: VXLAN_1

    Test with 1 VXLAN tunnel.

.. topic:: VXLAN_10

    Test with 10 VXLAN tunnels.

.. topic:: VXLAN_100

    Test with 100 VXLAN tunnels.

.. topic:: VXLAN_1K

    Test with 1000 VXLAN tunnels.

.. topic:: TNL_{t}

    IPSec in tunnel mode - {t} tunnels.

.. topic:: SRC_USER_1

    Traffic flow with 1 unique IP (users) in one direction.

.. topic:: SRC_USER_10

    Traffic flow with 10 unique IPs (users) in one direction.

.. topic:: SRC_USER_100

    Traffic flow with 100 unique IPs (users) in one direction.

.. topic:: SRC_USER_1000

    Traffic flow with 1000 unique IPs (users) in one direction.

.. topic:: SRC_USER_2000

    Traffic flow with 2000 unique IPs (users) in one direction.

.. topic:: SRC_USER_4000

    Traffic flow with 4000 unique IPs (users) in one direction.

.. topic:: 100_FLOWS

    Traffic stream with 100 unique flows (10 IPs/users x 10 UDP ports) in one
    direction.

.. topic:: 10k_FLOWS

    Traffic stream with 10 000 unique flows (10 IPs/users x 1000 UDP ports) in
    one direction.

.. topic:: 100k_FLOWS

    Traffic stream with 100 000 unique flows (100 IPs/users x 1000 UDP ports) in
    one direction.

.. topic:: HOSTS_1024

    Stateless or stateful traffic stream with 1024 client source IP4 addresses,
    usually with 63 flow differing in source port number. Could be UDP or TCP.
    If NAT is used, the clients are inside. Outside IP range can differ.

.. topic:: HOSTS_4096

    Stateless or stateful traffic stream with 4096 client source IP4 addresses,
    usually with 63 flow differing in source port number. Could be UDP or TCP.
    If NAT is used, the clients are inside. Outside IP range can differ.

.. topic:: HOSTS_16384

    Stateless or stateful traffic stream with 16384 client source IP4 addresses,
    usually with 63 flow differing in source port number. Could be UDP or TCP.
    If NAT is used, the clients are inside. Outside IP range can differ.

.. topic:: HOSTS_65536

    Stateless or stateful traffic stream with 65536 client source IP4 addresses,
    usually with 63 flow differing in source port number. Could be UDP or TCP.
    If NAT is used, the clients are inside. Outside IP range can differ.

.. topic:: HOSTS_262144

    Stateless or stateful traffic stream with 262144 client source IP4 addresses
    usually with 63 flow differing in source port number. Could be UDP or TCP.
    If NAT is used, the clients are inside. Outside IP range can differ.

.. topic:: GENEVE4_1TUN

    Test with 1 GENEVE IPv4 tunnel.

.. topic:: GENEVE4_4TUN

    Test with 4 GENEVE IPv4 tunnels.

.. topic:: GENEVE4_16TUN

    Test with 16 GENEVE IPv4 tunnels.

.. topic:: GENEVE4_64TUN

    Test with 64 GENEVE IPv4 tunnels.

.. topic:: GENEVE4_256TUN

    Test with 256 GENEVE IPv4 tunnels.

.. topic:: GENEVE4_1024TUN

    Test with 1024 GENEVE IPv4 tunnels.

Test Category Tags
------------------

.. topic:: FUNCTEST

    All functional test cases.

.. topic:: PERFTEST

    All performance test cases.

Performance Type Tags
---------------------

.. topic:: NDRPDR

    Single test finding both No Drop Rate and Partial Drop Rate simultaneously.
    The search is done by optimized algorithm which performs
    multiple trial runs at different durations and transmit rates.
    The results come from the final trials, which have duration of 30 seconds.

.. topic:: MRR

    Performance tests where TG sends the traffic at maximum rate (line rate)
    and reports total sent/received packets over trial duration.
    The result is an average of 10 trials of 1 second duration.

.. topic:: SOAK

    Performance tests using PLRsearch to find the critical load.

.. topic:: RECONF

    Performance tests aimed to measure lost packets (time) when performing
    reconfiguration while full throughput offered load is applied.

Ethernet Frame Size Tags
------------------------

These are describing the traffic offered by Traffic Generator,
"primary" traffic in case of asymmetric load.
For traffic between DUTs, or for "secondary" traffic, see ${overhead} value.

.. topic:: 64B

    64B frames used for test. Generic ethernet or IPv4.

.. topic:: 78B

    78B frames used for test. Ipv6.

.. topic:: 114B

    114B frames used for test. IPv4+vxlan.

.. topic:: 118B

    118B frames used for test. Dot1q+IPv4+vxlan.

.. topic:: IMIX

    IMIX frame sequence (28x 64B, 16x 570B, 4x 1518B) used for test.

.. topic:: 1460B

    1460B frames used for test.

.. topic:: 1480B

    1480B frames used for test.

.. topic:: 1514B

    1514B frames used for test.

.. topic:: 1518B

    1518B frames used for test.

.. topic:: 9000B

    9000B frames used for test.

Test Type Tags
--------------

.. topic:: BASE

    Baseline test cases, no encapsulation, no feature(s) configured in tests.
    No scaling whatsoever, beyond minimum needed for RSS.

.. topic:: IP4BASE

    IPv4 baseline test cases, no encapsulation, no feature(s) configured in
    tests. Minimal number of routes. Other quantities may be scaled.

.. topic:: IP6BASE

    IPv6 baseline test cases, no encapsulation, no feature(s) configured in
    tests.

.. topic:: L2XCBASE

    L2XC baseline test cases, no encapsulation, no feature(s) configured in
    tests.

.. topic:: L2BDBASE

    L2BD baseline test cases, no encapsulation, no feature(s) configured in
    tests.

.. topic:: L2PATCH

    L2PATCH baseline test cases, no encapsulation, no feature(s) configured in
    tests.

.. topic:: SCALE

    Scale test cases. Other tags specify which quantities are scaled.
    Also applies if scaling is set on TG only (e.g. DUT works as IP4BASE).

.. topic:: ENCAP

    Test cases where encapsulation is used. Use also encapsulation tag(s).

.. topic:: FEATURE

    At least one feature is configured in test cases. Use also feature tag(s).

.. topic:: UDP

    Tests which use any kind of UDP traffic (STL or ASTF profile).

.. topic:: TCP

    Tests which use any kind of TCP traffic (STL or ASTF profile).

..
    TODO: Should we define tags STL and ASTF?

.. topic:: UDP_UDIR

    Tests which use unidirectional UDP traffic (STL profile only).

.. topic:: UDP_BIDIR

    Tests which use bidirectional UDP traffic (STL profile only).

.. topic:: UDP_CPS

    Tests which measure connections per second on minimal UDP pseudoconnections.
    This implies ASTF traffic profile is used.
    This tag selects specific output processing in PAL.

.. topic:: TCP_CPS

    Tests which measure connections per second on empty TCP connections.
    This implies ASTF traffic profile is used.
    This tag selects specific output processing in PAL.

.. topic:: UDP_PPS

    Tests which measure packets per second on lightweight UDP transactions.
    This implies ASTF traffic profile is used.
    This tag selects specific output processing in PAL.

.. topic:: TCP_PPS

    Tests which measure packets per second on lightweight TCP transactions.
    This implies ASTF traffic profile is used.
    This tag selects specific output processing in PAL.

.. topic:: HTTP

    Tests which use traffic formed of valid HTTP requests (and responses).

..
    TODO: Add HTTP tag to the current hoststack tests.
    TODO: Document other tags already used by hoststack tests.

.. topic:: NF_DENSITY

    Performance tests that measure throughput of multiple VNF and CNF
    service topologies at different service densities.

NF Service Density Tags
-----------------------

.. topic:: CHAIN

    NF service density tests with VNF or CNF service chain topology(ies).

.. topic:: PIPE

    NF service density tests with CNF service pipeline topology(ies).

.. topic:: NF_L3FWDIP4

    NF service density tests with DPDK l3fwd IPv4 routing as NF workload.

.. topic:: NF_VPPIP4

    NF service density tests with VPP IPv4 routing as NF workload.

.. topic:: {r}R{c}C

    Service density matrix locator {r}R{c}C, {r}Row denoting number of
    service instances, {c}Column denoting number of NFs per service
    instance. {r}=(1,2,4,6,8,10), {c}=(1,2,4,6,8,10).

.. topic:: {n}VM{t}T

    Service density {n}VM{t}T, {n}Number of NF Qemu VMs, {t}Number of threads
    per NF.

.. topic:: {n}DCRt}T

    Service density {n}DCR{t}T, {n}Number of NF Docker containers, {t}Number of
    threads per NF.

.. topic:: {n}_ADDED_CHAINS

    {n}Number of chains (or pipelines) added (and/or removed)
    during RECONF test.

Forwarding Mode Tags
--------------------

.. topic:: L2BDMACSTAT

    VPP L2 bridge-domain, L2 MAC static.

.. topic:: L2BDMACLRN

    VPP L2 bridge-domain, L2 MAC learning.

.. topic:: L2XCFWD

    VPP L2 point-to-point cross-connect.

.. topic:: IP4FWD

    VPP IPv4 routed forwarding.

.. topic:: IP6FWD

    VPP IPv6 routed forwarding.

.. topic:: LOADBALANCER_MAGLEV

    VPP Load balancer maglev mode.

.. topic:: LOADBALANCER_L3DSR

    VPP Load balancer l3dsr mode.

.. topic:: LOADBALANCER_NAT4

    VPP Load balancer nat4 mode.

Underlay Tags
-------------

.. topic:: IP4UNRLAY

    IPv4 underlay.

.. topic:: IP6UNRLAY

    IPv6 underlay.

.. topic:: MPLSUNRLAY

    MPLS underlay.

Overlay Tags
------------

.. topic:: L2OVRLAY

    L2 overlay.

.. topic:: IP4OVRLAY

    IPv4 overlay (IPv4 payload).

.. topic:: IP6OVRLAY

    IPv6 overlay (IPv6 payload).

Tagging Tags
------------

.. topic:: DOT1Q

    All test cases with dot1q.

.. topic:: DOT1AD

    All test cases with dot1ad.

Encapsulation Tags
------------------

.. topic:: ETH

    All test cases with base Ethernet (no encapsulation).

.. topic:: LISP

    All test cases with LISP.

.. topic:: LISPGPE

    All test cases with LISP-GPE.

.. topic:: LISP_IP4o4

    All test cases with LISP_IP4o4.

.. topic:: LISPGPE_IP4o4

    All test cases with LISPGPE_IP4o4.

.. topic:: LISPGPE_IP6o4

    All test cases with LISPGPE_IP6o4.

.. topic:: LISPGPE_IP4o6

    All test cases with LISPGPE_IP4o6.

.. topic:: LISPGPE_IP6o6

    All test cases with LISPGPE_IP6o6.

.. topic:: VXLAN

    All test cases with Vxlan.

.. topic:: VXLANGPE

    All test cases with VXLAN-GPE.

.. topic:: GRE

    All test cases with GRE.

.. topic:: IPSEC

    All test cases with IPSEC.

.. topic:: SRv6

    All test cases with Segment routing over IPv6 dataplane.

.. topic:: SRv6_1SID

    All SRv6 test cases with single SID.

.. topic:: SRv6_2SID_DECAP

    All SRv6 test cases with two SIDs and with decapsulation.

.. topic:: SRv6_2SID_NODECAP

    All SRv6 test cases with two SIDs and without decapsulation.

.. topic:: GENEVE

    All test cases with GENEVE.

.. topic:: GENEVE_L3MODE

    All test cases with GENEVE tunnel in L3 mode.

Interface Tags
--------------

.. topic:: PHY

    All test cases which use physical interface(s).

.. topic:: GSO

    All test cases which uses Generic Segmentation Offload.

.. topic:: VHOST

    All test cases which uses VHOST.

.. topic:: VHOST_1024

    All test cases which uses VHOST DPDK driver with qemu queue size set
    to 1024.

.. topic:: VIRTIO

    All test cases which uses VIRTIO native VPP driver.

.. topic:: VIRTIO_1024

    All test cases which uses VIRTIO native VPP driver with qemu queue size set
    to 1024.

.. topic:: CFS_OPT

    All test cases which uses VM with optimised scheduler policy.

.. topic:: TUNTAP

    All test cases which uses TUN and TAP.

.. topic:: AFPKT

    All test cases which uses AFPKT.

.. topic:: NETMAP

    All test cases which uses Netmap.

.. topic:: MEMIF

    All test cases which uses Memif.

.. topic:: SINGLE_MEMIF

    All test cases which uses only single Memif connection per DUT. One DUT
    instance is running in container having one physical interface exposed to
    container.

.. topic:: LBOND

    All test cases which uses link bonding (BondEthernet interface).

.. topic:: LBOND_DPDK

    All test cases which uses DPDK link bonding.

.. topic:: LBOND_VPP

    All test cases which uses VPP link bonding.

.. topic:: LBOND_MODE_XOR

    All test cases which uses link bonding with mode XOR.

.. topic:: LBOND_MODE_LACP

    All test cases which uses link bonding with mode LACP.

.. topic:: LBOND_LB_L34

    All test cases which uses link bonding with load-balance mode l34.

.. topic:: LBOND_1L

    All test cases which uses one link for link bonding.

.. topic:: LBOND_2L

    All test cases which uses two links for link bonding.

.. topic:: DRV_AVF

    All test cases which uses Intel Adaptive Virtual Function (AVF) device
    plugin for VPP. This plugins provides native device support for Intel AVF.
    AVF is driver specification for current and future Intel Virtual Function
    devices. In essence, today this driver can be used only with Intel
    XL710 / X710 / XXV710 adapters.

.. topic:: DRV_VFIO_PCI

    All test cases which uses vfio-pci device driver. It supports variety of NIC
    adapters.

.. topic:: DRV_RDMA_CORE

    All test cases which uses rdma-core device driver. It supports Mellanox
    NIC adapters.

.. topic:: RXQ_SIZE_{n}

   All test cases which RXQ size (RX descriptors) are set to {n}. Default is 0,
   which means VPP (API) default.

.. topic:: TXQ_SIZE_{n}

   All test cases which TXQ size (TX descriptors) are set to {n}. Default is 0,
   which means VPP (API) default.

Feature Tags
------------

.. topic:: IACLDST

    iACL destination.

.. topic:: ADLALWLIST

    ADL allowlist.

.. topic:: NAT44

    NAT44 configured and tested.

.. topic:: NAT64

    NAT44 configured and tested.

.. topic:: ACL

    ACL plugin configured and tested.

.. topic:: IACL

    ACL plugin configured and tested on input path.

.. topic:: OACL

    ACL plugin configured and tested on output path.

.. topic:: ACL_STATELESS

    ACL plugin configured and tested in stateless mode (permit action).

.. topic:: ACL_STATEFUL

    ACL plugin configured and tested in stateful mode (permit+reflect action).

.. topic:: ACL1

    ACL plugin configured and tested with 1 not-hitting ACE.

.. topic:: ACL10

    ACL plugin configured and tested with 10 not-hitting ACEs.

.. topic:: ACL50

    ACL plugin configured and tested with 50 not-hitting ACEs.

.. topic:: SRv6_PROXY

    SRv6 endpoint to SR-unaware appliance via proxy.

.. topic:: SRv6_PROXY_STAT

    SRv6 endpoint to SR-unaware appliance via static proxy.

.. topic:: SRv6_PROXY_DYN

    SRv6 endpoint to SR-unaware appliance via dynamic proxy.

.. topic:: SRv6_PROXY_MASQ

    SRv6 endpoint to SR-unaware appliance via masquerading proxy.

Encryption Tags
---------------

.. topic:: IPSECSW

    Crypto in software.

.. topic:: IPSECHW

    Crypto in hardware.

.. topic:: IPSECTRAN

    IPSec in transport mode.

.. topic:: IPSECTUN

    IPSec in tunnel mode.

.. topic:: IPSECINT

    IPSec in interface mode.

.. topic:: AES

    IPSec using AES algorithms.

.. topic:: AES_128_CBC

    IPSec using AES 128 CBC algorithms.

.. topic:: AES_128_GCM

    IPSec using AES 128 GCM algorithms.

.. topic:: AES_256_GCM

    IPSec using AES 256 GCM algorithms.

.. topic:: HMAC

    IPSec using HMAC integrity algorithms.

.. topic:: HMAC_SHA_256

    IPSec using HMAC SHA 256 integrity algorithms.

.. topic:: HMAC_SHA_512

    IPSec using HMAC SHA 512 integrity algorithms.

.. topic:: SCHEDULER

    IPSec using crypto sw scheduler engine.

Client-Workload Tags
--------------------

.. topic:: VM

    All test cases which use at least one virtual machine.

.. topic:: LXC

    All test cases which use Linux container and LXC utils.

.. topic:: DRC

    All test cases which use at least one Docker container.

.. topic:: DOCKER

    All test cases which use Docker as container manager.

.. topic:: APP

    All test cases with specific APP use.

Container Orchestration Tags
----------------------------

.. topic:: 1VSWITCH

    VPP running in Docker container acting as VSWITCH.

.. topic:: 1VNF

    1 VPP running in Docker container acting as VNF work load.

.. topic:: 2VNF

    2 VPP running in 2 Docker containers acting as VNF work load.

.. topic:: 4VNF

    4 VPP running in 4 Docker containers acting as VNF work load.

Multi-Threading Tags
--------------------

.. topic:: STHREAD

   *Dynamic tag*.
   All test cases using single poll mode thread.

.. topic:: MTHREAD

   *Dynamic tag*.
    All test cases using more then one poll mode driver thread.

.. topic:: 1NUMA

    All test cases with packet processing on single socket.

.. topic:: 2NUMA

    All test cases with packet processing on two sockets.

.. topic:: 1C

    1 worker thread pinned to 1 dedicated physical core; or if HyperThreading is
    enabled, 2 worker threads each pinned to a separate logical core within 1
    dedicated physical core. Main thread pinned to core 1.

.. topic:: 2C

    2 worker threads pinned to 2 dedicated physical cores; or if HyperThreading
    is enabled, 4 worker threads each pinned to a separate logical core within 2
    dedicated physical cores. Main thread pinned to core 1.

.. topic:: 4C

    4 worker threads pinned to 4 dedicated physical cores; or if HyperThreading
    is enabled, 8 worker threads each pinned to a separate logical core within 4
    dedicated physical cores. Main thread pinned to core 1.

.. topic:: 1T1C

   *Dynamic tag*.
    1 worker thread pinned to 1 dedicated physical core. 1 receive queue per
    interface. Main thread pinned to core 1.

.. topic:: 2T2C

   *Dynamic tag*.
    2 worker threads pinned to 2 dedicated physical cores. 1 receive queue per
    interface. Main thread pinned to core 1.

.. topic:: 4T4C

   *Dynamic tag*.
    4 worker threads pinned to 4 dedicated physical cores. 2 receive queues per
    interface. Main thread pinned to core 1.

.. topic:: 2T1C

   *Dynamic tag*.
    2 worker threads each pinned to a separate logical core within 1 dedicated
    physical core. 1 receive queue per interface. Main thread pinned to core 1.

.. topic:: 4T2C

   *Dynamic tag*.
    4 worker threads each pinned to a separate logical core within 2 dedicated
    physical cores. 2 receive queues per interface. Main thread pinned to core
    1.

.. topic:: 8T4C

   *Dynamic tag*.
    8 worker threads each pinned to a separate logical core within 4 dedicated
    physical cores. 4 receive queues per interface. Main thread pinned to core
    1.