[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <aQ9kziDzlq2Y4a_I@horms.kernel.org>
Date: Sat, 8 Nov 2025 15:42:06 +0000
From: Simon Horman <horms@...nel.org>
To: Xuan Zhuo <xuanzhuo@...ux.alibaba.com>
Cc: netdev@...r.kernel.org, Andrew Lunn <andrew+netdev@...n.ch>,
"David S. Miller" <davem@...emloft.net>,
Eric Dumazet <edumazet@...gle.com>,
Jakub Kicinski <kuba@...nel.org>, Paolo Abeni <pabeni@...hat.com>,
Wen Gu <guwen@...ux.alibaba.com>,
Philo Lu <lulie@...ux.alibaba.com>,
Lorenzo Bianconi <lorenzo@...nel.org>,
Vadim Fedorenko <vadim.fedorenko@...ux.dev>,
Lukas Bulwahn <lukas.bulwahn@...hat.com>,
Geert Uytterhoeven <geert+renesas@...der.be>,
Vivian Wang <wangruikang@...as.ac.cn>,
Troy Mitchell <troy.mitchell@...ux.spacemit.com>,
Dust Li <dust.li@...ux.alibaba.com>
Subject: Re: [PATCH net-next v10 1/5] eea: introduce PCI framework
On Wed, Nov 05, 2025 at 09:34:15AM +0800, Xuan Zhuo wrote:
> Add basic driver framework for the Alibaba Elastic Ethernet Adapter(EEA).
>
> This commit implements the EEA PCI probe functionality.
>
> Reviewed-by: Dust Li <dust.li@...ux.alibaba.com>
> Reviewed-by: Philo Lu <lulie@...ux.alibaba.com>
> Signed-off-by: Wen Gu <guwen@...ux.alibaba.com>
> Signed-off-by: Xuan Zhuo <xuanzhuo@...ux.alibaba.com>
...
> diff --git a/drivers/net/ethernet/alibaba/eea/eea_pci.c b/drivers/net/ethernet/alibaba/eea/eea_pci.c
...
> +int eea_device_reset(struct eea_device *edev)
> +{
> + struct eea_pci_device *ep_dev = edev->ep_dev;
> + int i, err;
> + u8 val;
> +
> + eea_pci_io_set_status(edev, 0);
> +
> + while (eea_pci_io_get_status(edev))
> + msleep(20);
If eea_pci_io_get_status never returns true, then this will loop forever.
Meanwhile the read_poll_timeout() call below seems to implement
the same check as above, but with a timeout. Perhaps this is
an editing artifact and the loop above should simply be removed?
> +
> + err = read_poll_timeout(cfg_read8, val, !val, 20, EEA_RESET_TIMEOUT_US,
> + false, ep_dev->reg, device_status);
> +
> + if (err)
> + return -EBUSY;
> +
> + for (i = 0; i < ep_dev->msix_vec_n; ++i)
> + synchronize_irq(pci_irq_vector(ep_dev->pci_dev, i));
> +
> + return 0;
> +}
...
Powered by blists - more mailing lists