Re: [dpdk-dev] [PATCH 1/3] app/testpmd: fix port status of active slave device

2022-02-04 Thread Ferruh Yigit
On 10/25/2021 7:39 AM, Min Hu (Connor) wrote: From: Huisong Li Stopping a bond device also stops all active slaves under the bond device. If this port is bond device, we need to modify the port status of all slaves from RTE_PORT_STARTED to RTE_PORT_STOPPED. Fixes: 0e545d3047fe ("app/testpmd: c

Re: [dpdk-dev] [PATCH 1/3] app/testpmd: fix port status of active slave device

2022-02-02 Thread Singh, Aman Deep
On 11/16/2021 6:50 AM, lihuisong (C) wrote: 在 2021/11/15 21:01, Singh, Aman Deep 写道: On 10/25/2021 12:09 PM, Min Hu (Connor) wrote: From: Huisong Li Stopping a bond device also stops all active slaves under the bond device. If this port is bond device, we need to modify the port status of

Re: [dpdk-dev] [PATCH 1/3] app/testpmd: fix port status of active slave device

2021-11-15 Thread lihuisong (C)
在 2021/11/15 21:01, Singh, Aman Deep 写道: On 10/25/2021 12:09 PM, Min Hu (Connor) wrote: From: Huisong Li Stopping a bond device also stops all active slaves under the bond device. If this port is bond device, we need to modify the port status of all slaves from RTE_PORT_STARTED to RTE_PORT

Re: [dpdk-dev] [PATCH 1/3] app/testpmd: fix port status of active slave device

2021-11-15 Thread Singh, Aman Deep
On 10/25/2021 12:09 PM, Min Hu (Connor) wrote: From: Huisong Li Stopping a bond device also stops all active slaves under the bond device. If this port is bond device, we need to modify the port status of all slaves from RTE_PORT_STARTED to RTE_PORT_STOPPED. Fixes: 0e545d3047fe ("app/testpmd:

[dpdk-dev] [PATCH 1/3] app/testpmd: fix port status of active slave device

2021-10-24 Thread Min Hu (Connor)
From: Huisong Li Stopping a bond device also stops all active slaves under the bond device. If this port is bond device, we need to modify the port status of all slaves from RTE_PORT_STARTED to RTE_PORT_STOPPED. Fixes: 0e545d3047fe ("app/testpmd: check stopping port is not in bonding") Cc: sta..