Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2c237ca3 authored by Georgi Djakov's avatar Georgi Djakov Committed by Mike Tipton
Browse files

interconnect: Print the tag in the debugfs summary



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.

Change-Id: If4629841e3899ea6176d86f5151340f4bacc1002
Reviewed-by: default avatarBjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: default avatarGeorgi Djakov <georgi.djakov@linaro.org>
Git-commit: 2c5127a7fa0369801e623e8c6e58193f86d31d73
Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git


Signed-off-by: default avatarMike Tipton <mdtipton@codeaurora.org>
parent e2298d13
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -57,7 +57,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);
}

@@ -65,8 +65,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);

@@ -81,8 +81,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);
			}
		}