]> git.baikalelectronics.ru Git - kernel.git/commit
wwan: core: Fix missing RTM_NEWLINK event for default link
authorLoic Poulain <loic.poulain@linaro.org>
Thu, 22 Jul 2021 18:21:05 +0000 (20:21 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 23 Jul 2021 16:14:00 +0000 (17:14 +0100)
commit8b7e4689eb9a8e9542b425be7b7913c82d662516
treeea43dd312da5d4edad42fa9263151ee41b77a019
parentd80fd8ea9a75992eafc16daeb97c9ff6d0032154
wwan: core: Fix missing RTM_NEWLINK event for default link

A wwan link created via the wwan_create_default_link procedure is
never notified to the user (RTM_NEWLINK), causing issues with user
tools relying on such event to track network links (NetworkManager).

This is because the procedure misses a call to rtnl_configure_link(),
which sets the link as initialized and notifies the new link (cf
proper usage in __rtnl_newlink()).

Cc: stable@vger.kernel.org
Fixes: 51afa7910c1d ("wwan: core: support default netdev creation")
Suggested-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
Signed-off-by: Loic Poulain <loic.poulain@linaro.org>
Acked-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/wwan/wwan_core.c