|
@@ -1815,8 +1815,8 @@ int batadv_bla_claim_table_seq_print_text(struct seq_file *seq, void *offset)
|
|
|
"Claims announced for the mesh %s (orig %pM, group id %#.4x)\n",
|
|
|
net_dev->name, primary_addr,
|
|
|
ntohs(bat_priv->bla.claim_dest.group));
|
|
|
- seq_printf(seq, " %-17s %-5s %-17s [o] (%-6s)\n",
|
|
|
- "Client", "VID", "Originator", "CRC");
|
|
|
+ seq_puts(seq,
|
|
|
+ " Client VID Originator [o] (CRC )\n");
|
|
|
for (i = 0; i < hash->size; i++) {
|
|
|
head = &hash->table[i];
|
|
|
|
|
@@ -1873,8 +1873,7 @@ int batadv_bla_backbone_table_seq_print_text(struct seq_file *seq, void *offset)
|
|
|
"Backbones announced for the mesh %s (orig %pM, group id %#.4x)\n",
|
|
|
net_dev->name, primary_addr,
|
|
|
ntohs(bat_priv->bla.claim_dest.group));
|
|
|
- seq_printf(seq, " %-17s %-5s %-9s (%-6s)\n",
|
|
|
- "Originator", "VID", "last seen", "CRC");
|
|
|
+ seq_puts(seq, " Originator VID last seen (CRC )\n");
|
|
|
for (i = 0; i < hash->size; i++) {
|
|
|
head = &hash->table[i];
|
|
|
|