netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net v4] r8169: Bad implementation of netif_carrier_*
@ 2016-02-11  6:27 Corcodel Marian
  2016-02-11  8:39 ` David Miller
  2016-02-12 13:40 ` Corcodel Marian
  0 siblings, 2 replies; 7+ messages in thread
From: Corcodel Marian @ 2016-02-11  6:27 UTC (permalink / raw)
  To: netdev; +Cc: Corcodel Marian

  On probe stage what carrier to stop and rest two situation
  netif_carrier_* is slow and disturbing autonegociation process.

Signed-off-by: Corcodel Marian <asd@marian1000.go.ro>
---
 drivers/net/ethernet/realtek/r8169.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/drivers/net/ethernet/realtek/r8169.c b/drivers/net/ethernet/realtek/r8169.c
index 1f75478..0f1adfa 100644
--- a/drivers/net/ethernet/realtek/r8169.c
+++ b/drivers/net/ethernet/realtek/r8169.c
@@ -1675,11 +1675,9 @@ static void __rtl8169_check_link_status(struct net_device *dev,
 		/* This is to cancel a scheduled suspend if there's one. */
 		if (pm)
 			pm_request_resume(&tp->pci_dev->dev);
-		netif_carrier_on(dev);
 		if (net_ratelimit())
 			netif_info(tp, ifup, dev, "link up\n");
 	} else {
-		netif_carrier_off(dev);
 		netif_info(tp, ifdown, dev, "link down\n");
 		if (pm)
 			pm_schedule_suspend(&tp->pci_dev->dev, 5000);
@@ -8441,7 +8439,6 @@ static int rtl_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
 	if (pci_dev_run_wake(pdev))
 		pm_runtime_put_noidle(&pdev->dev);
 
-	netif_carrier_off(dev);
 
 out:
 	return rc;
-- 
2.5.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2016-02-12 16:43 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-11  6:27 [PATCH net v4] r8169: Bad implementation of netif_carrier_* Corcodel Marian
2016-02-11  8:39 ` David Miller
2016-02-11 10:52   ` Corcodel Marian
2016-02-11 11:12     ` David Miller
2016-02-11 11:41       ` Corcodel Marian
2016-02-12 13:40 ` Corcodel Marian
2016-02-12 16:43   ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).