Re: [PATCH] net: sched: export __netdev_watchdog_up()

2020-06-04 Thread David Miller
From: Valentin Longchamp Date: Wed, 3 Jun 2020 23:15:27 +0200 > @@ -464,6 +464,7 @@ void __netdev_watchdog_up(struct net_device *dev) > dev_hold(dev); > } > } > +EXPORT_SYMBOL(__netdev_watchdog_up); Please use EXPORT_SYMBOL_GPL(), thank you.

[PATCH] net: sched: export __netdev_watchdog_up()

2020-06-03 Thread Valentin Longchamp
Since the quiesce/activate rework, __netdev_watchdog_up() is directly called in the ucc_geth driver. Unfortunately, this function is not available for modules and thus ucc_geth cannot be built as a module anymore. Fix it by exporting __netdev_watchdog_up(). Since the commit introducing the regres