csit.git
10 months agofeat(reassembly): add few suites for ip reassembly 86/35686/77
Vratko Polak [Tue, 23 May 2023 08:34:05 +0000 (10:34 +0200)]
feat(reassembly): add few suites for ip reassembly

In tunneling scenarios, VPP needs to reassembly packet fragments
before decapsulation. Conveniently, VPP also fragments the packets
after encapsulation (at least for some encapsulation protocols)
if they do not fit into MTU.

So this change adds few suites, adapted from existing 3-node ones
which additionally lower MTU on DUT1-DUT2 link.
The intended packet size is 1518B. 64B packets will fit,
and most of IMIX packets will also fit without fragmentation.
VPP refuses to reassembly 9000B packets as they have too many fragments.

+ Add a keyword so suites need only one additional line of code.
+ Add new test tag REASSEMBLY for the added suites.
+ Tell autogen the one soak test case for reaseembly should be 1518B.
- It is possible to increase fragment limit for 9000B, not done yet.
- Ipsec policy suites are added but they should not be used.
 - VPP does fragmentation twice (before and after encapsulation).
 - VPP does not perform reassembly (only last fragment is decrypted).
 - TRex does not realize the packet from VPP is only a fragment.
 - The result is false pass with unfairly good performance.
 + Suites still included, to simplify verifying VPP fixes for the above.

Change-Id: If33c60d767fea161d9e4ffabb8ded3d81c8f39ed
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
10 months agojob-spec: 2n-spr dpdk coverage 72/38872/1
Tibor Frank [Wed, 24 May 2023 12:16:30 +0000 (12:16 +0000)]
job-spec: 2n-spr dpdk coverage

Change-Id: I56e62660053694e2b54467fed7c843ff5b201e1d
Signed-off-by: Tibor Frank <tifrank@cisco.com>
10 months agofeat(job_specs): Remove x710 70/38870/2
pmikus [Wed, 24 May 2023 06:06:30 +0000 (06:06 +0000)]
feat(job_specs): Remove x710

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ib0e3be90cf5a15b24568a8bf05722d22e46fdd31

10 months agofeat(ansible): DPDK 23.03 69/38869/1
pmikus [Wed, 24 May 2023 05:48:50 +0000 (05:48 +0000)]
feat(ansible): DPDK 23.03

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ie4d133a57f6972db22d8e7d4e46ddff483e23ff3

10 months agorefactor(trex): Startup configuration 42/38842/12
pmikus [Thu, 18 May 2023 05:59:39 +0000 (05:59 +0000)]
refactor(trex): Startup configuration

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I16defefa5edd01638bc382be4f5e8cbca4fe9453

10 months agoC-Dash: Add multiple telemetry panels 55/38855/10
Tibor Frank [Mon, 22 May 2023 06:01:54 +0000 (06:01 +0000)]
C-Dash: Add multiple telemetry panels

Change-Id: Ie2447905ba9f646248ff12cb1f83694f77640691
Signed-off-by: Tibor Frank <tifrank@cisco.com>
10 months agofix(dpdk): update meson setup command 40/38840/3
Juraj Linkeš [Wed, 17 May 2023 10:09:59 +0000 (12:09 +0200)]
fix(dpdk): update meson setup command

The current invocation is deprecated:
  WARNING: Running the setup command as `meson [options]` instead
  of `meson setup [options]` is ambiguous and deprecated.

Change-Id: Ieffa7f295e4ea7634ee5e8f77e373c5e9314b3cf
Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
10 months agofix(infra): arm tg dpdk version 29/38829/2
Juraj Linkeš [Mon, 15 May 2023 13:10:37 +0000 (15:10 +0200)]
fix(infra): arm tg dpdk version

T-rex on TGs uses a different version of DPDK than SUTs.

Change-Id: I0b6ca6fa304fb7559f9ada950497452d974be737
Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
10 months agofix(docs): Minor tweaks 68/38868/2
pmikus [Tue, 23 May 2023 13:07:00 +0000 (13:07 +0000)]
fix(docs): Minor tweaks

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I1537f3383d44ace8e705e5c744713d0863ca67d0

10 months agofeat(dpdk): Bump DPDK ver 67/38867/1
pmikus [Tue, 23 May 2023 13:01:14 +0000 (13:01 +0000)]
feat(dpdk): Bump DPDK ver

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I1d230b197581675539687f3ee87540537eaa2a07

10 months agofix(infra): 3na-spr follow up 64/38864/1
pmikus [Tue, 23 May 2023 07:38:23 +0000 (07:38 +0000)]
fix(infra): 3na-spr follow up

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I210a76e9cd9215deafc8cb5d448eb72e0ea3c451

10 months agofeat(interface): apply MTU for dpdk plugin ifaces 24/37824/43
Vratko Polak [Mon, 22 May 2023 08:14:09 +0000 (10:14 +0200)]
feat(interface): apply MTU for dpdk plugin ifaces

When changing MTU on a running VPP, the interface has to be down.

- Other plugins (rdma, avf, af_xdp) need vastly different logic,
  so support for them will be added later.
+ Mlx5-core does not need to set MTU on Linux interface.
+ MTU setting now does not happen at final setting path up,
  it happens in driver initialization layer instead
  E.g. AVF tests will not attempt to change MTU.
+ MTU edit removed from some non-hardware interfaces (including memif)
  e.g. bond interfaces. MTU on parent hw interface seems to be enough.
+ The non-jumbo MTU value used is 1800,
  so 1518B tests with additional encapsulation can still work.
+ When VPP MTU setting fails, the failure is now propagated.
  Previously, the failure was just logged and ignored,
  but now there is no reason to hide it.

Ticket: CSIT-1797

Change-Id: I3b853f1faf90001d544cbbb87b2affbb882ffba0
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
10 months agoUpdate VPP_STABLE_VER files 73/38673/2
Tibor Frank [Mon, 22 May 2023 05:18:12 +0000 (05:18 +0000)]
Update VPP_STABLE_VER files

Change-Id: I9e92f5214c157048ace201cfdb6af0e460bcfb9b
Signed-off-by: Tibor Frank <tifrank@cisco.com>
11 months agoC-Dash: Fix the unit in coverage tables 47/38847/1
Tibor Frank [Thu, 18 May 2023 10:24:37 +0000 (10:24 +0000)]
C-Dash: Fix the unit in coverage tables

Mbps --> Gbps

Change-Id: If4adc47d4636984c41bca14fb9bcc9121289445f
Signed-off-by: Tibor Frank <tifrank@cisco.com>
11 months agofix(ansible): Docker for Nomad 44/38844/1
pmikus [Thu, 18 May 2023 07:06:03 +0000 (07:06 +0000)]
fix(ansible): Docker for Nomad

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I58bb1742243a6689c31f77c555303c2baeb7e39d

11 months agoC-Dash: Fixes and improvments in telemetry 16/38816/13
Tibor Frank [Fri, 12 May 2023 07:34:57 +0000 (07:34 +0000)]
C-Dash: Fixes and improvments in telemetry

Change-Id: I052ee8631bbe884115851261bf96f5f9e062a517
Signed-off-by: Tibor Frank <tifrank@cisco.com>
11 months agofix(core): AVF unbind 35/38835/2
pmikus [Tue, 16 May 2023 11:39:13 +0000 (11:39 +0000)]
fix(core): AVF unbind

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ifa3964f290d75ebae094d1d46ce27b5d133c2158

11 months agofeat(dash): Add 3nX-spr frequency 34/38834/1
pmikus [Tue, 16 May 2023 11:32:53 +0000 (11:32 +0000)]
feat(dash): Add 3nX-spr frequency

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ib2658d2ac25ced0f68d2b5818b21d7f8f97b1a5c

11 months agofix(infra): Bootstrap scripts 33/38833/1
pmikus [Tue, 16 May 2023 11:00:11 +0000 (11:00 +0000)]
fix(infra): Bootstrap scripts

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I4e19d8fe38802652b25e6a1c577e816328cebd2d

11 months agofeat(infra): Add 3na-spr 32/38832/2
pmikus [Tue, 16 May 2023 07:08:16 +0000 (07:08 +0000)]
feat(infra): Add 3na-spr

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I057f94574d047e3622d1c32f5a622ad08ba3d799

11 months agofix(core): Container entropy 18/38818/3
pmikus [Fri, 12 May 2023 12:37:29 +0000 (12:37 +0000)]
fix(core): Container entropy

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I45760143ae0ccb0cc0edf0931ad47f5cf48ec968

11 months agoUpdate VPP_STABLE_VER files 69/38669/2
Tibor Frank [Mon, 15 May 2023 05:24:23 +0000 (05:24 +0000)]
Update VPP_STABLE_VER files

Change-Id: I542d7470ae98cbe3fac31d0592881473839b9dcd
Signed-off-by: Tibor Frank <tifrank@cisco.com>
11 months agofeat(infra): DPDK 23.03 arm update 25/38825/2
Juraj Linkeš [Sat, 13 May 2023 09:07:18 +0000 (11:07 +0200)]
feat(infra): DPDK 23.03 arm update

Update arm TGs to 23.03.
Update 2n-tx2 and 3n-alt testbed info after NIC move.
3n-tsh doesn't use any i40e NIC -> remove the matrix.

Change-Id: If61e95515eb2e21e9d50015901924e8e129b598a
Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
11 months agofix(qemu): increase vm boot time 32/38732/3
Juraj Linkeš [Wed, 26 Apr 2023 11:34:55 +0000 (13:34 +0200)]
fix(qemu): increase vm boot time

On 3n-tsh testbed, the vm sometimes times out when booting. Increasing
the timeout is harmless since it doesn't affect perfomance.

JIRA: CSIT-1877

Change-Id: I45eebdfba2fcd7c9a0be083ebb3515d37724e965
Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
11 months agodocs(infra): Firmware tracking 07/38807/1
pmikus [Thu, 11 May 2023 07:40:07 +0000 (07:40 +0000)]
docs(infra): Firmware tracking

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I2f45b022bed2e7a11d6566ec407063415c08ef8f

11 months agofeat(terraform): Upgrade to AL2023 06/38806/2
pmikus [Thu, 11 May 2023 06:01:05 +0000 (06:01 +0000)]
feat(terraform): Upgrade to AL2023

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ia0296cac3a3c51cfed028eaa74cbe9c992b8e2ed

11 months agofeat(dash): Upgrade to Python 3.11 05/38805/2
pmikus [Thu, 11 May 2023 05:59:12 +0000 (05:59 +0000)]
feat(dash): Upgrade to Python 3.11

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ic08ec2c2604a810c32bef1e8778fffdeeaaf8ea2

11 months agofix(ansible): DPDK compatibility matrix 00/38800/2
pmikus [Wed, 10 May 2023 14:38:51 +0000 (14:38 +0000)]
fix(ansible): DPDK compatibility matrix

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ic64def8fd155a9a337f23696c23a848e0046cea5

11 months agoC-Dash: Telemetry graphs 99/38799/3
Tibor Frank [Wed, 10 May 2023 13:59:06 +0000 (13:59 +0000)]
C-Dash: Telemetry graphs

Change-Id: I5eccce2f9e4b3ced1da8eed2cef64e8032100ab9
Signed-off-by: Tibor Frank <tifrank@cisco.com>
11 months agofeat(infra): DPDK 23.03 compatibility matrix 75/38775/2
pmikus [Wed, 10 May 2023 10:48:51 +0000 (10:48 +0000)]
feat(infra): DPDK 23.03 compatibility matrix

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I9e052894d3f38aef12e1a45e60ea23dc151c5a46

11 months agoC-Docs: Review, edit, add parts of the documentation 69/38769/3
Tibor Frank [Tue, 9 May 2023 10:41:38 +0000 (10:41 +0000)]
C-Docs: Review, edit, add parts of the documentation

Change-Id: I83c3d93c6d71f3d9d03078d405bea9ef29392089
Signed-off-by: Tibor Frank <tifrank@cisco.com>
11 months agofeat(infra): Remove system.d dependency 01/38601/38
pmikus [Fri, 31 Mar 2023 13:53:02 +0000 (13:53 +0000)]
feat(infra): Remove system.d dependency

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Icb7b6124dcba7bb57c18ceb91120284f6fe02c2e

11 months agofeat(job_specs): Add 3nab-spr 73/38773/1
pmikus [Tue, 9 May 2023 13:56:56 +0000 (13:56 +0000)]
feat(job_specs): Add 3nab-spr

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I2e0feccef5c5b15b035490dfaf521c8c9a1795f8

11 months agoC-Docs: New structure 55/38755/11
Tibor Frank [Wed, 3 May 2023 13:53:27 +0000 (13:53 +0000)]
C-Docs: New structure

Change-Id: I73d107f94b28b138f3350a9e1eedb0555583a9ca
Signed-off-by: Tibor Frank <tifrank@cisco.com>
11 months agoUpdate VPP_STABLE_VER files 67/38667/2
Tibor Frank [Tue, 9 May 2023 04:28:41 +0000 (04:28 +0000)]
Update VPP_STABLE_VER files

Change-Id: I82a2221e28caa10ec66a4d434c3a5189c358da9c
Signed-off-by: Tibor Frank <tifrank@cisco.com>
11 months agofix(core): Docker detection 67/38767/2
pmikus [Fri, 5 May 2023 09:26:12 +0000 (09:26 +0000)]
fix(core): Docker detection

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I976f96410b06b4f4d7500b03b1f5dd54486bbf42

11 months agofix(core): Unbind only when needed 63/38763/3
pmikus [Fri, 5 May 2023 08:37:28 +0000 (08:37 +0000)]
fix(core): Unbind only when needed

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I7b7b8744fac6669a696253acb94e7a5d713fdb5b

11 months agofix(core): Add vpp log path 65/38765/1
pmikus [Fri, 5 May 2023 09:04:34 +0000 (09:04 +0000)]
fix(core): Add vpp log path

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I76e47610a0caa8af8e48a295ce08e799280404be

11 months agofix(core): Move log files to default 64/38764/1
pmikus [Fri, 5 May 2023 08:51:26 +0000 (08:51 +0000)]
fix(core): Move log files to default

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ie88729cbd3916372cdbf5769974654edf066d5d7

11 months agofeat(core): Remove some dead code 62/38762/1
pmikus [Fri, 5 May 2023 08:30:10 +0000 (08:30 +0000)]
feat(core): Remove some dead code

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: If90e443a2d60459c6cbc6a85ba619e72242318a5

11 months agofix(core): Code styling 61/38761/1
pmikus [Fri, 5 May 2023 08:24:32 +0000 (08:24 +0000)]
fix(core): Code styling

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I76907c214cfae76c3d101ebd14813fd3a77504f8

11 months agofix(core): vppctl path 60/38760/1
pmikus [Fri, 5 May 2023 08:13:04 +0000 (08:13 +0000)]
fix(core): vppctl path

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ia6778b0c49906a686427b9c1ca7f5658e8993e63

11 months agofix(ansible): Docker image roles 59/38759/1
pmikus [Fri, 5 May 2023 08:10:29 +0000 (08:10 +0000)]
fix(ansible): Docker image roles

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ic9f9044ffd7ba1a8720fc029aaf2bd154eb043a5

11 months agoC-Docs: Set the version of hugo-book theme 52/38752/3
Tibor Frank [Tue, 2 May 2023 08:07:03 +0000 (08:07 +0000)]
C-Docs: Set the version of hugo-book theme

Change-Id: Ic8daac7dfc10788baa44d3cf8cf587296ec5070d
Signed-off-by: Tibor Frank <tifrank@cisco.com>
11 months agoUpdate VPP_STABLE_VER files 66/38666/2
Tibor Frank [Tue, 2 May 2023 06:12:41 +0000 (06:12 +0000)]
Update VPP_STABLE_VER files

Change-Id: I6bc12fccec73439610b2da315865c45d9920ab51
Signed-off-by: Tibor Frank <tifrank@cisco.com>
11 months agofeat(infra): 3na-spr 47/38747/1 oper-230502
pmikus [Fri, 28 Apr 2023 12:03:48 +0000 (12:03 +0000)]
feat(infra): 3na-spr

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ia109fbeec3670991ae99c9e3808c5a17e0e7b07b

11 months agofix(docs): Infra wiring of tb22 45/38745/1
pmikus [Fri, 28 Apr 2023 11:37:42 +0000 (11:37 +0000)]
fix(docs): Infra wiring of tb22

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I5ee86afe597e65223e4974c325f15c675df2da1b

11 months agofeat(ansible): Refactor docker-image roles 44/38744/1
pmikus [Fri, 28 Apr 2023 11:27:25 +0000 (11:27 +0000)]
feat(ansible): Refactor docker-image roles

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I6731e55b9643f46463c16f68e4986e3cb61f843f

11 months agoC-Dash: Fix comparison tables 34/38734/1
Tibor Frank [Wed, 26 Apr 2023 12:05:07 +0000 (12:05 +0000)]
C-Dash: Fix comparison tables

Change-Id: I60584ac6672f6dba04ae675a0e6bf1df0b4f783b
Signed-off-by: Tibor Frank <tifrank@cisco.com>
11 months agoC-Dash: Fix anomaly detection for the news 24/38724/2
Tibor Frank [Mon, 24 Apr 2023 14:29:08 +0000 (16:29 +0200)]
C-Dash: Fix anomaly detection for the news

Signed-off-by: Tibor Frank <tifrank@cisco.com>
Change-Id: I63e280e15e82583b65691be17a07208d0ab788ce

11 months agoC-Dash: Latency in coverage tables 20/38720/4
Tibor Frank [Mon, 24 Apr 2023 10:07:53 +0000 (12:07 +0200)]
C-Dash: Latency in coverage tables

- Display latency on demand

Signed-off-by: Tibor Frank <tifrank@cisco.com>
Change-Id: I5152d1f6c843f6b1ffac5818e1de76a701c7ccf1

11 months agoUpdate VPP_STABLE_VER files 64/38664/3
Tibor Frank [Mon, 24 Apr 2023 04:59:50 +0000 (04:59 +0000)]
Update VPP_STABLE_VER files

Change-Id: I421f9f42a2d64148faf2c9dc51baecfa40a111b3
Signed-off-by: Tibor Frank <tifrank@cisco.com>
11 months agojob-specs: Reduce iterative, add e810cq to coverage 12/38712/6
Tibor Frank [Thu, 20 Apr 2023 08:15:28 +0000 (10:15 +0200)]
job-specs: Reduce iterative, add e810cq to coverage

- iterative, daily MRR, weekly NDRPDR:
  - reduce* tests with xxv710 NIC for TBs:
    - 2n-icx - reduction from 480 to 303 tests
    - 3n-icx - reduction from 441 to 306 tests
    - 2n-clx - reduction from 504 to 444 tests
  - add tests tests with e810cq NIC for TB to ensure test coverage:
    - 2n-clx

- coverage:
  - add tests with e810cq NIC for TBs:
    - 2n-icx
    - 3n-icx
    - 2n-clx
  - reduce* tests with xxv710 NIC for TBs:
    - 2n-icx
    - 3n-icx
    - 2n-clx

* Used the same approach as it was used for x710 some time ago:
  - keep only base tests, prefer avf driver.

Signed-off-by: Tibor Frank <tifrank@cisco.com>
Change-Id: I63e950e1a5df18e5f7992aa7805b9b202ee75eb5

11 months agoAdd 100k tunnels ipsec policy mode with fastpath enabled test suite 25/38625/4
Yulong Pei [Wed, 12 Apr 2023 02:47:09 +0000 (02:47 +0000)]
Add 100k tunnels ipsec policy mode with fastpath enabled test suite

Signed-off-by: xinfeng zhao <xinfengx.zhao@intel.com>
Signed-off-by: Yulong Pei <yulong.pei@intel.com>
Change-Id: I3708253adf4c7421ff48eee6aefb735b39726359

11 months agofix(core): wrong to unbind driver if pci device in unbinded driver state 96/38696/2
Yulong Pei [Tue, 18 Apr 2023 03:05:37 +0000 (03:05 +0000)]
fix(core): wrong to unbind driver if pci device in unbinded driver state

Signed-off-by: Yulong Pei <yulong.pei@intel.com>
Change-Id: I7515bf952f8b6dbae180726da6a8bd4821c7af26

11 months agofix(infra): Add DSA into Kernel cmdline 07/38707/2
pmikus [Wed, 19 Apr 2023 14:23:58 +0000 (14:23 +0000)]
fix(infra): Add DSA into Kernel cmdline

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Iabe952efadbe8e586e6fcdf7627d84faec0eb9e0

11 months agoC-Dash: Add regexp filtering to comparison tables 05/38705/5
Tibor Frank [Wed, 19 Apr 2023 09:15:53 +0000 (11:15 +0200)]
C-Dash: Add regexp filtering to comparison tables

Signed-off-by: Tibor Frank <tifrank@cisco.com>
Change-Id: Ibe2b951859c9d775dd386dadd1bb141d74f53652

11 months agofix(jobspec): Use mlx5_core instead of avf for cx7 04/38704/1
Vratko Polak [Wed, 19 Apr 2023 08:46:13 +0000 (10:46 +0200)]
fix(jobspec): Use mlx5_core instead of avf for cx7

Mellanox cards do not support AVF driver,
and rdma_core driver had worse performace.

Change-Id: I619301b6ed4966f9a69274d514cca21511a2cc72
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
12 months agofix(api): bump messages to 23.02 usage 22/37722/10
Vratko Polak [Tue, 18 Apr 2023 12:57:11 +0000 (14:57 +0200)]
fix(api): bump messages to 23.02 usage

New features are generally not used in CSIT,
but some edits in code are needed to continue using defaults.

3 messages have newer versions:
* bridge_domain_add_del_v2
* ipsec_spd_entry_add_del_v2
* lb_add_del_vip_v2

Change-Id: Ibcc089ccbf933c019b5e7188c06ef229e68d39a8
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
12 months agoC-Dash: Add VPP Device coverage data 97/38697/2
Tibor Frank [Tue, 18 Apr 2023 10:04:49 +0000 (12:04 +0200)]
C-Dash: Add VPP Device coverage data

Signed-off-by: Tibor Frank <tifrank@cisco.com>
Change-Id: Ib083d287b8483c8b5b1be14ef3ce6b798eb04352

12 months agofix(etl): Coverage device pipeline 63/38663/2
Peter Mikus [Tue, 18 Apr 2023 07:11:31 +0000 (07:11 +0000)]
fix(etl): Coverage device pipeline

Change-Id: I806600468d0cec13168d484f22679575162cb672
Signed-off-by: pmikus <peter.mikus@protonmail.ch>
12 months agoC-Dash: Add coverage tables 26/38626/10
Tibor Frank [Wed, 12 Apr 2023 05:55:52 +0000 (07:55 +0200)]
C-Dash: Add coverage tables

Signed-off-by: Tibor Frank <tifrank@cisco.com>
Change-Id: I4f20936db02dc4b974134c676c368c479e931038

12 months agoUpdate VPP_STABLE_VER files 61/38661/2
Tibor Frank [Mon, 17 Apr 2023 07:17:27 +0000 (07:17 +0000)]
Update VPP_STABLE_VER files

Change-Id: Ib406af00f2601f0898ba7ca6fa8095562734015f
Signed-off-by: Tibor Frank <tifrank@cisco.com>
12 months agofeat(ansible): Intel DMA 27/38627/2 oper-230417
pmikus [Wed, 12 Apr 2023 07:46:55 +0000 (07:46 +0000)]
feat(ansible): Intel DMA

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I68a6965712c7e4b39f931fb4487142fa9c5088dc

12 months agoC-Dash: Add latency hdrh for iterative data 23/38623/3
Tibor Frank [Tue, 11 Apr 2023 10:56:56 +0000 (12:56 +0200)]
C-Dash: Add latency hdrh for iterative data

Signed-off-by: Tibor Frank <tifrank@cisco.com>
Change-Id: I4557c724d1d2b2eab355d03f0339c56660253360

12 months agoUpdate VPP_STABLE_VER files 58/38658/2
Tibor Frank [Tue, 11 Apr 2023 04:07:08 +0000 (04:07 +0000)]
Update VPP_STABLE_VER files

Change-Id: Ifcc6d1aaf1774cc6f249cad68e7303523e6063be
Signed-off-by: Tibor Frank <tifrank@cisco.com>
12 months agofix(c-dash): Maximal value of TIME_PERIOD for data 20/38620/1 oper-230411
Tibor Frank [Wed, 5 Apr 2023 13:04:41 +0000 (15:04 +0200)]
fix(c-dash): Maximal value of TIME_PERIOD for data

Signed-off-by: Tibor Frank <tifrank@cisco.com>
Change-Id: Ief6a0005c9097dd3013e3917ab9dfad8a446a6a5

12 months agofix(ansible): 2n-spr Turbo Boost 19/38619/2
pmikus [Wed, 5 Apr 2023 12:04:19 +0000 (12:04 +0000)]
fix(ansible): 2n-spr Turbo Boost

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ic2d260ebb5aa2e23ab20caaa4e0cdf80850c9f23

12 months agoC-Dash: Unify processing of Latency 17/38617/2
Tibor Frank [Wed, 5 Apr 2023 11:40:39 +0000 (13:40 +0200)]
C-Dash: Unify processing of Latency

Signed-off-by: Tibor Frank <tifrank@cisco.com>
Change-Id: I92ed4ebc1aa6e7b7731035fb923d6138c3c3def2

12 months agofix(telemetry): Enable MRR 18/38618/2
pmikus [Wed, 5 Apr 2023 11:55:10 +0000 (11:55 +0000)]
fix(telemetry): Enable MRR

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I11896900a73f97194a2935202343dc28756cbb28

12 months agoC-Dash: Comparisons - Hoststack 16/38616/1
Tibor Frank [Wed, 5 Apr 2023 08:42:45 +0000 (10:42 +0200)]
C-Dash: Comparisons - Hoststack

Signed-off-by: Tibor Frank <tifrank@cisco.com>
Change-Id: Iafe56678498bab49a278e510d69e758d61429e70

12 months agoC-Dash: Comparison tables - add latency 04/38604/1
Tibor Frank [Tue, 4 Apr 2023 13:20:00 +0000 (15:20 +0200)]
C-Dash: Comparison tables - add latency

Signed-off-by: Tibor Frank <tifrank@cisco.com>
Change-Id: Iddbaa5bdc87a52ed9075f3e07c2d4f732490603d

12 months agoC-Dash: Add 2n-spr to normalization 03/38603/1
Tibor Frank [Tue, 4 Apr 2023 10:07:12 +0000 (12:07 +0200)]
C-Dash: Add 2n-spr to normalization

Signed-off-by: Tibor Frank <tifrank@cisco.com>
Change-Id: Ic5ae69c545e2ef580e2a8928609fd27d54425570

12 months agoCDash: Add comparison tables 65/38465/31
Tibor Frank [Mon, 13 Mar 2023 09:13:57 +0000 (10:13 +0100)]
CDash: Add comparison tables

Signed-off-by: Tibor Frank <tifrank@cisco.com>
Change-Id: I8ce9e670721e1fdb1f297b3bfb8f0d8ffb916713

12 months agoEnable IPsec policy fast path inbound 63/38563/2
Yulong Pei [Tue, 28 Mar 2023 04:35:47 +0000 (04:35 +0000)]
Enable IPsec policy fast path inbound

This will greatly improve the performance of IPsec policy cases

Signed-off-by: xinfeng zhao <xinfengx.zhao@intel.com>
Signed-off-by: Yulong Pei <yulong.pei@intel.com>
Change-Id: Ib42b5650791be7fcc8649873eaf12616aeba5aec

12 months agoremove dpdk_nic_bind.py dependency 99/38599/3
Yulong Pei [Fri, 31 Mar 2023 09:50:17 +0000 (09:50 +0000)]
remove dpdk_nic_bind.py dependency

dpdk_nic_bind.py from <trex>/scripts/ is out of date, often bumped into
errors when using it to bind nic port, e.g.

/usr/bin/python3 dpdk_nic_bind.py --bind=vfio-pci 0000:ca:00.0
/opt/trex-core-3.00/scripts/dpdk_nic_bind.py:40: DeprecationWarning:
The distutils package is deprecated and slated for removal in Python 3.12.
Use setuptools or check PEP 632 for potential alternatives
  from distutils.util import strtobool
Error: bind failed for 0000:ca:00.0 - Cannot bind to driver vfio-pci

so remove dpdk_nic_bind.py dependency in csit.

Signed-off-by: Yulong Pei <yulong.pei@intel.com>
Change-Id: I5a3f641cd77d339aa7a213f410ce2efe7c322b8a
Signed-off-by: Yulong Pei <yulong.pei@intel.com>
12 months agoUpdate VPP_STABLE_VER files 78/38578/2
Tibor Frank [Mon, 3 Apr 2023 04:38:04 +0000 (04:38 +0000)]
Update VPP_STABLE_VER files

Change-Id: Ib44a4c8da9e1fc509c45416a061e8e2e82dc370a
Signed-off-by: Tibor Frank <tifrank@cisco.com>
12 months agofix(docs): Infra inventory 75/38575/2
pmikus [Thu, 30 Mar 2023 08:43:39 +0000 (08:43 +0000)]
fix(docs): Infra inventory

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I6ce59fdf78943c0df6e4f337a4227dcca633de0d

12 months agofix(infra): 2n-spr topology file 74/38574/1
pmikus [Thu, 30 Mar 2023 07:06:54 +0000 (07:06 +0000)]
fix(infra): 2n-spr topology file

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I35c1927d6483f9bbfa2f7478819848319161229f

12 months agofeat(job_specs): Update 2n-spr jobs 71/38571/1
pmikus [Wed, 29 Mar 2023 11:21:31 +0000 (11:21 +0000)]
feat(job_specs): Update 2n-spr jobs

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I97e2cbe12f14fc90a074cdfbf662b60b2b217647

12 months agofeat(job_specs): Update 2n-spr daily jobs 70/38570/1
pmikus [Wed, 29 Mar 2023 09:57:31 +0000 (09:57 +0000)]
feat(job_specs): Update 2n-spr daily jobs

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I09cb0934cfe57dcd5fcca1199cc974b5ecfbed8f

12 months agofeat(job_specs): Update 2n-spr daily jobs 69/38569/1
pmikus [Wed, 29 Mar 2023 08:17:02 +0000 (08:17 +0000)]
feat(job_specs): Update 2n-spr daily jobs

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ib1fd6c2e3bea90124b5ff91409e4dfeaed162cb6

12 months agofeat(core): Add 2n-spr topology 68/38568/1
pmikus [Tue, 28 Mar 2023 14:23:46 +0000 (14:23 +0000)]
feat(core): Add 2n-spr topology

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I3f7efcbfc82f683e7afc986d00fa71ae7413d93d

12 months agofix(core): Adopt to executor changes 60/38560/1
pmikus [Mon, 27 Mar 2023 11:32:02 +0000 (11:32 +0000)]
fix(core): Adopt to executor changes

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I206118daa0383e8a7d160aaf1c3dd53fc3ab9279

12 months agofeat(docs): Update Infrastructure 59/38559/1
pmikus [Mon, 27 Mar 2023 11:02:38 +0000 (11:02 +0000)]
feat(docs): Update Infrastructure

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I0044e305dfe3fbd76f0e0f0f261e107b0f134650

12 months agoUpdate VPP_STABLE_VER files 29/38429/2
Tibor Frank [Mon, 27 Mar 2023 04:52:52 +0000 (04:52 +0000)]
Update VPP_STABLE_VER files

Change-Id: I8bcf0ed08a6943fccb0e8cfcbb42c324e34872a7
Signed-off-by: Tibor Frank <tifrank@cisco.com>
12 months agoUpdate VPP_STABLE_VER files 26/38426/3
Tibor Frank [Mon, 20 Mar 2023 06:04:27 +0000 (06:04 +0000)]
Update VPP_STABLE_VER files

Change-Id: I976435c86e31958daf092a22572c6ce8699dfd35
Signed-off-by: Tibor Frank <tifrank@cisco.com>
12 months agofix(bootstrap): EB deploy 49/38549/3
pmikus [Fri, 24 Mar 2023 09:00:53 +0000 (09:00 +0000)]
fix(bootstrap): EB deploy

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I44fd0fd94ba91758cfa37b11cba44955a0b24f72

12 months agoReport: Fix bug in 3n-alt comparison tables 48/38548/1
Tibor Frank [Fri, 24 Mar 2023 08:47:18 +0000 (09:47 +0100)]
Report: Fix bug in 3n-alt comparison tables

Signed-off-by: Tibor Frank <tifrank@cisco.com>
Change-Id: Ie80b69ba97e5434b72b1cf42aaa2f787dab870c6

12 months agofeat(docs): Add missing infra sections 43/38543/4
pmikus [Thu, 23 Mar 2023 12:25:34 +0000 (12:25 +0000)]
feat(docs): Add missing infra sections

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I46008fa035418fb4bc0445b43403847a1e6a288e

12 months agofeat(terraform): Update EB retention policy 41/38541/1
pmikus [Thu, 23 Mar 2023 10:01:49 +0000 (10:01 +0000)]
feat(terraform): Update EB retention policy

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ic8193482f1b2108cbbab057a22503b6ea1db4dcd

12 months agofix(core): Arch detection 32/38532/1
pmikus [Tue, 21 Mar 2023 12:14:18 +0000 (12:14 +0000)]
fix(core): Arch detection

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ife3aed308cac696876316e4ad17f17e7993f96d0

12 months agofeat(core): Fix arch detection 31/38531/1
pmikus [Tue, 21 Mar 2023 11:58:54 +0000 (11:58 +0000)]
feat(core): Fix arch detection

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I4dcb0034b8f914b7863ac8ddede4d644d64c2d47

12 months agofeat(docs): Main repo README 30/38530/1
pmikus [Tue, 21 Mar 2023 09:34:01 +0000 (09:34 +0000)]
feat(docs): Main repo README

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I784999251585cf81befc302c75cbfa290f4eba0d

12 months agofeat(bootstrap): CDash CI 12/38512/3
pmikus [Fri, 17 Mar 2023 13:24:42 +0000 (13:24 +0000)]
feat(bootstrap): CDash CI

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Ia9f5b1c9036b9f09c4d9bb041a41e9b49d2ead7f

13 months agofeat(docs): Fix images and ToC 03/38503/1
pmikus [Thu, 16 Mar 2023 12:35:47 +0000 (12:35 +0000)]
feat(docs): Fix images and ToC

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I4f2327c9dbbc3b2d652c9882c29573cfe4469c63

13 months agofeat(docs): Unify path in cdash 01/38501/2
pmikus [Thu, 16 Mar 2023 08:33:29 +0000 (08:33 +0000)]
feat(docs): Unify path in cdash

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I1b26e0031743e49de79529e0939c9e833f0d50c1

13 months agofeat(docs): Add Methodology 95/38495/1
pmikus [Wed, 15 Mar 2023 15:15:48 +0000 (15:15 +0000)]
feat(docs): Add Methodology

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I5b2e4c14cc258d821b630d2e54b23a8468820764

13 months agofeat(docs): Code cleanup 92/38492/1
pmikus [Wed, 15 Mar 2023 12:38:13 +0000 (12:38 +0000)]
feat(docs): Code cleanup

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I312b7107b74229bbe318851c41e0de1747ffd83c

13 months agofeat(docs): Hugo 55/38455/12
pmikus [Thu, 9 Mar 2023 13:32:33 +0000 (13:32 +0000)]
feat(docs): Hugo

Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: Id8b43ef1f31f39b19a0629c52581514fda278f3b