]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'rxbusy'
authorDavid S. Miller <davem@davemloft.net>
Fri, 20 Jan 2017 17:22:27 +0000 (12:22 -0500)
committerDavid S. Miller <davem@davemloft.net>
Fri, 20 Jan 2017 17:22:27 +0000 (12:22 -0500)
commit4254f7a4c8d925c4db8b76a39e7bfe65e58578b6
treec2e4ed1163126ecc3416d9510f98322a8b27f343
parentd16b7a72779de8a64e12ceda6ae3eb63d58b4c71
parentbca21f5f69684466dfa329802a7b687bb31ac396
Merge branch 'rxbusy'

Mahesh Bandewar says:

====================
use netdev_is_rx_handler_busy() in few known cases

netdev_rx_handler_register() was recently split into two parts - (a) check
if the handler is used, (b) register the new handler, parts. This is
helpful in scenarios like bonding where at the time of registration there
is too much state to unwind and it should check if the device is free
before building that state. IPvlan and macvlan drivers don't have this
issue however it can make use of the same check instead of using a device
specific check.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>