
Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.6.80 Removed upstreamed: generic/backport-6.6/819-v6.8-0002-nvmem-Create-a-header-for-internal-sharing.patch[1] generic/backport-6.6/819-v6.8-0003-nvmem-Simplify-the-add_cells-hook.patch[2] generic/backport-6.6/819-v6.8-0004-nvmem-Move-and-rename-fixup_cell_info.patch[3] All other patches automatically rebased. 1. https://web.git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.80&id=39dfc17a38f77b14f7cb2619bd3488a18d797d5d 2. https://web.git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.80&id=276dae17ad9757c3813d9e736a0210f05ccdf8b7 3. https://web.git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.80&id=a0ee898a5024f12572e4ce45202df9b149dadc05 Build system: x86/64 Build-tested: bcm27xx/bcm2712, flogic/xiaomi_redmi-router-ax6000-ubootmod, ramips/tplink_archer-a6-v3 Run-tested: bcm27xx/bcm2712, flogic/xiaomi_redmi-router-ax6000-ubootmod, ramips/tplink_archer-a6-v3 Signed-off-by: John Audia <therealgraysky@proton.me> Link: https://github.com/openwrt/openwrt/pull/18140 Signed-off-by: Robert Marko <robimarko@gmail.com>
36 lines
1.4 KiB
Diff
36 lines
1.4 KiB
Diff
From f8d05679fb3faae478d604177b0c188b340371cd Mon Sep 17 00:00:00 2001
|
|
From: Breno Leitao <leitao@debian.org>
|
|
Date: Mon, 22 Apr 2024 05:38:55 -0700
|
|
Subject: [PATCH] net: free_netdev: exit earlier if dummy
|
|
|
|
For dummy devices, exit earlier at free_netdev() instead of executing
|
|
the whole function. This is necessary, because dummy devices are
|
|
special, and shouldn't have the second part of the function executed.
|
|
|
|
Otherwise reg_state, which is NETREG_DUMMY, will be overwritten and
|
|
there will be no way to identify that this is a dummy device. Also, this
|
|
device do not need the final put_device(), since dummy devices are not
|
|
registered (through register_netdevice()), where the device reference is
|
|
increased (at netdev_register_kobject()/device_add()).
|
|
|
|
Suggested-by: Jakub Kicinski <kuba@kernel.org>
|
|
Signed-off-by: Breno Leitao <leitao@debian.org>
|
|
Reviewed-by: Ido Schimmel <idosch@nvidia.com>
|
|
Signed-off-by: David S. Miller <davem@davemloft.net>
|
|
---
|
|
net/core/dev.c | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
--- a/net/core/dev.c
|
|
+++ b/net/core/dev.c
|
|
@@ -11020,7 +11020,8 @@ void free_netdev(struct net_device *dev)
|
|
dev->xdp_bulkq = NULL;
|
|
|
|
/* Compatibility with error handling in drivers */
|
|
- if (dev->reg_state == NETREG_UNINITIALIZED) {
|
|
+ if (dev->reg_state == NETREG_UNINITIALIZED ||
|
|
+ dev->reg_state == NETREG_DUMMY) {
|
|
netdev_freemem(dev);
|
|
return;
|
|
}
|