* [dpdk-test-report] |WARNING| pw95646 [PATCH] [v2] dmadev: introduce DMA device library
@ 2021-07-11 10:11 dpdklab
0 siblings, 0 replies; 2+ messages in thread
From: dpdklab @ 2021-07-11 10:11 UTC (permalink / raw)
To: Test Report; +Cc: dpdklab
[-- Attachment #1: Type: text/plain, Size: 2604 bytes --]
Test-Label: iol-abi-testing
Test-Status: WARNING
http://dpdk.org/patch/95646
_Testing issues_
Submitter: fengchengwen <fengchengwen@huawei.com>
Date: Sunday, July 11 2021 09:25:56
DPDK git baseline: Repo:dpdk
Branch: master
CommitID:a95bbb72623c310df4d0c8ad45c2ee06f538e01b
95646 --> testing fail
Test environment and result as below:
+------------------+----------+
| Environment | abi_test |
+==================+==========+
| Ubuntu 18.04 ARM | PASS |
+------------------+----------+
| FreeBSD 13 | FAIL |
+------------------+----------+
| Ubuntu 18.04 | PASS |
+------------------+----------+
| Ubuntu 20.04 | PASS |
+------------------+----------+
| CentOS Stream 8 | PASS |
+------------------+----------+
| Fedora 32 | PASS |
+------------------+----------+
==== 20 line log output for FreeBSD 13 (abi_test): ====
Functions changes summary: 0 Removed, 0 Changed (1 filtered out), 0 Added function
Variables changes summary: 0 Removed, 0 Changed, 0 Added variable
Functions changes summary: 0 Removed, 0 Changed (1 filtered out), 0 Added (1 filtered out) functions
Variables changes summary: 0 Removed, 0 Changed, 0 Added variable
Functions changes summary: 0 Removed, 0 Changed (10 filtered out), 0 Added (1 filtered out) functions
Variables changes summary: 0 Removed, 0 Changed, 0 Added variable
Functions changes summary: 0 Removed, 0 Changed (1 filtered out), 0 Added function
Variables changes summary: 0 Removed, 0 Changed, 0 Added variable
Error: cannot find librte_event_octeontx.dump in build_install
Functions changes summary: 0 Removed, 0 Changed, 0 Added (6 filtered out) functions
Variables changes summary: 0 Removed, 0 Changed, 0 Added variable
Functions changes summary: 0 Removed, 0 Changed (54 filtered out), 0 Added (11 filtered out) functions
Variables changes summary: 0 Removed, 0 Changed, 0 Added variable
==== End log output ====
Ubuntu 18.04 ARM
Kernel: 5.4.0-53-generic
Compiler: gcc 9.3
FreeBSD 13
Kernel: 13.0
Compiler: clang 11.0.1
Ubuntu 18.04
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 7.5.0-3ubuntu1~18.04
Ubuntu 20.04
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 9.3.0-17ubuntu1~20.04
CentOS Stream 8
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 8.4.1 20200928
Fedora 32
Kernel: 4.18.0-240.10.1.el8_3.x86_64
Compiler: gcc 10.2.1
To view detailed results, visit:
https://lab.dpdk.org/results/dashboard/patchsets/17764/
UNH-IOL DPDK Community Lab
To manage your email subscriptions, visit:
https://lab.dpdk.org/results/dashboard/preferences/subscriptions/
^ permalink raw reply [flat|nested] 2+ messages in thread
* [dpdk-test-report] |WARNING| pw95646 [PATCH v2] dmadev: introduce DMA device library
[not found] <1625995556-41473-1-git-send-email-fengchengwen@huawei.com>
@ 2021-07-11 9:31 ` checkpatch
0 siblings, 0 replies; 2+ messages in thread
From: checkpatch @ 2021-07-11 9:31 UTC (permalink / raw)
To: test-report; +Cc: Chengwen Feng
Test-Label: checkpatch
Test-Status: WARNING
http://dpdk.org/patch/95646
_coding style issues_
WARNING:TYPO_SPELLING: 'multilpe' may be misspelled - perhaps 'multiple'?
#738: FILE: lib/dmadev/rte_dmadev.h:38:
+ * The DMA controller could have multilpe HW-DMA-channels (aka. HW-DMA-queues),
WARNING:MACRO_WITH_FLOW_CONTROL: Macros with flow control statements should be avoided
#850: FILE: lib/dmadev/rte_dmadev.h:150:
+#define RTE_DMADEV_VALID_DEV_ID_OR_ERR_RET(dev_id, retval) do { \
+ if (!rte_dmadev_is_valid_dev(dev_id)) { \
+ RTE_DMADEV_LOG(ERR, "Invalid dev_id=%u
", dev_id); \
+ return retval; \
+ } \
+} while (0)
WARNING:MACRO_WITH_FLOW_CONTROL: Macros with flow control statements should be avoided
#857: FILE: lib/dmadev/rte_dmadev.h:157:
+#define RTE_DMADEV_VALID_DEV_ID_OR_RET(dev_id) do { \
+ if (!rte_dmadev_is_valid_dev(dev_id)) { \
+ RTE_DMADEV_LOG(ERR, "Invalid dev_id=%u
", dev_id); \
+ return; \
+ } \
+} while (0)
WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#910: FILE: lib/dmadev/rte_dmadev.h:210:
+/**< DMA device support slave mode & mem-to-dev transfer.
WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#915: FILE: lib/dmadev/rte_dmadev.h:215:
+/**< DMA device support slave mode & dev-to-mem transfer.
WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#920: FILE: lib/dmadev/rte_dmadev.h:220:
+/**< DMA device support slave mode & dev-to-dev transfer.
WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#1143: FILE: lib/dmadev/rte_dmadev.h:443:
+/**< DMA transfer direction - slave mode & from memory to device.
WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#1145: FILE: lib/dmadev/rte_dmadev.h:445:
+ * this case, the ARM SoCs works in slave mode, it could initiate a DMA move
WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#1151: FILE: lib/dmadev/rte_dmadev.h:451:
+/**< DMA transfer direction - slave mode & from device to memory.
WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#1153: FILE: lib/dmadev/rte_dmadev.h:453:
+ * this case, the ARM SoCs works in slave mode, it could initiate a DMA move
WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#1159: FILE: lib/dmadev/rte_dmadev.h:459:
+/**< DMA transfer direction - slave mode & from device to device.
WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#1161: FILE: lib/dmadev/rte_dmadev.h:461:
+ * this case, the ARM SoCs works in slave mode, it could initiate a DMA move
WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#1172: FILE: lib/dmadev/rte_dmadev.h:472:
+ * enum rte_dma_slave_port_type - slave mode type defines
WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#1172: FILE: lib/dmadev/rte_dmadev.h:472:
+ * enum rte_dma_slave_port_type - slave mode type defines
WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#1174: FILE: lib/dmadev/rte_dmadev.h:474:
+enum rte_dma_slave_port_type {
WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#1175: FILE: lib/dmadev/rte_dmadev.h:475:
+ /** The slave port is PCIE. */
WARNING:TYPO_SPELLING: 'SLAVE' may be misspelled - perhaps 'SECONDARY'?
#1176: FILE: lib/dmadev/rte_dmadev.h:476:
+ RTE_DMA_SLAVE_PORT_PCIE = 1,
WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#1180: FILE: lib/dmadev/rte_dmadev.h:480:
+ * A structure used to descript slave port parameters.
WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#1182: FILE: lib/dmadev/rte_dmadev.h:482:
+struct rte_dma_slave_port_parameters {
WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#1183: FILE: lib/dmadev/rte_dmadev.h:483:
+ enum rte_dma_slave_port_type port_type;
WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#1212: FILE: lib/dmadev/rte_dmadev.h:512:
+ struct rte_dma_slave_port_parameters port;
WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#1216: FILE: lib/dmadev/rte_dmadev.h:516:
+ struct rte_dma_slave_port_parameters peer_port;
total: 0 errors, 22 warnings, 1893 lines checked
Warning in lib/dmadev/rte_dmadev.c:
Using RTE_LOG_REGISTER, prefer RTE_LOG_REGISTER_(DEFAULT|SUFFIX)
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-07-11 10:11 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-11 10:11 [dpdk-test-report] |WARNING| pw95646 [PATCH] [v2] dmadev: introduce DMA device library dpdklab
[not found] <1625995556-41473-1-git-send-email-fengchengwen@huawei.com>
2021-07-11 9:31 ` [dpdk-test-report] |WARNING| pw95646 [PATCH v2] " 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).