public inbox for b.a.t.m.a.n@lists.open-mesh.org
 help / color / mirror / Atom feed
* [B.A.T.M.A.N.] [PATCH] batman-adv: Use __func__ to add function names to messages
@ 2017-03-08 11:43 Sven Eckelmann
  2017-03-08 11:44 ` Sven Eckelmann
  2017-03-17 11:55 ` Sven Eckelmann
  0 siblings, 2 replies; 3+ messages in thread
From: Sven Eckelmann @ 2017-03-08 11:43 UTC (permalink / raw)
  To: b.a.t.m.a.n

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: Sven Eckelmann <sven@narfation.org>
---
 net/batman-adv/tp_meter.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/net/batman-adv/tp_meter.c b/net/batman-adv/tp_meter.c
index c94ebde..556f9a8 100644
--- a/net/batman-adv/tp_meter.c
+++ b/net/batman-adv/tp_meter.c
@@ -873,8 +873,8 @@ static int batadv_tp_send(void *arg)
 		/* something went wrong during the preparation/transmission */
 		if (unlikely(err && err != BATADV_TP_REASON_CANT_SEND)) {
 			batadv_dbg(BATADV_DBG_TP_METER, bat_priv,
-				   "Meter: batadv_tp_send() cannot send packets (%d)\n",
-				   err);
+				   "Meter: %s() cannot send packets (%d)\n",
+				   __func__, err);
 			/* ensure nobody else tries to stop the thread now */
 			if (atomic_dec_and_test(&tp_vars->sending))
 				tp_vars->reason = err;
@@ -979,7 +979,8 @@ void batadv_tp_start(struct batadv_priv *bat_priv, const u8 *dst,
 	if (!tp_vars) {
 		spin_unlock_bh(&bat_priv->tp_list_lock);
 		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,
 					      dst, bat_priv, session_cookie);
 		return;
-- 
2.11.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [B.A.T.M.A.N.] [PATCH] batman-adv: Use __func__ to add function names to messages
  2017-03-08 11:43 [B.A.T.M.A.N.] [PATCH] batman-adv: Use __func__ to add function names to messages Sven Eckelmann
@ 2017-03-08 11:44 ` Sven Eckelmann
  2017-03-17 11:55 ` Sven Eckelmann
  1 sibling, 0 replies; 3+ messages in thread
From: Sven Eckelmann @ 2017-03-08 11:44 UTC (permalink / raw)
  To: b.a.t.m.a.n

[-- Attachment #1: Type: text/plain, Size: 354 bytes --]

Hi,

this should mute following warning from checkpatch.pl:

    WARNING: Prefer using "%s", __func__ to embedded function names
    #876: FILE: ./net/batman-adv/tp_meter.c:876:
    +                              "Meter: batadv_tp_send() cannot send packets (%d)\n",
    
    total: 0 errors, 1 warnings, 0 checks, 1502 lines checked

Kind regards,
	Sven

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [B.A.T.M.A.N.] [PATCH] batman-adv: Use __func__ to add function names to messages
  2017-03-08 11:43 [B.A.T.M.A.N.] [PATCH] batman-adv: Use __func__ to add function names to messages Sven Eckelmann
  2017-03-08 11:44 ` Sven Eckelmann
@ 2017-03-17 11:55 ` Sven Eckelmann
  1 sibling, 0 replies; 3+ messages in thread
From: Sven Eckelmann @ 2017-03-17 11:55 UTC (permalink / raw)
  To: b.a.t.m.a.n

[-- Attachment #1: Type: text/plain, Size: 577 bytes --]

On Mittwoch, 8. März 2017 12:43:59 CET Sven Eckelmann wrote:
> 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: Sven Eckelmann <sven@narfation.org>
> ---
>  net/batman-adv/tp_meter.c | 7 ++++---
>  1 file changed, 4 insertions(+), 3 deletions(-)

Applied in 9f363d7edd25ae73fa7dc5fef30db71a55c27c32 [1].

Kind regards,
	Sven

[1] https://git.open-mesh.org/batman-adv.git/commit/9f363d7edd25ae73fa7dc5fef30db71a55c27c32

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-03-17 11:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-08 11:43 [B.A.T.M.A.N.] [PATCH] batman-adv: Use __func__ to add function names to messages Sven Eckelmann
2017-03-08 11:44 ` Sven Eckelmann
2017-03-17 11:55 ` Sven Eckelmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox