batman-adv: use static string for table headers
Use a static string when showing table headers rather then a nonsense parametric one with fixed arguments. It is easier to grep and it does not need to be recomputed at runtime each time. Reported-by: Joe Perches <joe@perches.com> Signed-off-by: Antonio Quartulli <a@unstable.cc> [sven@narfation.org: fix conflicts with current version] Signed-off-by: Sven Eckelmann <sven@narfation.org> Signed-off-by: Marek Lindner <mareklindner@neomailbox.ch>
This commit is contained in:
@@ -151,8 +151,8 @@ static void batadv_v_neigh_print(struct batadv_priv *bat_priv,
|
||||
struct batadv_hard_iface *hard_iface;
|
||||
int batman_count = 0;
|
||||
|
||||
seq_printf(seq, " %-15s %s (%11s) [%10s]\n", "Neighbor",
|
||||
"last-seen", "throughput", "IF");
|
||||
seq_puts(seq,
|
||||
" Neighbor last-seen ( throughput) [ IF]\n");
|
||||
|
||||
rcu_read_lock();
|
||||
list_for_each_entry_rcu(hard_iface, &batadv_hardif_list, list) {
|
||||
@@ -191,9 +191,8 @@ static void batadv_v_orig_print(struct batadv_priv *bat_priv,
|
||||
int batman_count = 0;
|
||||
u32 i;
|
||||
|
||||
seq_printf(seq, " %-15s %s (%11s) %17s [%10s]: %20s ...\n",
|
||||
"Originator", "last-seen", "throughput", "Nexthop",
|
||||
"outgoingIF", "Potential nexthops");
|
||||
seq_puts(seq,
|
||||
" Originator last-seen ( throughput) Nexthop [outgoingIF]: Potential nexthops ...\n");
|
||||
|
||||
for (i = 0; i < hash->size; i++) {
|
||||
head = &hash->table[i];
|
||||
|
Reference in New Issue
Block a user