mirror of https://gitee.com/openkylin/linux.git
net: aquantia: improve ifup link detection
Original code detected link only after 1 sec is passed after up. Here we replace this with direct service callback which updates link status immediately Signed-off-by: Igor Russkikh <igor.russkikh@aquantia.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4c83f170b3
commit
6775878823
|
@ -355,8 +355,7 @@ int aq_nic_start(struct aq_nic_s *self)
|
||||||
if (err)
|
if (err)
|
||||||
goto err_exit;
|
goto err_exit;
|
||||||
timer_setup(&self->service_timer, aq_nic_service_timer_cb, 0);
|
timer_setup(&self->service_timer, aq_nic_service_timer_cb, 0);
|
||||||
mod_timer(&self->service_timer, jiffies +
|
aq_nic_service_timer_cb(&self->service_timer);
|
||||||
AQ_CFG_SERVICE_TIMER_INTERVAL);
|
|
||||||
|
|
||||||
if (self->aq_nic_cfg.is_polling) {
|
if (self->aq_nic_cfg.is_polling) {
|
||||||
timer_setup(&self->polling_timer, aq_nic_polling_timer_cb, 0);
|
timer_setup(&self->polling_timer, aq_nic_polling_timer_cb, 0);
|
||||||
|
|
Loading…
Reference in New Issue