提交 4e09991a 编写于 作者: S Sven Eckelmann 提交者: Simon Wunderlich

batman-adv: Use __func__ to add function names to messages

The name of the function might change in which these messages are printed.
It is therefore better to let the compiler handle the insertion of the
correct function name.
Signed-off-by: NSven Eckelmann <sven@narfation.org>
Signed-off-by: NSimon Wunderlich <sw@simonwunderlich.de>
上级 f7a2bd65
...@@ -873,8 +873,8 @@ static int batadv_tp_send(void *arg) ...@@ -873,8 +873,8 @@ static int batadv_tp_send(void *arg)
/* something went wrong during the preparation/transmission */ /* something went wrong during the preparation/transmission */
if (unlikely(err && err != BATADV_TP_REASON_CANT_SEND)) { if (unlikely(err && err != BATADV_TP_REASON_CANT_SEND)) {
batadv_dbg(BATADV_DBG_TP_METER, bat_priv, batadv_dbg(BATADV_DBG_TP_METER, bat_priv,
"Meter: batadv_tp_send() cannot send packets (%d)\n", "Meter: %s() cannot send packets (%d)\n",
err); __func__, err);
/* ensure nobody else tries to stop the thread now */ /* ensure nobody else tries to stop the thread now */
if (atomic_dec_and_test(&tp_vars->sending)) if (atomic_dec_and_test(&tp_vars->sending))
tp_vars->reason = err; tp_vars->reason = err;
...@@ -979,7 +979,8 @@ void batadv_tp_start(struct batadv_priv *bat_priv, const u8 *dst, ...@@ -979,7 +979,8 @@ void batadv_tp_start(struct batadv_priv *bat_priv, const u8 *dst,
if (!tp_vars) { if (!tp_vars) {
spin_unlock_bh(&bat_priv->tp_list_lock); spin_unlock_bh(&bat_priv->tp_list_lock);
batadv_dbg(BATADV_DBG_TP_METER, bat_priv, batadv_dbg(BATADV_DBG_TP_METER, bat_priv,
"Meter: batadv_tp_start cannot allocate list elements\n"); "Meter: %s cannot allocate list elements\n",
__func__);
batadv_tp_batctl_error_notify(BATADV_TP_REASON_MEMORY_ERROR, batadv_tp_batctl_error_notify(BATADV_TP_REASON_MEMORY_ERROR,
dst, bat_priv, session_cookie); dst, bat_priv, session_cookie);
return; return;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册