Re: [PATCH] net/ixgbe: do not update link status in secondary process

2024-04-04 Thread Bruce Richardson
On Wed, Mar 20, 2024 at 10:33:04AM -0700, Stephen Hemminger wrote: > The code to update link status is not safe in secondary process. > If called from secondary it will crash, example from dumpcap: > ixgbe_dev_link_update_share() > ixgbe_dev_link_update() > rte_eth_link_get() >

Re: [PATCH] net/ixgbe: do not update link status in secondary process

2024-03-20 Thread junwan...@cestc.cn
emminger Subject: [PATCH] net/ixgbe: do not update link status in secondary process The code to update link status is not safe in secondary process. If called from secondary it will crash, example from dumpcap: ixgbe_dev_link_update_share() ixgbe_dev_link_update() rte_eth_link_get() Signed-o

[PATCH] net/ixgbe: do not update link status in secondary process

2024-03-20 Thread Stephen Hemminger
The code to update link status is not safe in secondary process. If called from secondary it will crash, example from dumpcap: ixgbe_dev_link_update_share() ixgbe_dev_link_update() rte_eth_link_get() Signed-off-by: Stephen Hemminger Reported-by: Jun Wang --- Simpler versi