interconnect: Zero initial BW after sync-state
The initial BW values may be used by providers to enforce floors. Zero
these values after sync-state so that providers know when to stop
enforcing them.
Fixes: b1d681d8d3
("interconnect: Add sync state support")
Signed-off-by: Mike Tipton <mdtipton@codeaurora.org>
Link: https://lore.kernel.org/r/20210721175432.2119-2-mdtipton@codeaurora.org
Signed-off-by: Georgi Djakov <djakov@kernel.org>
This commit is contained in:
parent
e73f0f0ee7
commit
456a9dace4
|
@ -1106,6 +1106,8 @@ void icc_sync_state(struct device *dev)
|
|||
dev_dbg(p->dev, "interconnect provider is in synced state\n");
|
||||
list_for_each_entry(n, &p->nodes, node_list) {
|
||||
if (n->init_avg || n->init_peak) {
|
||||
n->init_avg = 0;
|
||||
n->init_peak = 0;
|
||||
aggregate_requests(n);
|
||||
p->set(n, n);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue