automatic DPDK test reports
 help / color / mirror / Atom feed
* |WARNING| pw108833 [PATCH V2 4/4] app/testpmd: fix slave device isn't released
       [not found] <20220324030036.4761-5-humin29@huawei.com>
@ 2022-03-24  3:03 ` checkpatch
  2022-03-24  5:19 ` |SUCCESS| " 0-day Robot
  1 sibling, 0 replies; 2+ messages in thread
From: checkpatch @ 2022-03-24  3:03 UTC (permalink / raw)
  To: test-report; +Cc: Min Hu (Connor)

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

_coding style issues_


WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#34: 
Subject: [PATCH V2 4/4] app/testpmd: fix slave device isn't released

WARNING:TYPO_SPELLING: 'slaves' may be misspelled - perhaps 'secondaries'?
#63: 
release operation for all active slaves under a bond device.

WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#106: FILE: app/test-pmd/testpmd.c:3173:
+clear_bonding_slave_device(portid_t *slave_pids, uint16_t num_slaves)

WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#106: FILE: app/test-pmd/testpmd.c:3173:
+clear_bonding_slave_device(portid_t *slave_pids, uint16_t num_slaves)

WARNING:TYPO_SPELLING: 'slaves' may be misspelled - perhaps 'secondaries'?
#106: FILE: app/test-pmd/testpmd.c:3173:
+clear_bonding_slave_device(portid_t *slave_pids, uint16_t num_slaves)

WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#109: FILE: app/test-pmd/testpmd.c:3176:
+	portid_t slave_pid;

WARNING:TYPO_SPELLING: 'slaves' may be misspelled - perhaps 'secondaries'?
#112: FILE: app/test-pmd/testpmd.c:3179:
+	for (i = 0; i < num_slaves; i++) {

WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#113: FILE: app/test-pmd/testpmd.c:3180:
+		slave_pid = slave_pids[i];

WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#113: FILE: app/test-pmd/testpmd.c:3180:
+		slave_pid = slave_pids[i];

WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#114: FILE: app/test-pmd/testpmd.c:3181:
+		if (port_is_started(slave_pid) == 1) {

WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#115: FILE: app/test-pmd/testpmd.c:3182:
+			if (rte_eth_dev_stop(slave_pid) != 0)

WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#117: FILE: app/test-pmd/testpmd.c:3184:
+					slave_pid);

WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#119: FILE: app/test-pmd/testpmd.c:3186:
+			port = &ports[slave_pid];

WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#123: FILE: app/test-pmd/testpmd.c:3190:
+		clear_port_slave_flag(slave_pid);

WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#123: FILE: app/test-pmd/testpmd.c:3190:
+		clear_port_slave_flag(slave_pid);

WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#125: FILE: app/test-pmd/testpmd.c:3192:
+		/* Close slave device when testpmd quit or is killed. */

WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#127: FILE: app/test-pmd/testpmd.c:3194:
+			rte_eth_dev_close(slave_pid);

WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#138: FILE: app/test-pmd/testpmd.c:3205:
+	portid_t slave_pids[RTE_MAX_ETHPORTS];

WARNING:TYPO_SPELLING: 'slaves' may be misspelled - perhaps 'secondaries'?
#139: FILE: app/test-pmd/testpmd.c:3206:
+	int num_slaves = 0;

WARNING:TYPO_SPELLING: 'slaves' may be misspelled - perhaps 'secondaries'?
#150: FILE: app/test-pmd/testpmd.c:3243:
+				num_slaves = rte_eth_bond_slaves_get(pi,

WARNING:TYPO_SPELLING: 'slaves' may be misspelled - perhaps 'secondaries'?
#150: FILE: app/test-pmd/testpmd.c:3243:
+				num_slaves = rte_eth_bond_slaves_get(pi,

WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#151: FILE: app/test-pmd/testpmd.c:3244:
+							slave_pids,

WARNING:TYPO_SPELLING: 'slaves' may be misspelled - perhaps 'secondaries'?
#157: FILE: app/test-pmd/testpmd.c:3250:
+			 * If this port is bonded device, all slaves under the

WARNING:TYPO_SPELLING: 'slaves' may be misspelled - perhaps 'secondaries'?
#160: FILE: app/test-pmd/testpmd.c:3253:
+			if (port->bond_flag == 1 && num_slaves > 0)

WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#161: FILE: app/test-pmd/testpmd.c:3254:
+				clear_bonding_slave_device(slave_pids,

WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'?
#161: FILE: app/test-pmd/testpmd.c:3254:
+				clear_bonding_slave_device(slave_pids,

WARNING:TYPO_SPELLING: 'slaves' may be misspelled - perhaps 'secondaries'?
#162: FILE: app/test-pmd/testpmd.c:3255:
+							num_slaves);

total: 0 errors, 27 warnings, 87 lines checked

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

* |SUCCESS| pw108833 [PATCH V2 4/4] app/testpmd: fix slave device isn't released
       [not found] <20220324030036.4761-5-humin29@huawei.com>
  2022-03-24  3:03 ` |WARNING| pw108833 [PATCH V2 4/4] app/testpmd: fix slave device isn't released checkpatch
@ 2022-03-24  5:19 ` 0-day Robot
  1 sibling, 0 replies; 2+ messages in thread
From: 0-day Robot @ 2022-03-24  5:19 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/108833/

_github build: passed_
Build URL: https://github.com/ovsrobot/dpdk/actions/runs/2032047189

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

end of thread, other threads:[~2022-03-24  4:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20220324030036.4761-5-humin29@huawei.com>
2022-03-24  3:03 ` |WARNING| pw108833 [PATCH V2 4/4] app/testpmd: fix slave device isn't released checkpatch
2022-03-24  5:19 ` |SUCCESS| " 0-day Robot

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