mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 00:04:15 +08:00
clk: aggregate return codes of notify chains
In case there are multiple notify chains for the same clocks (because they were registered by different users), we need to propagate potential failure of any single one of them to the caller. Otherwise we eg risk violating the V/f curve when a notifier is used for DVFS. Signed-off-by: Peter De Schrijver <pdeschrijver@nvidia.com> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org> Signed-off-by: Michael Turquette <mturquette@baylibre.com>
This commit is contained in:
parent
92031575c3
commit
17c34c5667
@ -966,6 +966,8 @@ static int __clk_notify(struct clk_core *core, unsigned long msg,
|
||||
cnd.clk = cn->clk;
|
||||
ret = srcu_notifier_call_chain(&cn->notifier_head, msg,
|
||||
&cnd);
|
||||
if (ret & NOTIFY_STOP_MASK)
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user