]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
interconnect: Print the tag in the debugfs summary
authorGeorgi Djakov <georgi.djakov@linaro.org>
Fri, 20 Dec 2019 16:38:46 +0000 (18:38 +0200)
committerGeorgi Djakov <georgi.djakov@linaro.org>
Mon, 6 Jan 2020 17:17:54 +0000 (19:17 +0200)
Now we can have a tag associated with the path. Add this information
to the interconnect_summary file, as the current information in debugfs
is incomplete.

Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: Georgi Djakov <georgi.djakov@linaro.org>
drivers/interconnect/core.c

index 63c164264b7387e20e81251dd74f061f60517990..10dde5df92510be0d6a5139a208fe8ef4ff9507c 100644 (file)
@@ -34,7 +34,7 @@ static void icc_summary_show_one(struct seq_file *s, struct icc_node *n)
        if (!n)
                return;
 
-       seq_printf(s, "%-30s %12u %12u\n",
+       seq_printf(s, "%-42s %12u %12u\n",
                   n->name, n->avg_bw, n->peak_bw);
 }
 
@@ -42,8 +42,8 @@ static int icc_summary_show(struct seq_file *s, void *data)
 {
        struct icc_provider *provider;
 
-       seq_puts(s, " node                                   avg         peak\n");
-       seq_puts(s, "--------------------------------------------------------\n");
+       seq_puts(s, " node                                  tag          avg         peak\n");
+       seq_puts(s, "--------------------------------------------------------------------\n");
 
        mutex_lock(&icc_lock);
 
@@ -58,8 +58,8 @@ static int icc_summary_show(struct seq_file *s, void *data)
                                if (!r->dev)
                                        continue;
 
-                               seq_printf(s, "    %-26s %12u %12u\n",
-                                          dev_name(r->dev), r->avg_bw,
+                               seq_printf(s, "  %-27s %12u %12u %12u\n",
+                                          dev_name(r->dev), r->tag, r->avg_bw,
                                           r->peak_bw);
                        }
                }