/* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (C) B.A.T.M.A.N. contributors: * * Marek Lindner, Simon Wunderlich */ #ifndef _NET_BATMAN_ADV_LOG_H_ #define _NET_BATMAN_ADV_LOG_H_ #include "main.h" #include <linux/atomic.h> #include <linux/bitops.h> #include <linux/compiler.h> #include <linux/printk.h> #ifdef CONFIG_BATMAN_ADV_DEBUG int batadv_debug_log_setup(struct batadv_priv *bat_priv); void batadv_debug_log_cleanup(struct batadv_priv *bat_priv); #else static inline int batadv_debug_log_setup(struct batadv_priv *bat_priv) { return 0; } static inline void batadv_debug_log_cleanup(struct batadv_priv *bat_priv) { } #endif /** * enum batadv_dbg_level - available log levels */ enum batadv_dbg_level { … }; #ifdef CONFIG_BATMAN_ADV_DEBUG int batadv_debug_log(struct batadv_priv *bat_priv, const char *fmt, ...) __printf(2, 3); /** * _batadv_dbg() - Store debug output with(out) rate limiting * @type: type of debug message * @bat_priv: the bat priv with all the soft interface information * @ratelimited: whether output should be rate limited * @fmt: format string * @arg: variable arguments */ #define _batadv_dbg(type, bat_priv, ratelimited, fmt, arg...) … #else /* !CONFIG_BATMAN_ADV_DEBUG */ __printf(4, 5) static inline void _batadv_dbg(int type __always_unused, struct batadv_priv *bat_priv __always_unused, int ratelimited __always_unused, const char *fmt __always_unused, ...) { } #endif /** * batadv_dbg() - Store debug output without rate limiting * @type: type of debug message * @bat_priv: the bat priv with all the soft interface information * @arg: format string and variable arguments */ #define batadv_dbg(type, bat_priv, arg...) … /** * batadv_dbg_ratelimited() - Store debug output with rate limiting * @type: type of debug message * @bat_priv: the bat priv with all the soft interface information * @arg: format string and variable arguments */ #define batadv_dbg_ratelimited(type, bat_priv, arg...) … /** * batadv_info() - Store message in debug buffer and print it to kmsg buffer * @net_dev: the soft interface net device * @fmt: format string * @arg: variable arguments */ #define batadv_info(net_dev, fmt, arg...) … /** * batadv_err() - Store error in debug buffer and print it to kmsg buffer * @net_dev: the soft interface net device * @fmt: format string * @arg: variable arguments */ #define batadv_err(net_dev, fmt, arg...) … #endif /* _NET_BATMAN_ADV_LOG_H_ */