Message ID | 20210608152947.30833-2-sw@simonwunderlich.de (mailing list archive) |
---|---|
State | Accepted |
Commit | 9f460ae31c4435fd022c443a6029352217a16ac1 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [1/1] batman-adv: Avoid WARN_ON timing related checks | expand |
Context | Check | Description |
---|---|---|
netdev/cover_letter | success | Link |
netdev/fixes_present | success | Link |
netdev/patch_count | success | Link |
netdev/tree_selection | success | Guessed tree name to be net-next |
netdev/subject_prefix | warning | Target tree name not specified in the subject |
netdev/cc_maintainers | fail | 2 blamed authors not CCed: mareklindner@neomailbox.ch a@unstable.cc; 2 maintainers not CCed: mareklindner@neomailbox.ch a@unstable.cc |
netdev/source_inline | success | Was 0 now: 0 |
netdev/verify_signedoff | success | Link |
netdev/module_param | success | Was 0 now: 0 |
netdev/build_32bit | success | Errors and warnings before: 0 this patch: 0 |
netdev/kdoc | success | Errors and warnings before: 0 this patch: 0 |
netdev/verify_fixes | success | Link |
netdev/checkpatch | success | total: 0 errors, 0 warnings, 0 checks, 11 lines checked |
netdev/build_allmodconfig_warn | success | Errors and warnings before: 0 this patch: 0 |
netdev/header_inline | success | Link |
Hello: This patch was applied to netdev/net.git (refs/heads/master): On Tue, 8 Jun 2021 17:29:47 +0200 you wrote: > From: Sven Eckelmann <sven@narfation.org> > > The soft/batadv interface for a queued OGM can be changed during the time > the OGM was queued for transmission and when the OGM is actually > transmitted by the worker. > > But WARN_ON must be used to denote kernel bugs and not to print simple > warnings. A warning can simply be printed using pr_warn. > > [...] Here is the summary with links: - [1/1] batman-adv: Avoid WARN_ON timing related checks https://git.kernel.org/netdev/net/c/9f460ae31c44 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/net/batman-adv/bat_iv_ogm.c b/net/batman-adv/bat_iv_ogm.c index 789f257be24f..fc8be49010b9 100644 --- a/net/batman-adv/bat_iv_ogm.c +++ b/net/batman-adv/bat_iv_ogm.c @@ -409,8 +409,10 @@ static void batadv_iv_ogm_emit(struct batadv_forw_packet *forw_packet) if (WARN_ON(!forw_packet->if_outgoing)) return; - if (WARN_ON(forw_packet->if_outgoing->soft_iface != soft_iface)) + if (forw_packet->if_outgoing->soft_iface != soft_iface) { + pr_warn("%s: soft interface switch for queued OGM\n", __func__); return; + } if (forw_packet->if_incoming->if_status != BATADV_IF_ACTIVE) return;