From: Sven Eckelmann Date: Wed, 3 Jun 2026 08:47:53 +0000 (+0200) Subject: batman-adv: document cleanup of batadv_wifi_net_devices entries X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=bb9e48e32d31d3cf12176da81334f345792ac96b;p=thirdparty%2Flinux.git batman-adv: document cleanup of batadv_wifi_net_devices entries It doesn't seem to be obvious how the entries from the batadv_wifi_net_devices rhashtable are getting removed before the actual rhashtable is destroyed. Document the idea behind the process and which steps are involved. Signed-off-by: Sven Eckelmann --- diff --git a/net/batman-adv/hard-interface.c b/net/batman-adv/hard-interface.c index 04b227ec8052..e2c85bd8dbb5 100644 --- a/net/batman-adv/hard-interface.c +++ b/net/batman-adv/hard-interface.c @@ -1185,5 +1185,9 @@ int __init batadv_wifi_net_devices_init(void) */ void batadv_wifi_net_devices_deinit(void) { + /* just destroy table. entries should have been removed by + * unregister_netdevice_notifier() and the corresponding + * NETDEV_UNREGISTER events + */ rhashtable_destroy(&batadv_wifi_net_devices); }