]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
drop queue-5.14/wwan-core-fix-missing-rtm_newlink-event-for-default-link.patch
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 16 Sep 2021 09:10:29 +0000 (11:10 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 16 Sep 2021 09:10:29 +0000 (11:10 +0200)
queue-5.14/series
queue-5.14/wwan-core-fix-missing-rtm_newlink-event-for-default-link.patch [deleted file]

index 5d5a2c2e89a8614ba07e16af7fb98372bc698891..1502317b777a904362c8663c8a60cf22a8d5e56f 100644 (file)
@@ -39,7 +39,6 @@ arm64-mm-fix-tlbi-vs-asid-rollover.patch
 arm64-head-avoid-over-mapping-in-map_memory.patch
 arm64-do-not-trap-pmsnevfr_el1.patch
 iio-ltc2983-fix-device-probe.patch
-wwan-core-fix-missing-rtm_newlink-event-for-default-link.patch
 wcn36xx-ensure-finish-scan-is-not-requested-before-start-scan.patch
 crypto-public_key-fix-overflow-during-implicit-conversion.patch
 block-bfq-fix-bfq_set_next_ioprio_data.patch
diff --git a/queue-5.14/wwan-core-fix-missing-rtm_newlink-event-for-default-link.patch b/queue-5.14/wwan-core-fix-missing-rtm_newlink-event-for-default-link.patch
deleted file mode 100644 (file)
index 7376059..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-From 8cc236db1a91d0c91651595ba75942a583008455 Mon Sep 17 00:00:00 2001
-From: Loic Poulain <loic.poulain@linaro.org>
-Date: Thu, 22 Jul 2021 20:21:05 +0200
-Subject: wwan: core: Fix missing RTM_NEWLINK event for default link
-
-From: Loic Poulain <loic.poulain@linaro.org>
-
-commit 8cc236db1a91d0c91651595ba75942a583008455 upstream.
-
-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: ca374290aaad ("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>
-Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
----
- drivers/net/wwan/wwan_core.c |    2 ++
- 1 file changed, 2 insertions(+)
-
---- a/drivers/net/wwan/wwan_core.c
-+++ b/drivers/net/wwan/wwan_core.c
-@@ -990,6 +990,8 @@ static void wwan_create_default_link(str
-       rtnl_configure_link(dev, NULL); /* Link initialized, notify new link */
-+      rtnl_configure_link(dev, NULL); /* Link initialized, notify new link */
-+
- unlock:
-       rtnl_unlock();