From: dpdklab@iol.unh.edu
To: Test Report <test-report@dpdk.org>
Cc: dpdk-test-reports@iol.unh.edu, patryk ochal <patrykochal@gmail.com>
Subject: |FAILURE| pw153071 [PATCH] net/mlx5: fix out-of-bounds write in Rx s
Date: Tue, 22 Apr 2025 08:16:46 -0700 (PDT) [thread overview]
Message-ID: <6807b2de.810a0220.1ceb62.462bSMTPIN_ADDED_MISSING@mx.google.com> (raw)
In-Reply-To: <20250422063754.3429965-1-patrykochal@gmail.com>
Test-Label: iol-compile-arm64-testing
Test-Status: FAILURE
http://dpdk.org/patch/153071
_Testing issues_
Submitter: patryk ochal <patrykochal@gmail.com>
Date: Tuesday, April 22 2025 06:37:54
DPDK git baseline: Repo:dpdk
Branch: master
CommitID:edd3f4b1265e6da707c46ca9b6c39d332647baea
153071 --> testing issues
Upstream job id: Generic-DPDK-Compile-Meson#381980
Test environment and result as below:
+----------------------------------------+--------------------+
| Environment | dpdk_meson_compile |
+========================================+====================+
| RHEL9 (ARM) | FAIL |
+----------------------------------------+--------------------+
| Ubuntu 20.04 ARM GCC Cross Compile | PEND |
+----------------------------------------+--------------------+
| Debian 12 with MUSDK | PEND |
+----------------------------------------+--------------------+
| Ubuntu 20.04 ARM SVE | PASS |
+----------------------------------------+--------------------+
| Fedora 41 (ARM Clang) | PEND |
+----------------------------------------+--------------------+
| Fedora 40 (ARM) | FAIL |
+----------------------------------------+--------------------+
| Fedora 41 (ARM) | PEND |
+----------------------------------------+--------------------+
| Fedora 40 (ARM Clang) | PEND |
+----------------------------------------+--------------------+
| Ubuntu 22.04 (ARM) | PEND |
+----------------------------------------+--------------------+
| Ubuntu 24.04 (ARM) | PEND |
+----------------------------------------+--------------------+
| Ubuntu 20.04 (ARM) | PEND |
+----------------------------------------+--------------------+
| CentOS Stream 9 (ARM) | PEND |
+----------------------------------------+--------------------+
| CentOS Stream 10 (ARM) | PEND |
+----------------------------------------+--------------------+
| Debian 12 (arm) | PEND |
+----------------------------------------+--------------------+
| Ubuntu 20.04 aarch32 GCC Cross Compile | PEND |
+----------------------------------------+--------------------+
| Ubuntu 20.04 ARM Clang Cross Compile | PEND |
+----------------------------------------+--------------------+
==== 20 line log output for Fedora 40 (ARM) (dpdk_meson_compile): ====
[1995/3416] Compiling C object drivers/libtmp_rte_net_mlx5.a.p/net_mlx5_mlx5_rxtx_vec.c.o
FAILED: drivers/libtmp_rte_net_mlx5.a.p/net_mlx5_mlx5_rxtx_vec.c.o
ccache cc -Idrivers/libtmp_rte_net_mlx5.a.p -Idrivers -I../drivers -Idrivers/net/mlx5 -I../drivers/net/mlx5 -Idrivers/net/mlx5/linux -I../drivers/net/mlx5/linux -Idrivers/net/mlx5/hws -I../drivers/net/mlx5/hws -Ilib/ethdev -I../lib/ethdev -I. -I.. -Iconfig -I../config -Ilib/eal/include -I../lib/eal/include -Ilib/eal/linux/include -I../lib/eal/linux/include -Ilib/eal/arm/include -I../lib/eal/arm/include -I../kernel/linux -Ilib/eal/common -I../lib/eal/common -Ilib/eal -I../lib/eal -Ilib/kvargs -I../lib/kvargs -Ilib/log -I../lib/log -Ilib/metrics -I../lib/metrics -Ilib/telemetry -I../lib/telemetry -Ilib/net -I../lib/net -Ilib/mbuf -I../lib/mbuf -Ilib/mempool -I../lib/mempool -Ilib/ring -I../lib/ring -Ilib/meter -I../lib/meter -Idrivers/bus/pci -I../drivers/bus/pci -I../drivers/bus/pci/linux -Ilib/pci -I../lib/pci -Idrivers/bus/vdev -I../drivers/bus/vdev -Ilib/hash -I../lib/hash -Ilib/rcu -I../lib/rcu -Idrivers/common/mlx5 -I../drivers/common/mlx5 -Idrivers/common/mlx5/linux -I../drivers
/common/mlx5/linux -Idrivers/bus/auxiliary -I../drivers/bus/auxiliary -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -Werror -std=c11 -O3 -include rte_config.h -Wvla -Wcast-qual -Wdeprecated -Wformat -Wformat-nonliteral -Wformat-security -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpointer-arith -Wsign-compare -Wstrict-prototypes -Wundef -Wwrite-strings -Wno-packed-not-aligned -Wno-missing-field-initializers -D_GNU_SOURCE -fPIC -march=armv8.1-a+crc+crypto -DALLOW_EXPERIMENTAL_API -DALLOW_INTERNAL_API -Wno-format-truncation -Wno-address-of-packed-member -std=c11 -Wno-strict-prototypes -D_BSD_SOURCE -D_DEFAULT_SOURCE -D_XOPEN_SOURCE=600 -UPEDANTIC -Wno-vla -DRTE_LOG_DEFAULT_LOGTYPE=pmd.net.mlx5 -MD -MQ drivers/libtmp_rte_net_mlx5.a.p/net_mlx5_mlx5_rxtx_vec.c.o -MF drivers/libtmp_rte_net_mlx5.a.p/net_mlx5_mlx5_rxtx_vec.c.o.d -o drivers/libtmp_rte_net_mlx5.a.p/net_mlx5_mlx5_rxtx_vec.c.o -c ../drivers/net/mlx5/
mlx5_rxtx_vec.c
In file included from ../lib/mbuf/rte_mbuf.h:36,
from ../drivers/net/mlx5/mlx5_rxtx_vec.c:10:
../drivers/net/mlx5/mlx5_rxtx_vec.c: In function 'rxq_burst_v':
../lib/eal/include/rte_common.h:765:20: error: comparison of integer expressions of different signedness: 'int' and 'uint32_t' {aka 'unsigned int'} [-Werror=sign-compare]
765 | _a < _b ? _a : _b; \
| ^
../drivers/net/mlx5/mlx5_rxtx_vec.c:324:18: note: in expansion of macro 'RTE_MIN'
324 | pkts_n = RTE_MIN(pkts_n - rcvd_pkt, rxq->rq_ci - rxq->rq_pi);
| ^~~~~~~
../lib/eal/include/rte_common.h:765:27: error: operand of '?:' changes signedness from 'int' to 'uint32_t' {aka 'unsigned int'} due to unsignedness of other operand [-Werror=sign-compare]
765 | _a < _b ? _a : _b; \
| ^~
../drivers/net/mlx5/mlx5_rxtx_vec.c:324:18: note: in expansion of macro 'RTE_MIN'
324 | pkts_n = RTE_MIN(pkts_n - rcvd_pkt, rxq->rq_ci - rxq->rq_pi);
| ^~~~~~~
cc1: all warnings being treated as errors
ninja: build stopped: subcommand failed.
==== End log output ====
RHEL9 (ARM)
Kernel: Depends on container host
Compiler: gcc 11.5.0 20240719 (Red Hat 11.5.0-2)
Ubuntu 20.04 ARM GCC Cross Compile
Kernel: Depends on container host
Compiler: aarch64-linux-gnu-gcc (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0
Debian 12 with MUSDK
Kernel: Depends on container host
Compiler: gcc (Debian 12.2.0-14) 12.2.0
Ubuntu 20.04 ARM SVE
Kernel: Depends on container host
Compiler: gcc (Ubuntu 10.5.0-1ubuntu1~20.04) 10.5.0
Fedora 41 (ARM Clang)
Kernel: Depends on container host
Compiler: clang 19.1.5 (Fedora 19.1.5-1.fc41)
Fedora 40 (ARM)
Kernel: Depends on container host
Compiler: gcc 14.2.1 20240912 (Red Hat 14.2.1-3)
Fedora 41 (ARM)
Kernel: Depends on container host
Compiler: gcc 14.2.1 20240912 (Red Hat 14.2.1-3)
Fedora 40 (ARM Clang)
Kernel: Depends on container host
Compiler: clang 18.1.8 (Fedora 18.1.8-1.fc40)
Ubuntu 22.04 (ARM)
Kernel: Depends on container host
Compiler: gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0
Ubuntu 24.04 (ARM)
Kernel: Depends on container host
Compiler: gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0
Ubuntu 20.04 (ARM)
Kernel: Depends on container host
Compiler: gcc (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0
CentOS Stream 9 (ARM)
Kernel: Depends on container host
Compiler: gcc 11.5.0 20240719 (Red Hat 11.5.0-2)
CentOS Stream 10 (ARM)
Kernel: Depends on container host
Compiler: gcc 14.2.1 20241104 (Red Hat 14.2.1-6)
Debian 12 (arm)
Kernel: Depends on container host
Compiler: gcc (Debian 12.2.0-14) 12.2.0
Ubuntu 20.04 aarch32 GCC Cross Compile
Kernel: Depends on container host
Compiler: gcc 9.4.0
Ubuntu 20.04 ARM Clang Cross Compile
Kernel: Depends on container host
Compiler: clang 10.0.0-4ubuntu1
To view detailed results, visit:
https://lab.dpdk.org/results/dashboard/patchsets/33048/
UNH-IOL DPDK Community Lab
To manage your email subscriptions, visit:
https://lab.dpdk.org/results/dashboard/preferences/subscriptions/
next prev parent reply other threads:[~2025-04-22 15:16 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20250422063754.3429965-1-patrykochal@gmail.com>
2025-04-22 6:05 ` |SUCCESS| pw153071 [PATCH] net/mlx5: fix out-of-bounds write in Rx software ring qemudev
2025-04-22 6:09 ` qemudev
2025-04-22 6:40 ` checkpatch
2025-04-22 13:25 ` |SUCCESS| pw153071 [PATCH] net/mlx5: fix out-of-bounds write in Rx s dpdklab
2025-04-22 13:35 ` dpdklab
2025-04-22 13:37 ` dpdklab
2025-04-22 13:43 ` dpdklab
2025-04-22 13:48 ` dpdklab
2025-04-22 13:49 ` dpdklab
2025-04-22 13:52 ` dpdklab
2025-04-22 13:59 ` dpdklab
2025-04-22 14:01 ` |FAILURE| " dpdklab
2025-04-22 14:02 ` |PENDING| " dpdklab
2025-04-22 14:04 ` |SUCCESS| " dpdklab
2025-04-22 14:09 ` |FAILURE| " dpdklab
2025-04-22 14:09 ` dpdklab
2025-04-22 14:11 ` dpdklab
2025-04-22 14:13 ` |SUCCESS| " dpdklab
2025-04-22 14:16 ` |FAILURE| " dpdklab
2025-04-22 14:23 ` dpdklab
2025-04-22 14:24 ` dpdklab
2025-04-22 14:24 ` dpdklab
2025-04-22 14:26 ` dpdklab
2025-04-22 14:27 ` dpdklab
2025-04-22 14:31 ` dpdklab
2025-04-22 14:38 ` |WARNING| " dpdklab
2025-04-22 14:39 ` dpdklab
2025-04-22 14:50 ` |SUCCESS| " dpdklab
2025-04-22 14:50 ` dpdklab
2025-04-22 14:51 ` dpdklab
2025-04-22 15:05 ` |FAILURE| " dpdklab
2025-04-22 15:13 ` dpdklab
2025-04-22 15:15 ` dpdklab
2025-04-22 15:16 ` dpdklab [this message]
2025-04-22 15:22 ` |WARNING| " dpdklab
2025-04-22 15:25 ` |FAILURE| " dpdklab
2025-04-22 15:26 ` dpdklab
2025-04-22 15:30 ` |WARNING| " dpdklab
2025-04-22 15:47 ` |FAILURE| " dpdklab
2025-04-22 16:05 ` dpdklab
2025-04-22 17:01 ` dpdklab
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=6807b2de.810a0220.1ceb62.462bSMTPIN_ADDED_MISSING@mx.google.com \
--to=dpdklab@iol.unh.edu \
--cc=dpdk-test-reports@iol.unh.edu \
--cc=patrykochal@gmail.com \
--cc=test-report@dpdk.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).