Re: [PATCH v3] netpoll: Remove 4s sleep during carrier detection
From: Breno Leitao
Date: Thu Jan 26 2023 - 05:52:40 EST
On 26/01/2023 09:04, David Laight wrote:
This patch removes the msleep(4s) during netpoll_setup() if the carrier
appears instantly.
Here are some scenarios where this workaround is counter-productive in
modern ages:
Servers which have BMC communicating over NC-SI via the same NIC as gets
used for netconsole. BMC will keep the PHY up, hence the carrier
appearing instantly.
The link is fibre, SERDES getting sync could happen within 0.1Hz, and
the carrier also appears instantly.
Other than that, if a driver is reporting instant carrier and then
losing it, this is probably a driver bug.
I can't help feeling that this will break something.
If we see breakages after this patch, then we can identify broken
drivers, and fix the driver itself.
On the other side, if we keep this workaround, we are penalizing the
boot of every modern machine in 4s, just because we might have some
broken driver somewhere.