]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
batman-adv: Remove too short %pM printk field width
authorSven Eckelmann <sven@narfation.org>
Sun, 18 Jun 2017 08:12:30 +0000 (10:12 +0200)
committerSimon Wunderlich <sw@simonwunderlich.de>
Sat, 29 Jul 2017 07:51:26 +0000 (09:51 +0200)
The string representation for a mac address produced by %pM is 17
characters long. Left-aligning the output in a 15 character wide field
width %-15pM is therefore misleading and unnecessary.

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

index a3501173e200d8713bb43d48e8e9a6bb2576835b..c27001d38574fe532de4641b86fb34e8551452f2 100644 (file)
@@ -1281,7 +1281,7 @@ static bool batadv_iv_ogm_calc_tq(struct batadv_orig_node *orig_node,
        batadv_ogm_packet->tq = combined_tq;
 
        batadv_dbg(BATADV_DBG_BATMAN, bat_priv,
-                  "bidirectional: orig = %-15pM neigh = %-15pM => own_bcast = %2i, real recv = %2i, local tq: %3i, asym_penalty: %3i, iface_penalty: %3i, total tq: %3i, if_incoming = %s, if_outgoing = %s\n",
+                  "bidirectional: orig = %pM neigh = %pM => own_bcast = %2i, real recv = %2i, local tq: %3i, asym_penalty: %3i, iface_penalty: %3i, total tq: %3i, if_incoming = %s, if_outgoing = %s\n",
                   orig_node->orig, orig_neigh_node->orig, total_count,
                   neigh_rq_count, tq_own, tq_asym_penalty, tq_iface_penalty,
                   batadv_ogm_packet->tq, if_incoming->net_dev->name,