* |WARNING| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD
[not found] <a0c3db977b5fe166438fe261874bbf43fbd4c76d.1669991772.git.sthotton@marvell.com>
@ 2022-12-02 14:47 ` checkpatch
2022-12-02 16:38 ` |SUCCESS| " 0-day Robot
` (2 subsequent siblings)
3 siblings, 0 replies; 19+ messages in thread
From: checkpatch @ 2022-12-02 14:47 UTC (permalink / raw)
To: test-report; +Cc: Shijith Thotton
Test-Label: checkpatch
Test-Status: WARNING
http://dpdk.org/patch/120438
_coding style issues_
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#144: FILE: drivers/common/cnxk/roc_dev_priv.h:92:
+ void *roc_tim;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#235: FILE: drivers/common/cnxk/roc_sso.c:705:
+roc_sso_rsrc_init(struct roc_sso *roc_sso, uint8_t nb_hws, uint16_t nb_hwgrp, uint16_t nb_tim_lfs)
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#239: FILE: drivers/common/cnxk/roc_sso.c:709:
+ uint16_t sso_vec_cnt, free_tim_lfs;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#250: FILE: drivers/common/cnxk/roc_sso.c:756:
+ if (sso->dev.roc_tim) {
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#251: FILE: drivers/common/cnxk/roc_sso.c:757:
+ nb_tim_lfs = ((struct roc_tim *)sso->dev.roc_tim)->nb_lfs;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#251: FILE: drivers/common/cnxk/roc_sso.c:757:
+ nb_tim_lfs = ((struct roc_tim *)sso->dev.roc_tim)->nb_lfs;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#251: FILE: drivers/common/cnxk/roc_sso.c:757:
+ nb_tim_lfs = ((struct roc_tim *)sso->dev.roc_tim)->nb_lfs;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#253: FILE: drivers/common/cnxk/roc_sso.c:759:
+ rc = tim_free_lf_count_get(&sso->dev, &free_tim_lfs);
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#253: FILE: drivers/common/cnxk/roc_sso.c:759:
+ rc = tim_free_lf_count_get(&sso->dev, &free_tim_lfs);
WARNING:TYPO_SPELLING: 'TIM' may be misspelled - perhaps 'TIME'?
#255: FILE: drivers/common/cnxk/roc_sso.c:761:
+ plt_err("Failed to get TIM resource count");
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#259: FILE: drivers/common/cnxk/roc_sso.c:765:
+ nb_tim_lfs = nb_tim_lfs ? PLT_MIN(nb_tim_lfs, free_tim_lfs) : free_tim_lfs;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#259: FILE: drivers/common/cnxk/roc_sso.c:765:
+ nb_tim_lfs = nb_tim_lfs ? PLT_MIN(nb_tim_lfs, free_tim_lfs) : free_tim_lfs;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#259: FILE: drivers/common/cnxk/roc_sso.c:765:
+ nb_tim_lfs = nb_tim_lfs ? PLT_MIN(nb_tim_lfs, free_tim_lfs) : free_tim_lfs;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#259: FILE: drivers/common/cnxk/roc_sso.c:765:
+ nb_tim_lfs = nb_tim_lfs ? PLT_MIN(nb_tim_lfs, free_tim_lfs) : free_tim_lfs;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#259: FILE: drivers/common/cnxk/roc_sso.c:765:
+ nb_tim_lfs = nb_tim_lfs ? PLT_MIN(nb_tim_lfs, free_tim_lfs) : free_tim_lfs;
WARNING:TYPO_SPELLING: 'TIM' may be misspelled - perhaps 'TIME'?
#262: FILE: drivers/common/cnxk/roc_sso.c:768:
+ /* 2 error interrupt per TIM LF */
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#263: FILE: drivers/common/cnxk/roc_sso.c:769:
+ sso_vec_cnt += 2 * nb_tim_lfs;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#298: FILE: drivers/common/cnxk/roc_sso.h:88:
+ uint16_t nb_tim_lfs);
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#311: FILE: drivers/common/cnxk/roc_tim.c:304:
+tim_free_lf_count_get(struct dev *dev, uint16_t *nb_lfs)
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#323: FILE: drivers/common/cnxk/roc_tim.c:316:
+ *nb_lfs = rsrc_cnt->tim;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#344: FILE: drivers/common/cnxk/roc_tim.c:336:
+ dev->roc_tim = roc_tim;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#344: FILE: drivers/common/cnxk/roc_tim.c:336:
+ dev->roc_tim = roc_tim;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#351: FILE: drivers/common/cnxk/roc_tim.c:341:
+ rc = tim_free_lf_count_get(dev, &nb_free_lfs);
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#354: FILE: drivers/common/cnxk/roc_tim.c:343:
+ plt_tim_dbg("Failed to get TIM resource count");
WARNING:TYPO_SPELLING: 'TIM' may be misspelled - perhaps 'TIME'?
#354: FILE: drivers/common/cnxk/roc_tim.c:343:
+ plt_tim_dbg("Failed to get TIM resource count");
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#363: FILE: drivers/common/cnxk/roc_tim.c:349:
+ plt_tim_dbg("Requested LFs : %d Available LFs : %d", nb_lfs, nb_free_lfs);
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#380: FILE: drivers/common/cnxk/roc_tim.c:384:
+ roc_tim->nb_lfs = nb_lfs;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#392: FILE: drivers/common/cnxk/roc_tim_priv.h:22:
+int tim_free_lf_count_get(struct dev *dev, uint16_t *nb_lfs);
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#405: FILE: drivers/event/cnxk/cn10k_eventdev.c:255:
+ struct cnxk_tim_evdev *tim_dev = cnxk_tim_priv_get();
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#405: FILE: drivers/event/cnxk/cn10k_eventdev.c:255:
+ struct cnxk_tim_evdev *tim_dev = cnxk_tim_priv_get();
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#405: FILE: drivers/event/cnxk/cn10k_eventdev.c:255:
+ struct cnxk_tim_evdev *tim_dev = cnxk_tim_priv_get();
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#407: FILE: drivers/event/cnxk/cn10k_eventdev.c:257:
+ uint16_t nb_tim_lfs;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#410: FILE: drivers/event/cnxk/cn10k_eventdev.c:259:
+ nb_tim_lfs = tim_dev ? tim_dev->nb_rings : 0;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#410: FILE: drivers/event/cnxk/cn10k_eventdev.c:259:
+ nb_tim_lfs = tim_dev ? tim_dev->nb_rings : 0;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#410: FILE: drivers/event/cnxk/cn10k_eventdev.c:259:
+ nb_tim_lfs = tim_dev ? tim_dev->nb_rings : 0;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#411: FILE: drivers/event/cnxk/cn10k_eventdev.c:260:
+ return roc_sso_rsrc_init(&dev->sso, hws, hwgrp, nb_tim_lfs);
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#423: FILE: drivers/event/cnxk/cn9k_eventdev.c:260:
+ struct cnxk_tim_evdev *tim_dev = cnxk_tim_priv_get();
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#423: FILE: drivers/event/cnxk/cn9k_eventdev.c:260:
+ struct cnxk_tim_evdev *tim_dev = cnxk_tim_priv_get();
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#423: FILE: drivers/event/cnxk/cn9k_eventdev.c:260:
+ struct cnxk_tim_evdev *tim_dev = cnxk_tim_priv_get();
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#425: FILE: drivers/event/cnxk/cn9k_eventdev.c:262:
+ uint16_t nb_tim_lfs;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#431: FILE: drivers/event/cnxk/cn9k_eventdev.c:267:
+ nb_tim_lfs = tim_dev ? tim_dev->nb_rings : 0;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#431: FILE: drivers/event/cnxk/cn9k_eventdev.c:267:
+ nb_tim_lfs = tim_dev ? tim_dev->nb_rings : 0;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#431: FILE: drivers/event/cnxk/cn9k_eventdev.c:267:
+ nb_tim_lfs = tim_dev ? tim_dev->nb_rings : 0;
WARNING:TYPO_SPELLING: 'tim' may be misspelled - perhaps 'time'?
#432: FILE: drivers/event/cnxk/cn9k_eventdev.c:268:
+ return roc_sso_rsrc_init(&dev->sso, hws, hwgrp, nb_tim_lfs);
total: 0 errors, 44 warnings, 290 lines checked
^ permalink raw reply [flat|nested] 19+ messages in thread
* |SUCCESS| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD
[not found] <a0c3db977b5fe166438fe261874bbf43fbd4c76d.1669991772.git.sthotton@marvell.com>
2022-12-02 14:47 ` |WARNING| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD checkpatch
@ 2022-12-02 16:38 ` 0-day Robot
2022-12-02 17:20 ` qemudev
2022-12-02 17:24 ` qemudev
3 siblings, 0 replies; 19+ messages in thread
From: 0-day Robot @ 2022-12-02 16:38 UTC (permalink / raw)
To: test-report; +Cc: robot
From: robot@bytheb.org
Test-Label: github-robot: build
Test-Status: SUCCESS
http://patchwork.dpdk.org/patch/120438/
_github build: passed_
Build URL: https://github.com/ovsrobot/dpdk/actions/runs/3602756337
^ permalink raw reply [flat|nested] 19+ messages in thread
* |SUCCESS| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD
[not found] <a0c3db977b5fe166438fe261874bbf43fbd4c76d.1669991772.git.sthotton@marvell.com>
2022-12-02 14:47 ` |WARNING| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD checkpatch
2022-12-02 16:38 ` |SUCCESS| " 0-day Robot
@ 2022-12-02 17:20 ` qemudev
2022-12-02 17:24 ` qemudev
3 siblings, 0 replies; 19+ messages in thread
From: qemudev @ 2022-12-02 17:20 UTC (permalink / raw)
To: test-report
Test-Label: loongarch-compilation
Test-Status: SUCCESS
http://dpdk.org/patch/120438
_Compilation OK_
Submitter: Shijith Thotton <sthotton@marvell.com>
Date: Fri, 2 Dec 2022 20:16:45 +0530
DPDK git baseline: Repo:dpdk
Branch: main
CommitID: 7b1934d01a1a8afa1391f361088d8285d100e62a
120438 --> meson & ninja build successfully
Test environment and result as below:
+---------------------+----------------+
| Environment | compilation |
+---------------------+----------------+
| Loongnix-Server 8.3 | PASS |
+---------------------+----------------+
Loongnix-Server 8.3
Kernel: 4.19.190+
Compiler: gcc 8.3
^ permalink raw reply [flat|nested] 19+ messages in thread
* |SUCCESS| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD
[not found] <a0c3db977b5fe166438fe261874bbf43fbd4c76d.1669991772.git.sthotton@marvell.com>
` (2 preceding siblings ...)
2022-12-02 17:20 ` qemudev
@ 2022-12-02 17:24 ` qemudev
3 siblings, 0 replies; 19+ messages in thread
From: qemudev @ 2022-12-02 17:24 UTC (permalink / raw)
To: test-report
Test-Label: loongarch-unit-testing
Test-Status: SUCCESS
http://dpdk.org/patch/120438
_Unit Testing PASS_
Submitter: Shijith Thotton <sthotton@marvell.com>
Date: Fri, 2 Dec 2022 20:16:45 +0530
DPDK git baseline: Repo:dpdk
Branch: main
CommitID: 7b1934d01a1a8afa1391f361088d8285d100e62a
120438 --> testing pass
Test environment and result as below:
+---------------------+----------------+
| Environment | dpdk_unit_test |
+---------------------+----------------+
| Loongnix-Server 8.3 | PASS |
+---------------------+----------------+
Loongnix-Server 8.3
Kernel: 4.19.190+
Compiler: gcc 8.3
Test result details:
1/103 DPDK:fast-tests / acl_autotest OK 2.83s
2/103 DPDK:fast-tests / atomic_autotest OK 7.33s
3/103 DPDK:fast-tests / bitmap_autotest OK 0.07s
4/103 DPDK:fast-tests / bpf_autotest OK 0.07s
5/103 DPDK:fast-tests / bpf_convert_autotest OK 0.07s
6/103 DPDK:fast-tests / bitops_autotest OK 0.07s
7/103 DPDK:fast-tests / byteorder_autotest OK 0.07s
8/103 DPDK:fast-tests / cksum_autotest OK 0.07s
9/103 DPDK:fast-tests / cmdline_autotest OK 0.07s
10/103 DPDK:fast-tests / common_autotest OK 0.92s
11/103 DPDK:fast-tests / cpuflags_autotest OK 0.07s
12/103 DPDK:fast-tests / debug_autotest OK 0.67s
13/103 DPDK:fast-tests / devargs_autotest OK 0.07s
14/103 DPDK:fast-tests / eal_flags_c_opt_autotest OK 0.57s
15/103 DPDK:fast-tests / eal_flags_main_opt_autotest OK 0.17s
16/103 DPDK:fast-tests / eal_flags_n_opt_autotest OK 0.17s
17/103 DPDK:fast-tests / eal_flags_hpet_autotest OK 0.12s
18/103 DPDK:fast-tests / eal_flags_no_huge_autotest OK 0.17s
19/103 DPDK:fast-tests / eal_flags_a_opt_autotest OK 0.22s
20/103 DPDK:fast-tests / eal_flags_b_opt_autotest OK 0.17s
21/103 DPDK:fast-tests / eal_flags_vdev_opt_autotest OK 0.17s
22/103 DPDK:fast-tests / eal_flags_r_opt_autotest OK 0.17s
23/103 DPDK:fast-tests / eal_flags_mem_autotest OK 0.52s
24/103 DPDK:fast-tests / eal_flags_file_prefix_autotest OK 22.06s
25/103 DPDK:fast-tests / eal_flags_misc_autotest OK 0.72s
26/103 DPDK:fast-tests / eal_fs_autotest OK 0.07s
27/103 DPDK:fast-tests / errno_autotest OK 0.07s
28/103 DPDK:fast-tests / ethdev_link_status OK 0.07s
29/103 DPDK:fast-tests / event_ring_autotest OK 0.07s
30/103 DPDK:fast-tests / fib_autotest OK 0.87s
31/103 DPDK:fast-tests / fib6_autotest OK 0.87s
32/103 DPDK:fast-tests / func_reentrancy_autotest OK 2.33s
33/103 DPDK:fast-tests / hash_autotest OK 1.02s
34/103 DPDK:fast-tests / interrupt_autotest OK 1.37s
35/103 DPDK:fast-tests / ipfrag_autotest OK 0.07s
36/103 DPDK:fast-tests / lcores_autotest OK 1.02s
37/103 DPDK:fast-tests / logs_autotest OK 0.07s
38/103 DPDK:fast-tests / lpm_autotest OK 5.95s
39/103 DPDK:fast-tests / lpm6_autotest OK 8.77s
40/103 DPDK:fast-tests / malloc_autotest OK 64.28s
41/103 DPDK:fast-tests / mbuf_autotest OK 7.48s
42/103 DPDK:fast-tests / mcslock_autotest OK 3.57s
43/103 DPDK:fast-tests / memcpy_autotest OK 6.68s
44/103 DPDK:fast-tests / memory_autotest OK 0.07s
45/103 DPDK:fast-tests / mempool_autotest OK 0.42s
46/103 DPDK:fast-tests / memzone_autotest OK 0.17s
47/103 DPDK:fast-tests / meter_autotest OK 0.07s
48/103 DPDK:fast-tests / multiprocess_autotest OK 0.17s
49/103 DPDK:fast-tests / per_lcore_autotest OK 0.17s
50/103 DPDK:fast-tests / pflock_autotest OK 0.87s
51/103 DPDK:fast-tests / prefetch_autotest OK 0.07s
52/103 DPDK:fast-tests / rcu_qsbr_autotest OK 0.57s
53/103 DPDK:fast-tests / pie_autotest OK 0.07s
54/103 DPDK:fast-tests / rib_autotest OK 10.30s
55/103 DPDK:fast-tests / rib6_autotest OK 10.30s
56/103 DPDK:fast-tests / ring_autotest OK 0.12s
57/103 DPDK:fast-tests / rwlock_test1_autotest OK 0.82s
58/103 DPDK:fast-tests / rwlock_rda_autotest OK 5.07s
59/103 DPDK:fast-tests / rwlock_rds_wrm_autotest OK 5.08s
60/103 DPDK:fast-tests / rwlock_rde_wro_autotest OK 5.08s
61/103 DPDK:fast-tests / sched_autotest OK 0.07s
62/103 DPDK:fast-tests / security_autotest OK 0.07s
63/103 DPDK:fast-tests / seqlock_autotest OK 2.07s
64/103 DPDK:fast-tests / spinlock_autotest OK 0.17s
65/103 DPDK:fast-tests / stack_autotest OK 0.87s
66/103 DPDK:fast-tests / stack_lf_autotest SKIP 0.07s exit status 77
67/103 DPDK:fast-tests / string_autotest OK 0.07s
68/103 DPDK:fast-tests / tailq_autotest OK 0.07s
69/103 DPDK:fast-tests / ticketlock_autotest OK 0.22s
70/103 DPDK:fast-tests / timer_autotest OK 3.87s
71/103 DPDK:fast-tests / user_delay_us OK 0.07s
72/103 DPDK:fast-tests / version_autotest OK 0.07s
73/103 DPDK:fast-tests / crc_autotest OK 0.07s
74/103 DPDK:fast-tests / distributor_autotest OK 1.22s
75/103 DPDK:fast-tests / eventdev_common_autotest OK 0.07s
76/103 DPDK:fast-tests / fbarray_autotest OK 0.07s
77/103 DPDK:fast-tests / hash_readwrite_func_autotest OK 6.38s
78/103 DPDK:fast-tests / ipsec_autotest SKIP 0.07s exit status 77
79/103 DPDK:fast-tests / kni_autotest SKIP 0.07s exit status 77
80/103 DPDK:fast-tests / kvargs_autotest OK 0.07s
81/103 DPDK:fast-tests / member_autotest OK 1.32s
82/103 DPDK:fast-tests / power_cpufreq_autotest SKIP 0.07s exit status 77
83/103 DPDK:fast-tests / power_autotest OK 0.07s
84/103 DPDK:fast-tests / power_kvm_vm_autotest SKIP 0.07s exit status 77
85/103 DPDK:fast-tests / power_intel_uncore_autotest SKIP 0.07s exit status 77
86/103 DPDK:fast-tests / reorder_autotest OK 0.12s
87/103 DPDK:fast-tests / service_autotest OK 3.57s
88/103 DPDK:fast-tests / thash_autotest OK 0.07s
89/103 DPDK:fast-tests / threads_autotest OK 0.22s
90/103 DPDK:fast-tests / trace_autotest OK 0.07s
91/103 DPDK:fast-tests / trace_autotest_with_traces OK 0.12s
92/103 DPDK:fast-tests / metrics_autotest OK 0.07s
93/103 DPDK:fast-tests / telemetry_json_autotest OK 0.07s
94/103 DPDK:fast-tests / telemetry_data_autotest OK 0.07s
95/103 DPDK:fast-tests / table_autotest OK 10.11s
96/103 DPDK:fast-tests / ring_pmd_autotest OK 0.07s
97/103 DPDK:fast-tests / event_eth_tx_adapter_autotest OK 1.47s
98/103 DPDK:fast-tests / bitratestats_autotest OK 0.07s
99/103 DPDK:fast-tests / latencystats_autotest OK 0.07s
100/103 DPDK:fast-tests / pdump_autotest OK 5.17s
101/103 DPDK:fast-tests / vdev_autotest OK 0.07s
102/103 DPDK:fast-tests / compressdev_autotest SKIP 0.07s exit status 77
103/103 DPDK:fast-tests / telemetry_all OK 14.44s
Ok: 96
Expected Fail: 0
Fail: 0
Unexpected Pass: 0
Skipped: 7
Timeout: 0
^ permalink raw reply [flat|nested] 19+ messages in thread
* |SUCCESS| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD
@ 2022-12-02 19:31 dpdklab
0 siblings, 0 replies; 19+ messages in thread
From: dpdklab @ 2022-12-02 19:31 UTC (permalink / raw)
To: Test Report; +Cc: dpdk-test-reports, David Marchand, Thomas Monjalon
[-- Attachment #1: Type: text/plain, Size: 788 bytes --]
Test-Label: iol-intel-Functional
Test-Status: SUCCESS
http://dpdk.org/patch/120438
_Functional Testing PASS_
Submitter: Shijith Thotton <sthotton@marvell.com>
Date: Friday, December 02 2022 14:46:45
DPDK git baseline: Repo:dpdk
Branch: master
CommitID:7b1934d01a1a8afa1391f361088d8285d100e62a
120438 --> functional testing pass
Test environment and result as below:
Ubuntu 20.04
Kernel: 4.15.0-generic
Compiler: gcc 7.4
NIC: Intel Corporation Ethernet Converged Network Adapter 82599ES 10000 Mbps
Target: x86_64-native-linuxapp-gcc
Fail/Total: 0/2
To view detailed results, visit:
https://lab.dpdk.org/results/dashboard/patchsets/24622/
UNH-IOL DPDK Community Lab
To manage your email subscriptions, visit:
https://lab.dpdk.org/results/dashboard/preferences/subscriptions/
^ permalink raw reply [flat|nested] 19+ messages in thread
* |SUCCESS| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD
@ 2022-12-02 19:34 dpdklab
0 siblings, 0 replies; 19+ messages in thread
From: dpdklab @ 2022-12-02 19:34 UTC (permalink / raw)
To: Test Report; +Cc: dpdk-test-reports, David Marchand, Thomas Monjalon
[-- Attachment #1: Type: text/plain, Size: 987 bytes --]
Test-Label: iol-intel-Functional
Test-Status: SUCCESS
http://dpdk.org/patch/120438
_Functional Testing PASS_
Submitter: Shijith Thotton <sthotton@marvell.com>
Date: Friday, December 02 2022 14:46:45
DPDK git baseline: Repo:dpdk
Branch: master
CommitID:7b1934d01a1a8afa1391f361088d8285d100e62a
120438 --> functional testing pass
Test environment and result as below:
Ubuntu 20.04
Kernel: 4.15.0-generic
Compiler: gcc 7.4
NIC: Intel Corporation Ethernet Converged Network Adapter 82599ES 10000 Mbps
Target: x86_64-native-linuxapp-gcc
Fail/Total: 0/2
Ubuntu 20.04 ARM
Kernel: 4.15.0-132-generic
Compiler: gcc 7.5
NIC: Arm Intel Corporation Ethernet Converged Network Adapter XL710-QDA2 40000 Mbps
Target: x86_64-native-linuxapp-gcc
Fail/Total: 0/2
To view detailed results, visit:
https://lab.dpdk.org/results/dashboard/patchsets/24622/
UNH-IOL DPDK Community Lab
To manage your email subscriptions, visit:
https://lab.dpdk.org/results/dashboard/preferences/subscriptions/
^ permalink raw reply [flat|nested] 19+ messages in thread
* |SUCCESS| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD
@ 2022-12-02 19:53 dpdklab
0 siblings, 0 replies; 19+ messages in thread
From: dpdklab @ 2022-12-02 19:53 UTC (permalink / raw)
To: Test Report; +Cc: dpdk-test-reports, David Marchand, Thomas Monjalon
[-- Attachment #1: Type: text/plain, Size: 2116 bytes --]
Test-Label: iol-intel-Performance
Test-Status: SUCCESS
http://dpdk.org/patch/120438
_Performance Testing PASS_
Submitter: Shijith Thotton <sthotton@marvell.com>
Date: Friday, December 02 2022 14:46:45
DPDK git baseline: Repo:dpdk
Branch: master
CommitID:7b1934d01a1a8afa1391f361088d8285d100e62a
120438 --> performance testing pass
Test environment and result as below:
Ubuntu 20.04
Kernel: 4.15.0-generic
Compiler: gcc 7.4
NIC: Intel Corporation Ethernet Converged Network Adapter 82599ES 10000 Mbps
Target: x86_64-native-linuxapp-gcc
Fail/Total: 0/6
Detail performance results:
+----------+-------------+---------+------------+------------------------------+
| num_cpus | num_threads | txd/rxd | frame_size | throughput difference from |
| | | | | expected |
+==========+=============+=========+============+==============================+
| 1 | 2 | 128 | 64 | 0.0% |
+----------+-------------+---------+------------+------------------------------+
| 1 | 2 | 512 | 64 | 0.1% |
+----------+-------------+---------+------------+------------------------------+
| 1 | 2 | 2048 | 64 | 0.1% |
+----------+-------------+---------+------------+------------------------------+
| 1 | 1 | 128 | 64 | 0.0% |
+----------+-------------+---------+------------+------------------------------+
| 1 | 1 | 512 | 64 | 0.1% |
+----------+-------------+---------+------------+------------------------------+
| 1 | 1 | 2048 | 64 | 0.3% |
+----------+-------------+---------+------------+------------------------------+
To view detailed results, visit:
https://lab.dpdk.org/results/dashboard/patchsets/24622/
UNH-IOL DPDK Community Lab
To manage your email subscriptions, visit:
https://lab.dpdk.org/results/dashboard/preferences/subscriptions/
^ permalink raw reply [flat|nested] 19+ messages in thread
* |SUCCESS| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD
@ 2022-12-02 20:26 dpdklab
0 siblings, 0 replies; 19+ messages in thread
From: dpdklab @ 2022-12-02 20:26 UTC (permalink / raw)
To: Test Report; +Cc: dpdk-test-reports, David Marchand, Thomas Monjalon
[-- Attachment #1: Type: text/plain, Size: 1447 bytes --]
Test-Label: iol-aarch64-unit-testing
Test-Status: SUCCESS
http://dpdk.org/patch/120438
_Testing PASS_
Submitter: Shijith Thotton <sthotton@marvell.com>
Date: Friday, December 02 2022 14:46:45
DPDK git baseline: Repo:dpdk
Branch: master
CommitID:7b1934d01a1a8afa1391f361088d8285d100e62a
120438 --> testing pass
Test environment and result as below:
+-------------------------------+--------------+----------------+
| Environment | lpm_autotest | dpdk_unit_test |
+===============================+==============+================+
| Ubuntu 20.04 ARM SVE | PASS | SKIPPED |
+-------------------------------+--------------+----------------+
| Ubuntu 20.04 ARM Clang Native | SKIPPED | PASS |
+-------------------------------+--------------+----------------+
| Ubuntu 20.04 ARM GCC Native | SKIPPED | PASS |
+-------------------------------+--------------+----------------+
Ubuntu 20.04 ARM SVE
Kernel: 5.4.0-80-generic
Compiler: gcc 10.3.0 (Ubuntu 10.3.0-1ubuntu1~20.04)
Ubuntu 20.04 ARM Clang Native
Kernel: 5.4.0-53-generic
Compiler: clang 10.0.0-4ubuntu1
Ubuntu 20.04 ARM GCC Native
Kernel: 5.4.0-53-generic
Compiler: gcc 9.3
To view detailed results, visit:
https://lab.dpdk.org/results/dashboard/patchsets/24622/
UNH-IOL DPDK Community Lab
To manage your email subscriptions, visit:
https://lab.dpdk.org/results/dashboard/preferences/subscriptions/
^ permalink raw reply [flat|nested] 19+ messages in thread
* |SUCCESS| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD
@ 2022-12-02 21:07 dpdklab
0 siblings, 0 replies; 19+ messages in thread
From: dpdklab @ 2022-12-02 21:07 UTC (permalink / raw)
To: Test Report; +Cc: dpdklab, David Marchand, Thomas Monjalon
[-- Attachment #1: Type: text/plain, Size: 2140 bytes --]
Test-Label: iol-aarch64-compile-testing
Test-Status: SUCCESS
http://dpdk.org/patch/120438
_Testing PASS_
Submitter: Shijith Thotton <sthotton@marvell.com>
Date: Friday, December 02 2022 14:46:45
DPDK git baseline: Repo:dpdk
Branch: master
CommitID:7b1934d01a1a8afa1391f361088d8285d100e62a
120438 --> testing pass
Test environment and result as below:
+----------------------------------------+--------------------+
| Environment | dpdk_meson_compile |
+========================================+====================+
| Ubuntu 20.04 ARM GCC Native | PASS |
+----------------------------------------+--------------------+
| Ubuntu 20.04 ARM Clang Native | PASS |
+----------------------------------------+--------------------+
| Ubuntu 20.04 ARM Clang Cross Compile | PASS |
+----------------------------------------+--------------------+
| Ubuntu 20.04 ARM GCC Cross Compile | PASS |
+----------------------------------------+--------------------+
| Ubuntu 20.04 aarch32 GCC Cross Compile | PASS |
+----------------------------------------+--------------------+
| Ubuntu 20.04 ARM SVE | PASS |
+----------------------------------------+--------------------+
Ubuntu 20.04 ARM GCC Native
Kernel: 5.4.0-53-generic
Compiler: gcc 9.3
Ubuntu 20.04 ARM Clang Native
Kernel: 5.4.0-53-generic
Compiler: clang 10.0.0-4ubuntu1
Ubuntu 20.04 ARM Clang Cross Compile
Kernel: 5.4.0-72-generic
Compiler: clang version 10.0.0-4ubuntu1
Ubuntu 20.04 ARM GCC Cross Compile
Kernel: 5.4.0-72-generic
Compiler: aarch64-linux-gnu-gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0
Ubuntu 20.04 aarch32 GCC Cross Compile
Kernel: 5.4.0-72-generic
Compiler: gcc 9.3.0
Ubuntu 20.04 ARM SVE
Kernel: 5.4.0-80-generic
Compiler: gcc 10.3.0 (Ubuntu 10.3.0-1ubuntu1~20.04)
To view detailed results, visit:
https://lab.dpdk.org/results/dashboard/patchsets/24622/
UNH-IOL DPDK Community Lab
To manage your email subscriptions, visit:
https://lab.dpdk.org/results/dashboard/preferences/subscriptions/
^ permalink raw reply [flat|nested] 19+ messages in thread
* |SUCCESS| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD
@ 2022-12-03 10:18 dpdklab
0 siblings, 0 replies; 19+ messages in thread
From: dpdklab @ 2022-12-03 10:18 UTC (permalink / raw)
To: Test Report; +Cc: Shijith Thotton, David Marchand, Thomas Monjalon
[-- Attachment #1: Type: text/plain, Size: 2847 bytes --]
Test-Label: iol-testing
Test-Status: SUCCESS
http://dpdk.org/patch/120438
_Testing PASS_
Submitter: Shijith Thotton <sthotton@marvell.com>
Date: Friday, December 02 2022 14:46:45
DPDK git baseline: Repo:dpdk
Branch: master
CommitID:7b1934d01a1a8afa1391f361088d8285d100e62a
120438 --> testing pass
Test environment and result as below:
+----------------------------------------+--------------------+----------------+
| Environment | dpdk_meson_compile | dpdk_unit_test |
+========================================+====================+================+
| Ubuntu 20.04 ARM GCC Native | PASS | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM Clang Native | PASS | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM Clang Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM GCC Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 aarch32 GCC Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM SVE | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Windows Server 2019 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| Debian Buster | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
Ubuntu 20.04 ARM GCC Native
Kernel: 5.4.0-53-generic
Compiler: gcc 9.3
Ubuntu 20.04 ARM Clang Native
Kernel: 5.4.0-53-generic
Compiler: clang 10.0.0-4ubuntu1
Ubuntu 20.04 ARM Clang Cross Compile
Kernel: 5.4.0-72-generic
Compiler: clang version 10.0.0-4ubuntu1
Ubuntu 20.04 ARM GCC Cross Compile
Kernel: 5.4.0-72-generic
Compiler: aarch64-linux-gnu-gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0
Ubuntu 20.04 aarch32 GCC Cross Compile
Kernel: 5.4.0-72-generic
Compiler: gcc 9.3.0
Ubuntu 20.04 ARM SVE
Kernel: 5.4.0-80-generic
Compiler: gcc 10.3.0 (Ubuntu 10.3.0-1ubuntu1~20.04)
Windows Server 2019
Kernel: 10.0
Compiler: clang 14.0 and gcc 8.1.0 (MinGW)
Debian Buster
Kernel: 5.4.0-122-generic
Compiler: gcc 8.3.0-6
To view detailed results, visit:
https://lab.dpdk.org/results/dashboard/patchsets/24622/
UNH-IOL DPDK Community Lab
To manage your email subscriptions, visit:
https://lab.dpdk.org/results/dashboard/preferences/subscriptions/
^ permalink raw reply [flat|nested] 19+ messages in thread
* |SUCCESS| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD
@ 2022-12-03 10:54 dpdklab
0 siblings, 0 replies; 19+ messages in thread
From: dpdklab @ 2022-12-03 10:54 UTC (permalink / raw)
To: Test Report; +Cc: dpdklab, David Marchand, Thomas Monjalon
[-- Attachment #1: Type: text/plain, Size: 3588 bytes --]
Test-Label: iol-testing
Test-Status: SUCCESS
http://dpdk.org/patch/120438
_Testing PASS_
Submitter: Shijith Thotton <sthotton@marvell.com>
Date: Friday, December 02 2022 14:46:45
DPDK git baseline: Repo:dpdk
Branch: master
CommitID:7b1934d01a1a8afa1391f361088d8285d100e62a
120438 --> testing pass
Test environment and result as below:
+----------------------------------------+--------------------+----------------+
| Environment | dpdk_meson_compile | dpdk_unit_test |
+========================================+====================+================+
| Ubuntu 20.04 ARM GCC Native | PASS | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM Clang Native | PASS | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM Clang Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM GCC Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 aarch32 GCC Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM SVE | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Windows Server 2019 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| Debian Buster | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| RHEL8 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| openSUSE Leap 15 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| CentOS Stream 8 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
Ubuntu 20.04 ARM GCC Native
Kernel: 5.4.0-53-generic
Compiler: gcc 9.3
Ubuntu 20.04 ARM Clang Native
Kernel: 5.4.0-53-generic
Compiler: clang 10.0.0-4ubuntu1
Ubuntu 20.04 ARM Clang Cross Compile
Kernel: 5.4.0-72-generic
Compiler: clang version 10.0.0-4ubuntu1
Ubuntu 20.04 ARM GCC Cross Compile
Kernel: 5.4.0-72-generic
Compiler: aarch64-linux-gnu-gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0
Ubuntu 20.04 aarch32 GCC Cross Compile
Kernel: 5.4.0-72-generic
Compiler: gcc 9.3.0
Ubuntu 20.04 ARM SVE
Kernel: 5.4.0-80-generic
Compiler: gcc 10.3.0 (Ubuntu 10.3.0-1ubuntu1~20.04)
Windows Server 2019
Kernel: 10.0
Compiler: clang 14.0 and gcc 8.1.0 (MinGW)
Debian Buster
Kernel: 5.4.0-122-generic
Compiler: gcc 8.3.0-6
RHEL8
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 8.3.1 20191121 (Red Hat 8.3.1-5)
openSUSE Leap 15
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 7.5.0
CentOS Stream 8
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 8.4.1 20200928
To view detailed results, visit:
https://lab.dpdk.org/results/dashboard/patchsets/24622/
UNH-IOL DPDK Community Lab
To manage your email subscriptions, visit:
https://lab.dpdk.org/results/dashboard/preferences/subscriptions/
^ permalink raw reply [flat|nested] 19+ messages in thread
* |SUCCESS| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD
@ 2022-12-03 10:54 dpdklab
0 siblings, 0 replies; 19+ messages in thread
From: dpdklab @ 2022-12-03 10:54 UTC (permalink / raw)
To: Test Report; +Cc: dpdklab, David Marchand, Thomas Monjalon
[-- Attachment #1: Type: text/plain, Size: 3588 bytes --]
Test-Label: iol-testing
Test-Status: SUCCESS
http://dpdk.org/patch/120438
_Testing PASS_
Submitter: Shijith Thotton <sthotton@marvell.com>
Date: Friday, December 02 2022 14:46:45
DPDK git baseline: Repo:dpdk
Branch: master
CommitID:7b1934d01a1a8afa1391f361088d8285d100e62a
120438 --> testing pass
Test environment and result as below:
+----------------------------------------+--------------------+----------------+
| Environment | dpdk_meson_compile | dpdk_unit_test |
+========================================+====================+================+
| Ubuntu 20.04 ARM GCC Native | PASS | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM Clang Native | PASS | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM Clang Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM GCC Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 aarch32 GCC Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM SVE | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Windows Server 2019 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| Debian Buster | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| RHEL8 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| openSUSE Leap 15 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| CentOS Stream 8 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
Ubuntu 20.04 ARM GCC Native
Kernel: 5.4.0-53-generic
Compiler: gcc 9.3
Ubuntu 20.04 ARM Clang Native
Kernel: 5.4.0-53-generic
Compiler: clang 10.0.0-4ubuntu1
Ubuntu 20.04 ARM Clang Cross Compile
Kernel: 5.4.0-72-generic
Compiler: clang version 10.0.0-4ubuntu1
Ubuntu 20.04 ARM GCC Cross Compile
Kernel: 5.4.0-72-generic
Compiler: aarch64-linux-gnu-gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0
Ubuntu 20.04 aarch32 GCC Cross Compile
Kernel: 5.4.0-72-generic
Compiler: gcc 9.3.0
Ubuntu 20.04 ARM SVE
Kernel: 5.4.0-80-generic
Compiler: gcc 10.3.0 (Ubuntu 10.3.0-1ubuntu1~20.04)
Windows Server 2019
Kernel: 10.0
Compiler: clang 14.0 and gcc 8.1.0 (MinGW)
Debian Buster
Kernel: 5.4.0-122-generic
Compiler: gcc 8.3.0-6
RHEL8
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 8.3.1 20191121 (Red Hat 8.3.1-5)
openSUSE Leap 15
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 7.5.0
CentOS Stream 8
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 8.4.1 20200928
To view detailed results, visit:
https://lab.dpdk.org/results/dashboard/patchsets/24622/
UNH-IOL DPDK Community Lab
To manage your email subscriptions, visit:
https://lab.dpdk.org/results/dashboard/preferences/subscriptions/
^ permalink raw reply [flat|nested] 19+ messages in thread
* |SUCCESS| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD
@ 2022-12-03 10:55 dpdklab
0 siblings, 0 replies; 19+ messages in thread
From: dpdklab @ 2022-12-03 10:55 UTC (permalink / raw)
To: Test Report; +Cc: Shijith Thotton, David Marchand, Thomas Monjalon
[-- Attachment #1: Type: text/plain, Size: 4561 bytes --]
Test-Label: iol-testing
Test-Status: SUCCESS
http://dpdk.org/patch/120438
_Testing PASS_
Submitter: Shijith Thotton <sthotton@marvell.com>
Date: Friday, December 02 2022 14:46:45
DPDK git baseline: Repo:dpdk
Branch: master
CommitID:7b1934d01a1a8afa1391f361088d8285d100e62a
120438 --> testing pass
Test environment and result as below:
+----------------------------------------+--------------------+----------------+
| Environment | dpdk_meson_compile | dpdk_unit_test |
+========================================+====================+================+
| Ubuntu 20.04 ARM GCC Native | PASS | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM Clang Native | PASS | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM Clang Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM GCC Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 aarch32 GCC Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM SVE | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Windows Server 2019 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| Debian Buster | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| RHEL8 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| openSUSE Leap 15 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| CentOS Stream 8 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 22.04 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| CentOS Stream 9 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| RHEL 7 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| Debian Bullseye | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
Ubuntu 20.04 ARM GCC Native
Kernel: 5.4.0-53-generic
Compiler: gcc 9.3
Ubuntu 20.04 ARM Clang Native
Kernel: 5.4.0-53-generic
Compiler: clang 10.0.0-4ubuntu1
Ubuntu 20.04 ARM Clang Cross Compile
Kernel: 5.4.0-72-generic
Compiler: clang version 10.0.0-4ubuntu1
Ubuntu 20.04 ARM GCC Cross Compile
Kernel: 5.4.0-72-generic
Compiler: aarch64-linux-gnu-gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0
Ubuntu 20.04 aarch32 GCC Cross Compile
Kernel: 5.4.0-72-generic
Compiler: gcc 9.3.0
Ubuntu 20.04 ARM SVE
Kernel: 5.4.0-80-generic
Compiler: gcc 10.3.0 (Ubuntu 10.3.0-1ubuntu1~20.04)
Windows Server 2019
Kernel: 10.0
Compiler: clang 14.0 and gcc 8.1.0 (MinGW)
Debian Buster
Kernel: 5.4.0-122-generic
Compiler: gcc 8.3.0-6
RHEL8
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 8.3.1 20191121 (Red Hat 8.3.1-5)
openSUSE Leap 15
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 7.5.0
CentOS Stream 8
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 8.4.1 20200928
Ubuntu 22.04
Kernel: Container Host Kernel
Compiler: clang 14.0.5-1.fc36
CentOS Stream 9
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 11.3.1 20220421
RHEL 7
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 4.8.5 20150623 (Red Hat 4.8.5-44)
Debian Bullseye
Kernel: 5.4.0-122-generic
Compiler: gcc 10.2.1-6
To view detailed results, visit:
https://lab.dpdk.org/results/dashboard/patchsets/24622/
UNH-IOL DPDK Community Lab
To manage your email subscriptions, visit:
https://lab.dpdk.org/results/dashboard/preferences/subscriptions/
^ permalink raw reply [flat|nested] 19+ messages in thread
* |SUCCESS| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD
@ 2022-12-03 10:55 dpdklab
0 siblings, 0 replies; 19+ messages in thread
From: dpdklab @ 2022-12-03 10:55 UTC (permalink / raw)
To: Test Report; +Cc: dpdklab, David Marchand, Thomas Monjalon
[-- Attachment #1: Type: text/plain, Size: 4561 bytes --]
Test-Label: iol-testing
Test-Status: SUCCESS
http://dpdk.org/patch/120438
_Testing PASS_
Submitter: Shijith Thotton <sthotton@marvell.com>
Date: Friday, December 02 2022 14:46:45
DPDK git baseline: Repo:dpdk
Branch: master
CommitID:7b1934d01a1a8afa1391f361088d8285d100e62a
120438 --> testing pass
Test environment and result as below:
+----------------------------------------+--------------------+----------------+
| Environment | dpdk_meson_compile | dpdk_unit_test |
+========================================+====================+================+
| Ubuntu 20.04 ARM GCC Native | PASS | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM Clang Native | PASS | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM Clang Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM GCC Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 aarch32 GCC Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM SVE | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Windows Server 2019 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| Debian Buster | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| RHEL8 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| openSUSE Leap 15 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| CentOS Stream 8 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 22.04 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| CentOS Stream 9 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| RHEL 7 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| Debian Bullseye | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
Ubuntu 20.04 ARM GCC Native
Kernel: 5.4.0-53-generic
Compiler: gcc 9.3
Ubuntu 20.04 ARM Clang Native
Kernel: 5.4.0-53-generic
Compiler: clang 10.0.0-4ubuntu1
Ubuntu 20.04 ARM Clang Cross Compile
Kernel: 5.4.0-72-generic
Compiler: clang version 10.0.0-4ubuntu1
Ubuntu 20.04 ARM GCC Cross Compile
Kernel: 5.4.0-72-generic
Compiler: aarch64-linux-gnu-gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0
Ubuntu 20.04 aarch32 GCC Cross Compile
Kernel: 5.4.0-72-generic
Compiler: gcc 9.3.0
Ubuntu 20.04 ARM SVE
Kernel: 5.4.0-80-generic
Compiler: gcc 10.3.0 (Ubuntu 10.3.0-1ubuntu1~20.04)
Windows Server 2019
Kernel: 10.0
Compiler: clang 14.0 and gcc 8.1.0 (MinGW)
Debian Buster
Kernel: 5.4.0-122-generic
Compiler: gcc 8.3.0-6
RHEL8
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 8.3.1 20191121 (Red Hat 8.3.1-5)
openSUSE Leap 15
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 7.5.0
CentOS Stream 8
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 8.4.1 20200928
Ubuntu 22.04
Kernel: Container Host Kernel
Compiler: clang 14.0.5-1.fc36
CentOS Stream 9
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 11.3.1 20220421
RHEL 7
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 4.8.5 20150623 (Red Hat 4.8.5-44)
Debian Bullseye
Kernel: 5.4.0-122-generic
Compiler: gcc 10.2.1-6
To view detailed results, visit:
https://lab.dpdk.org/results/dashboard/patchsets/24622/
UNH-IOL DPDK Community Lab
To manage your email subscriptions, visit:
https://lab.dpdk.org/results/dashboard/preferences/subscriptions/
^ permalink raw reply [flat|nested] 19+ messages in thread
* |SUCCESS| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD
@ 2022-12-03 10:55 dpdklab
0 siblings, 0 replies; 19+ messages in thread
From: dpdklab @ 2022-12-03 10:55 UTC (permalink / raw)
To: Test Report; +Cc: dpdklab, David Marchand, Thomas Monjalon
[-- Attachment #1: Type: text/plain, Size: 4561 bytes --]
Test-Label: iol-testing
Test-Status: SUCCESS
http://dpdk.org/patch/120438
_Testing PASS_
Submitter: Shijith Thotton <sthotton@marvell.com>
Date: Friday, December 02 2022 14:46:45
DPDK git baseline: Repo:dpdk
Branch: master
CommitID:7b1934d01a1a8afa1391f361088d8285d100e62a
120438 --> testing pass
Test environment and result as below:
+----------------------------------------+--------------------+----------------+
| Environment | dpdk_meson_compile | dpdk_unit_test |
+========================================+====================+================+
| Ubuntu 20.04 ARM GCC Native | PASS | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM Clang Native | PASS | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM Clang Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM GCC Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 aarch32 GCC Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM SVE | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Windows Server 2019 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| Debian Buster | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| RHEL8 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| openSUSE Leap 15 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| CentOS Stream 8 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 22.04 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| CentOS Stream 9 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| RHEL 7 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| Debian Bullseye | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
Ubuntu 20.04 ARM GCC Native
Kernel: 5.4.0-53-generic
Compiler: gcc 9.3
Ubuntu 20.04 ARM Clang Native
Kernel: 5.4.0-53-generic
Compiler: clang 10.0.0-4ubuntu1
Ubuntu 20.04 ARM Clang Cross Compile
Kernel: 5.4.0-72-generic
Compiler: clang version 10.0.0-4ubuntu1
Ubuntu 20.04 ARM GCC Cross Compile
Kernel: 5.4.0-72-generic
Compiler: aarch64-linux-gnu-gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0
Ubuntu 20.04 aarch32 GCC Cross Compile
Kernel: 5.4.0-72-generic
Compiler: gcc 9.3.0
Ubuntu 20.04 ARM SVE
Kernel: 5.4.0-80-generic
Compiler: gcc 10.3.0 (Ubuntu 10.3.0-1ubuntu1~20.04)
Windows Server 2019
Kernel: 10.0
Compiler: clang 14.0 and gcc 8.1.0 (MinGW)
Debian Buster
Kernel: 5.4.0-122-generic
Compiler: gcc 8.3.0-6
RHEL8
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 8.3.1 20191121 (Red Hat 8.3.1-5)
openSUSE Leap 15
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 7.5.0
CentOS Stream 8
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 8.4.1 20200928
Ubuntu 22.04
Kernel: Container Host Kernel
Compiler: clang 14.0.5-1.fc36
CentOS Stream 9
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 11.3.1 20220421
RHEL 7
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 4.8.5 20150623 (Red Hat 4.8.5-44)
Debian Bullseye
Kernel: 5.4.0-122-generic
Compiler: gcc 10.2.1-6
To view detailed results, visit:
https://lab.dpdk.org/results/dashboard/patchsets/24622/
UNH-IOL DPDK Community Lab
To manage your email subscriptions, visit:
https://lab.dpdk.org/results/dashboard/preferences/subscriptions/
^ permalink raw reply [flat|nested] 19+ messages in thread
* |SUCCESS| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD
@ 2022-12-03 11:01 dpdklab
0 siblings, 0 replies; 19+ messages in thread
From: dpdklab @ 2022-12-03 11:01 UTC (permalink / raw)
To: Test Report; +Cc: dpdklab, David Marchand, Thomas Monjalon
[-- Attachment #1: Type: text/plain, Size: 4561 bytes --]
Test-Label: iol-testing
Test-Status: SUCCESS
http://dpdk.org/patch/120438
_Testing PASS_
Submitter: Shijith Thotton <sthotton@marvell.com>
Date: Friday, December 02 2022 14:46:45
DPDK git baseline: Repo:dpdk
Branch: master
CommitID:7b1934d01a1a8afa1391f361088d8285d100e62a
120438 --> testing pass
Test environment and result as below:
+----------------------------------------+--------------------+----------------+
| Environment | dpdk_meson_compile | dpdk_unit_test |
+========================================+====================+================+
| Ubuntu 20.04 ARM GCC Native | PASS | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM Clang Native | PASS | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM Clang Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM GCC Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 aarch32 GCC Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM SVE | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Windows Server 2019 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| Debian Buster | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| RHEL8 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| openSUSE Leap 15 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| CentOS Stream 8 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 22.04 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| CentOS Stream 9 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| RHEL 7 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| Debian Bullseye | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
Ubuntu 20.04 ARM GCC Native
Kernel: 5.4.0-53-generic
Compiler: gcc 9.3
Ubuntu 20.04 ARM Clang Native
Kernel: 5.4.0-53-generic
Compiler: clang 10.0.0-4ubuntu1
Ubuntu 20.04 ARM Clang Cross Compile
Kernel: 5.4.0-72-generic
Compiler: clang version 10.0.0-4ubuntu1
Ubuntu 20.04 ARM GCC Cross Compile
Kernel: 5.4.0-72-generic
Compiler: aarch64-linux-gnu-gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0
Ubuntu 20.04 aarch32 GCC Cross Compile
Kernel: 5.4.0-72-generic
Compiler: gcc 9.3.0
Ubuntu 20.04 ARM SVE
Kernel: 5.4.0-80-generic
Compiler: gcc 10.3.0 (Ubuntu 10.3.0-1ubuntu1~20.04)
Windows Server 2019
Kernel: 10.0
Compiler: clang 14.0 and gcc 8.1.0 (MinGW)
Debian Buster
Kernel: 5.4.0-122-generic
Compiler: gcc 8.3.0-6
RHEL8
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 8.3.1 20191121 (Red Hat 8.3.1-5)
openSUSE Leap 15
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 7.5.0
CentOS Stream 8
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 8.4.1 20200928
Ubuntu 22.04
Kernel: Container Host Kernel
Compiler: clang 14.0.5-1.fc36
CentOS Stream 9
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 11.3.1 20220421
RHEL 7
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 4.8.5 20150623 (Red Hat 4.8.5-44)
Debian Bullseye
Kernel: 5.4.0-122-generic
Compiler: gcc 10.2.1-6
To view detailed results, visit:
https://lab.dpdk.org/results/dashboard/patchsets/24622/
UNH-IOL DPDK Community Lab
To manage your email subscriptions, visit:
https://lab.dpdk.org/results/dashboard/preferences/subscriptions/
^ permalink raw reply [flat|nested] 19+ messages in thread
* |SUCCESS| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD
@ 2022-12-03 11:03 dpdklab
0 siblings, 0 replies; 19+ messages in thread
From: dpdklab @ 2022-12-03 11:03 UTC (permalink / raw)
To: Test Report; +Cc: dpdklab, David Marchand, Thomas Monjalon
[-- Attachment #1: Type: text/plain, Size: 4812 bytes --]
Test-Label: iol-testing
Test-Status: SUCCESS
http://dpdk.org/patch/120438
_Testing PASS_
Submitter: Shijith Thotton <sthotton@marvell.com>
Date: Friday, December 02 2022 14:46:45
DPDK git baseline: Repo:dpdk
Branch: master
CommitID:7b1934d01a1a8afa1391f361088d8285d100e62a
120438 --> testing pass
Test environment and result as below:
+----------------------------------------+--------------------+----------------+
| Environment | dpdk_meson_compile | dpdk_unit_test |
+========================================+====================+================+
| Ubuntu 20.04 ARM GCC Native | PASS | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM Clang Native | PASS | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM Clang Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM GCC Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 aarch32 GCC Cross Compile | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 ARM SVE | PASS | SKIPPED |
+----------------------------------------+--------------------+----------------+
| Windows Server 2019 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| Debian Buster | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| RHEL8 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| openSUSE Leap 15 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| CentOS Stream 8 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 22.04 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| CentOS Stream 9 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| RHEL 7 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| Debian Bullseye | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
| Ubuntu 20.04 | SKIPPED | PASS |
+----------------------------------------+--------------------+----------------+
Ubuntu 20.04 ARM GCC Native
Kernel: 5.4.0-53-generic
Compiler: gcc 9.3
Ubuntu 20.04 ARM Clang Native
Kernel: 5.4.0-53-generic
Compiler: clang 10.0.0-4ubuntu1
Ubuntu 20.04 ARM Clang Cross Compile
Kernel: 5.4.0-72-generic
Compiler: clang version 10.0.0-4ubuntu1
Ubuntu 20.04 ARM GCC Cross Compile
Kernel: 5.4.0-72-generic
Compiler: aarch64-linux-gnu-gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0
Ubuntu 20.04 aarch32 GCC Cross Compile
Kernel: 5.4.0-72-generic
Compiler: gcc 9.3.0
Ubuntu 20.04 ARM SVE
Kernel: 5.4.0-80-generic
Compiler: gcc 10.3.0 (Ubuntu 10.3.0-1ubuntu1~20.04)
Windows Server 2019
Kernel: 10.0
Compiler: clang 14.0 and gcc 8.1.0 (MinGW)
Debian Buster
Kernel: 5.4.0-122-generic
Compiler: gcc 8.3.0-6
RHEL8
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 8.3.1 20191121 (Red Hat 8.3.1-5)
openSUSE Leap 15
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 7.5.0
CentOS Stream 8
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 8.4.1 20200928
Ubuntu 22.04
Kernel: Container Host Kernel
Compiler: clang 14.0.5-1.fc36
CentOS Stream 9
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 11.3.1 20220421
RHEL 7
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 4.8.5 20150623 (Red Hat 4.8.5-44)
Debian Bullseye
Kernel: 5.4.0-122-generic
Compiler: gcc 10.2.1-6
Ubuntu 20.04
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 9.3.0-17ubuntu1~20.04
To view detailed results, visit:
https://lab.dpdk.org/results/dashboard/patchsets/24622/
UNH-IOL DPDK Community Lab
To manage your email subscriptions, visit:
https://lab.dpdk.org/results/dashboard/preferences/subscriptions/
^ permalink raw reply [flat|nested] 19+ messages in thread
* |SUCCESS| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD
@ 2022-12-03 11:03 dpdklab
0 siblings, 0 replies; 19+ messages in thread
From: dpdklab @ 2022-12-03 11:03 UTC (permalink / raw)
To: Test Report; +Cc: dpdklab, David Marchand, Thomas Monjalon
[-- Attachment #1: Type: text/plain, Size: 2343 bytes --]
Test-Label: iol-x86_64-unit-testing
Test-Status: SUCCESS
http://dpdk.org/patch/120438
_Testing PASS_
Submitter: Shijith Thotton <sthotton@marvell.com>
Date: Friday, December 02 2022 14:46:45
DPDK git baseline: Repo:dpdk
Branch: master
CommitID:7b1934d01a1a8afa1391f361088d8285d100e62a
120438 --> testing pass
Test environment and result as below:
+---------------------+----------------+
| Environment | dpdk_unit_test |
+=====================+================+
| Windows Server 2019 | PASS |
+---------------------+----------------+
| Debian Buster | PASS |
+---------------------+----------------+
| RHEL8 | PASS |
+---------------------+----------------+
| openSUSE Leap 15 | PASS |
+---------------------+----------------+
| CentOS Stream 8 | PASS |
+---------------------+----------------+
| Ubuntu 22.04 | PASS |
+---------------------+----------------+
| CentOS Stream 9 | PASS |
+---------------------+----------------+
| RHEL 7 | PASS |
+---------------------+----------------+
| Debian Bullseye | PASS |
+---------------------+----------------+
| Ubuntu 20.04 | PASS |
+---------------------+----------------+
Windows Server 2019
Kernel: 10.0
Compiler: clang 14.0 and gcc 8.1.0 (MinGW)
Debian Buster
Kernel: 5.4.0-122-generic
Compiler: gcc 8.3.0-6
RHEL8
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 8.3.1 20191121 (Red Hat 8.3.1-5)
openSUSE Leap 15
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 7.5.0
CentOS Stream 8
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 8.4.1 20200928
Ubuntu 22.04
Kernel: Container Host Kernel
Compiler: clang 14.0.5-1.fc36
CentOS Stream 9
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 11.3.1 20220421
RHEL 7
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 4.8.5 20150623 (Red Hat 4.8.5-44)
Debian Bullseye
Kernel: 5.4.0-122-generic
Compiler: gcc 10.2.1-6
Ubuntu 20.04
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 9.3.0-17ubuntu1~20.04
To view detailed results, visit:
https://lab.dpdk.org/results/dashboard/patchsets/24622/
UNH-IOL DPDK Community Lab
To manage your email subscriptions, visit:
https://lab.dpdk.org/results/dashboard/preferences/subscriptions/
^ permalink raw reply [flat|nested] 19+ messages in thread
* |SUCCESS| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD
@ 2022-12-03 21:42 dpdklab
0 siblings, 0 replies; 19+ messages in thread
From: dpdklab @ 2022-12-03 21:42 UTC (permalink / raw)
To: Test Report; +Cc: dpdklab, David Marchand, Thomas Monjalon
[-- Attachment #1: Type: text/plain, Size: 2340 bytes --]
Test-Label: iol-x86_64-compile-testing
Test-Status: SUCCESS
http://dpdk.org/patch/120438
_Testing PASS_
Submitter: Shijith Thotton <sthotton@marvell.com>
Date: Friday, December 02 2022 14:46:45
DPDK git baseline: Repo:dpdk
Branch: master
CommitID:7b1934d01a1a8afa1391f361088d8285d100e62a
120438 --> testing pass
Test environment and result as below:
+------------------+--------------------+
| Environment | dpdk_meson_compile |
+==================+====================+
| FreeBSD 13 | PASS |
+------------------+--------------------+
| RHEL 7 | PASS |
+------------------+--------------------+
| Ubuntu 22.04 | PASS |
+------------------+--------------------+
| Debian Bullseye | PASS |
+------------------+--------------------+
| Debian Buster | PASS |
+------------------+--------------------+
| Ubuntu 20.04 | PASS |
+------------------+--------------------+
| openSUSE Leap 15 | PASS |
+------------------+--------------------+
| RHEL8 | PASS |
+------------------+--------------------+
| CentOS Stream 8 | PASS |
+------------------+--------------------+
| CentOS Stream 9 | PASS |
+------------------+--------------------+
FreeBSD 13
Kernel: 13.0
Compiler: clang 11.0.1
RHEL 7
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 4.8.5 20150623 (Red Hat 4.8.5-44)
Ubuntu 22.04
Kernel: Container Host Kernel
Compiler: clang 14.0.5-1.fc36
Debian Bullseye
Kernel: 5.4.0-122-generic
Compiler: gcc 10.2.1-6
Debian Buster
Kernel: 5.4.0-122-generic
Compiler: gcc 8.3.0-6
Ubuntu 20.04
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 9.3.0-17ubuntu1~20.04
openSUSE Leap 15
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 7.5.0
RHEL8
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 8.3.1 20191121 (Red Hat 8.3.1-5)
CentOS Stream 8
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 8.4.1 20200928
CentOS Stream 9
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 11.3.1 20220421
To view detailed results, visit:
https://lab.dpdk.org/results/dashboard/patchsets/24622/
UNH-IOL DPDK Community Lab
To manage your email subscriptions, visit:
https://lab.dpdk.org/results/dashboard/preferences/subscriptions/
^ permalink raw reply [flat|nested] 19+ messages in thread
end of thread, other threads:[~2022-12-03 21:42 UTC | newest]
Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <a0c3db977b5fe166438fe261874bbf43fbd4c76d.1669991772.git.sthotton@marvell.com>
2022-12-02 14:47 ` |WARNING| pw120438 [PATCH] drivers: limit SSO interrupt allocation count in cnxk PMD checkpatch
2022-12-02 16:38 ` |SUCCESS| " 0-day Robot
2022-12-02 17:20 ` qemudev
2022-12-02 17:24 ` qemudev
2022-12-02 19:31 dpdklab
2022-12-02 19:34 dpdklab
2022-12-02 19:53 dpdklab
2022-12-02 20:26 dpdklab
2022-12-02 21:07 dpdklab
2022-12-03 10:18 dpdklab
2022-12-03 10:54 dpdklab
2022-12-03 10:54 dpdklab
2022-12-03 10:55 dpdklab
2022-12-03 10:55 dpdklab
2022-12-03 10:55 dpdklab
2022-12-03 11:01 dpdklab
2022-12-03 11:03 dpdklab
2022-12-03 11:03 dpdklab
2022-12-03 21:42 dpdklab
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).