From: mturquette@linaro.org (Mike Turquette)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH, resend] clk: get matching entry under lock in of_clk_init()
Date: Tue, 27 Aug 2013 16:06:24 -0700 [thread overview]
Message-ID: <20130827230624.8231.43517@quantum> (raw)
In-Reply-To: <52163CE3.8000806@linaro.org>
Quoting Alex Elder (2013-08-22 09:31:31)
> Currently of_clk_init() finds a matching device node while holding
> the device tree spinlock. When a matching device node is found, the
> lock is dropped and then re-acquired in order to get a reference
> to the matching device id structure.
>
> Acquiring the spinlock twice is unnecessary (and it opens a
> vulnerable window that could conceivably lead to errors).
>
> There already exists an interface for both finding and taking a
> reference to a device id under lock, so use it.
>
> Signed-off-by: Alex Elder <elder@linaro.org>
> Reviewed-by: Christian Daudt <csd@broadcom.com>
> Reviewed-by: Markus Mayer <markus.mayer@linaro.org>
> Reviewed-by: Matt Porter <matt.porter@linaro.org>
Thanks for the fix. Taken into clk-next.
Regards,
Mike
> ---
> drivers/clk/clk.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
> index 56a00db..760ab1d 100644
> --- a/drivers/clk/clk.c
> +++ b/drivers/clk/clk.c
> @@ -2116,13 +2116,13 @@ EXPORT_SYMBOL_GPL(of_clk_get_parent_name);
> */
> void __init of_clk_init(const struct of_device_id *matches)
> {
> + const struct of_device_id *match;
> struct device_node *np;
>
> if (!matches)
> matches = __clk_of_table;
>
> - for_each_matching_node(np, matches) {
> - const struct of_device_id *match = of_match_node(matches, np);
> + for_each_matching_node_and_match(np, matches, &match) {
> of_clk_init_cb_t clk_init_cb = match->data;
> clk_init_cb(np);
> }
> --
> 1.7.9.5
prev parent reply other threads:[~2013-08-27 23:06 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-09 13:16 [PATCH] clk: get matching entry under lock in of_clk_init() Alex Elder
2013-08-22 16:31 ` [PATCH, resend] " Alex Elder
2013-08-27 23:06 ` Mike Turquette [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130827230624.8231.43517@quantum \
--to=mturquette@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).