automatic DPDK test reports
 help / color / mirror / Atom feed
* |FAILURE| pw135556-135569 [PATCH v5 14/14] net/nfp: support offloading bond-flow
       [not found] <20231226023745.3144143-15-chaoyong.he@corigine.com>
@ 2023-12-26  2:21 ` qemudev
  2023-12-26  2:41 ` |WARNING| pw135569 " checkpatch
  1 sibling, 0 replies; 2+ messages in thread
From: qemudev @ 2023-12-26  2:21 UTC (permalink / raw)
  To: test-report; +Cc: Chaoyong He, zhoumin

Test-Label: loongarch-compilation
Test-Status: FAILURE
http://dpdk.org/patch/135569

_ninja build failure_

Submitter: Chaoyong He <chaoyong.he@corigine.com>
Date: Tue, 26 Dec 2023 10:37:32 +0800
DPDK git baseline: Repo:dpdk-next-net
  Branch: main
  CommitID: 84bfce561f24a33cb186efdc1cf8dc4a8c96fd26

135556-135569 --> ninja build failed

Test environment and result as below:

+---------------------+----------------+
|     Environment     | compilation    |
+---------------------+----------------+
| Loongnix-Server 8.3 | FAIL           |
+---------------------+----------------+

Loongnix-Server 8.3
    Kernel: 4.19.190+
    Compiler: gcc 8.3


Ninja build logs:
-------------------------------BEGIN LOGS----------------------------
FAILED: drivers/libtmp_rte_net_nfp.a.p/net_nfp_flower_nfp_flower_bond.c.o
cc -Idrivers/libtmp_rte_net_nfp.a.p -Idrivers -I../drivers -Idrivers/net/nfp -I../drivers/net/nfp -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/loongarch/include -I../lib/eal/loongarch/include -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 -Ilib/security -I../lib/security -Ilib/cryptodev -I../lib/cryptodev -Idrivers/common/nfp -I../drivers/common/nfp -Idrivers/net/bonding -I../drivers/net/bonding -Ilib/sched -I../lib/sched -Ilib/ip_frag -I..
 /lib/ip_frag -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -std=c11 -O3 -include rte_config.h -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=loongarch64 -DALLOW_EXPERIMENTAL_API -DALLOW_INTERNAL_API -Wno-format-truncation -DRTE_LOG_DEFAULT_LOGTYPE=pmd.net.nfp -MD -MQ drivers/libtmp_rte_net_nfp.a.p/net_nfp_flower_nfp_flower_bond.c.o -MF drivers/libtmp_rte_net_nfp.a.p/net_nfp_flower_nfp_flower_bond.c.o.d -o drivers/libtmp_rte_net_nfp.a.p/net_nfp_flower_nfp_flower_bond.c.o -c ../drivers/net/nfp/flower/nfp_flower_bond.c
In file included from ../drivers/net/nfp/flower/nfp_flower_bond.c:5:
./drivers/net/nfp/flower/nfp_flower_bond.h:117:2: error: unknown type name ‘pthread_mutex_t’
pthread_mutex_t mutex;
^~~~~~~~~~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c: In function ‘nfp_flower_bond_init’:
./drivers/net/nfp/flower/nfp_flower_bond.c:160:21: warning: passing argument 1 of ‘pthread_mutex_init’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_init(&nfp_bond->mutex, NULL);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:750:49: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_init (pthread_mutex_t *__mutex,
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c: In function ‘nfp_flower_bond_cleanup’:
./drivers/net/nfp/flower/nfp_flower_bond.c:177:21: warning: passing argument 1 of ‘pthread_mutex_lock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_lock(&nfp_bond->mutex);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:763:49: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_lock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c:189:23: warning: passing argument 1 of ‘pthread_mutex_unlock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_unlock(&nfp_bond->mutex);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:774:51: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_unlock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c:191:24: warning: passing argument 1 of ‘pthread_mutex_destroy’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_destroy(&nfp_bond->mutex);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:755:52: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_destroy (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c: In function ‘nfp_flower_bond_do_work’:
./drivers/net/nfp/flower/nfp_flower_bond.c:239:21: warning: passing argument 1 of ‘pthread_mutex_lock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_lock(&nfp_bond->mutex);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:763:49: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_lock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c:274:23: warning: passing argument 1 of ‘pthread_mutex_unlock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_unlock(&nfp_bond->mutex);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:774:51: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_unlock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c: In function ‘nfp_flower_bond_change_linkstatus_event’:
./drivers/net/nfp/flower/nfp_flower_bond.c:296:21: warning: passing argument 1 of ‘pthread_mutex_lock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_lock(&nfp_bond->mutex);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:763:49: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_lock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c:300:24: warning: passing argument 1 of ‘pthread_mutex_unlock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_unlock(&nfp_bond->mutex);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:774:51: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_unlock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c:304:23: warning: passing argument 1 of ‘pthread_mutex_unlock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_unlock(&nfp_bond->mutex);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:774:51: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_unlock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c: In function ‘nfp_flower_bond_changeupper_event’:
./drivers/net/nfp/flower/nfp_flower_bond.c:401:21: warning: passing argument 1 of ‘pthread_mutex_lock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_lock(&nfp_bond->mutex);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:763:49: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_lock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c:409:24: warning: passing argument 1 of ‘pthread_mutex_unlock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_unlock(&nfp_bond->mutex);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:774:51: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_unlock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c:416:25: warning: passing argument 1 of ‘pthread_mutex_unlock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_unlock(&nfp_bond->mutex);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:774:51: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_unlock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c:425:23: warning: passing argument 1 of ‘pthread_mutex_unlock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_unlock(&nfp_bond->mutex);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:774:51: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_unlock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c: In function ‘nfp_flower_bond_group_delete’:
./drivers/net/nfp/flower/nfp_flower_bond.c:436:21: warning: passing argument 1 of ‘pthread_mutex_lock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_lock(&nfp_bond->mutex);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:763:49: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_lock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c:440:24: warning: passing argument 1 of ‘pthread_mutex_unlock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_unlock(&nfp_bond->mutex);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:774:51: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_unlock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c:449:23: warning: passing argument 1 of ‘pthread_mutex_unlock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_unlock(&nfp_bond->mutex);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:774:51: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_unlock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c: In function ‘nfp_flower_bond_find_bond_device’:
./drivers/net/nfp/flower/nfp_flower_bond.c:568:21: warning: passing argument 1 of ‘pthread_mutex_lock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_lock(&repr->app_fw_flower->nfp_bond->mutex);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:763:49: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_lock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c:575:23: warning: passing argument 1 of ‘pthread_mutex_unlock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_unlock(&repr->app_fw_flower->nfp_bond->mutex);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:774:51: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_unlock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c: In function ‘nfp_flower_bond_fw_create_get’:
./drivers/net/nfp/flower/nfp_flower_bond.c:659:21: warning: passing argument 1 of ‘pthread_mutex_lock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_lock(&nfp_bond->mutex);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:763:49: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_lock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c:666:23: warning: passing argument 1 of ‘pthread_mutex_unlock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_unlock(&nfp_bond->mutex);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:774:51: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_unlock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c: In function ‘nfp_flower_bond_get_output_id’:
./drivers/net/nfp/flower/nfp_flower_bond.c:678:21: warning: passing argument 1 of ‘pthread_mutex_lock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_lock(&nfp_bond->mutex);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:763:49: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_lock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c:682:24: warning: passing argument 1 of ‘pthread_mutex_unlock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_unlock(&nfp_bond->mutex);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:774:51: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_unlock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
./drivers/net/nfp/flower/nfp_flower_bond.c:688:23: warning: passing argument 1 of ‘pthread_mutex_unlock’ from incompatible pointer type [-Wincompatible-pointer-types]
pthread_mutex_unlock(&nfp_bond->mutex);
^~~~~~~~~~~~~~~~
In file included from ../lib/ethdev/ethdev_driver.h:21,
from ../drivers/net/bonding/eth_bond_private.h:11,
from ../drivers/net/nfp/flower/nfp_flower_bond.c:7:
/usr/include/pthread.h:774:51: note: expected ‘pthread_mutex_t *’ {aka ‘union <anonymous> *’} but argument is of type ‘int *’
extern int pthread_mutex_unlock (pthread_mutex_t *__mutex)
~~~~~~~~~~~~~~~~~^~~~~~~
[1406/2424] Linking target lib/librte_table.so.24.1
[1407/2424] Linking target drivers/librte_net_ionic.so.24.1
[1408/2424] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_crc.c.o
[1409/2424] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_rte_pmd_ixgbe.c.o
[1410/2424] Linking target drivers/librte_mempool_dpaa.so.24.1
[1411/2424] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_ethdev.c.o
[1412/2424] Compiling C object drivers/libtmp_rte_net_ice.a.p/net_ice_ice_rxtx.c.o
[1413/2424] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_vf.c.o
[1414/2424] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_mip.c.o
[1415/2424] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_hwinfo.c.o
[1416/2424] Generating rte_net_ipn3ke.pmd.c with a custom command
[1417/2424] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_flower_nfp_flower.c.o
[1418/2424] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_nffw.c.o
[1419/2424] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_mutex.c.o
[1420/2424] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfpcore_nfp_cppcore.c.o
[1421/2424] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_flower_nfp_flower_cmsg.c.o
[1422/2424] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfd3_nfp_nfd3_dp.c.o
[1423/2424] Generating rte_net_iavf.pmd.c with a custom command
[1424/2424] Generating rte_net_igc.pmd.c with a custom command
[1425/2424] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_flower_nfp_flower_representor.c.o
[1426/2424] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_nfdk_nfp_nfdk_dp.c.o
[1427/2424] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_x550.c.o
[1428/2424] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_flower_nfp_flower_ctrl.c.o
[1429/2424] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_flow.c.o
[1430/2424] Generating symbol file drivers/librte_mempool_dpaa2.so.24.1.p/librte_mempool_dpaa2.so.24.1.symbols
[1431/2424] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_flower_nfp_conntrack.c.o
[1432/2424] Compiling C object drivers/libtmp_rte_net_netvsc.a.p/net_netvsc_hn_rxtx.c.o
[1433/2424] Compiling C object drivers/net/ixgbe/base/libixgbe_base.a.p/ixgbe_common.c.o
[1434/2424] Compiling C object drivers/libtmp_rte_net_memif.a.p/net_memif_rte_eth_memif.c.o
[1435/2424] Compiling C object drivers/libtmp_rte_net_nfp.a.p/net_nfp_flower_nfp_flower_flow.c.o
[1436/2424] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_ethdev.c.o
[1437/2424] Compiling C object drivers/libtmp_rte_net_ixgbe.a.p/net_ixgbe_ixgbe_rxtx.c.o
[1438/2424] Generating rte_common_cnxk.sym_chk with a custom command (wrapped by meson to capture output)
ninja: build stopped: subcommand failed.
-------------------------------END LOGS------------------------------


^ permalink raw reply	[flat|nested] 2+ messages in thread

* |WARNING| pw135569 [PATCH v5 14/14] net/nfp: support offloading bond-flow
       [not found] <20231226023745.3144143-15-chaoyong.he@corigine.com>
  2023-12-26  2:21 ` |FAILURE| pw135556-135569 [PATCH v5 14/14] net/nfp: support offloading bond-flow qemudev
@ 2023-12-26  2:41 ` checkpatch
  1 sibling, 0 replies; 2+ messages in thread
From: checkpatch @ 2023-12-26  2:41 UTC (permalink / raw)
  To: test-report; +Cc: Chaoyong He

Test-Label: checkpatch
Test-Status: WARNING
http://dpdk.org/patch/135569

_coding style issues_


WARNING:TYPO_SPELLING: 'SIZ' may be misspelled - perhaps 'SIZE'?
#449: FILE: drivers/net/nfp/flower/nfp_flower_flow.c:2349:
+	if (act_len + pre_bond_size > NFP_FL_MAX_A_SIZ) {

WARNING:TYPO_SPELLING: 'SIZ' may be misspelled - perhaps 'SIZE'?
#469: FILE: drivers/net/nfp/flower/nfp_flower_flow.c:2369:
+	pre_bond->head.len_lw = pre_bond_size >> NFP_FL_LW_SIZ;

total: 0 errors, 2 warnings, 0 checks, 422 lines checked

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-12-26  2:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20231226023745.3144143-15-chaoyong.he@corigine.com>
2023-12-26  2:21 ` |FAILURE| pw135556-135569 [PATCH v5 14/14] net/nfp: support offloading bond-flow qemudev
2023-12-26  2:41 ` |WARNING| pw135569 " checkpatch

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).