]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
batman-adv: Fix possible side-effects in _batadv_dbg
authorSven Eckelmann <sven@narfation.org>
Wed, 22 Feb 2017 16:16:41 +0000 (17:16 +0100)
committerSimon Wunderlich <sw@simonwunderlich.de>
Thu, 16 Mar 2017 20:14:52 +0000 (21:14 +0100)
An argument of a macro should not be evaluated multiple times. Otherwise
embedded operations in these arguments will be executed multiple times.

Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
net/batman-adv/log.h

index 7a2b9f4da07830103a8f00e4c3b488b0367a9dc2..65ce97efa6b5946175f64d300573a532f28387f8 100644 (file)
@@ -73,9 +73,10 @@ __printf(2, 3);
 /* possibly ratelimited debug output */
 #define _batadv_dbg(type, bat_priv, ratelimited, fmt, arg...)          \
        do {                                                            \
-               if (atomic_read(&(bat_priv)->log_level) & (type) &&     \
+               struct batadv_priv *__batpriv = (bat_priv);             \
+               if (atomic_read(&__batpriv->log_level) & (type) &&      \
                    (!(ratelimited) || net_ratelimit()))                \
-                       batadv_debug_log(bat_priv, fmt, ## arg);        \
+                       batadv_debug_log(__batpriv, fmt, ## arg);       \
        }                                                               \
        while (0)
 #else /* !CONFIG_BATMAN_ADV_DEBUG */