950-0359-net-lan78xx-fix-rx-handling-before-first-packet-is-s.patch 1.1 KB

123456789101112131415161718192021222324252627282930
  1. From 213fa517424f4d1c83e7cf486c0f113bd874c32c Mon Sep 17 00:00:00 2001
  2. From: Stefan Wahren <[email protected]>
  3. Date: Mon, 16 Jul 2018 21:33:40 +0200
  4. Subject: [PATCH 359/454] net: lan78xx: fix rx handling before first packet is
  5. send
  6. As long the bh tasklet isn't scheduled once, no packet from the rx path
  7. will be handled. Since the tx path also schedule the same tasklet
  8. this situation only persits until the first packet transmission.
  9. So fix this issue by scheduling the tasklet during ndo_open like in usbnet.
  10. Link: https://github.com/raspberrypi/linux/issues/2617
  11. Fixes: 55d7de9de6c3 ("Microchip's LAN7800 family USB 2/3 to 10/100/1000 Ethernet")
  12. Suggested-by: Floris Bos <[email protected]>
  13. Signed-off-by: Stefan Wahren <[email protected]>
  14. ---
  15. drivers/net/usb/lan78xx.c | 2 ++
  16. 1 file changed, 2 insertions(+)
  17. --- a/drivers/net/usb/lan78xx.c
  18. +++ b/drivers/net/usb/lan78xx.c
  19. @@ -2589,6 +2589,8 @@ static int lan78xx_open(struct net_devic
  20. dev->link_on = false;
  21. + tasklet_schedule(&dev->bh);
  22. +
  23. lan78xx_defer_kevent(dev, EVENT_LINK_RESET);
  24. done:
  25. usb_autopm_put_interface(dev->intf);