From: Bjorn Andersson <bjorn.andersson@linaro.org>
To: loic pallardy <loic.pallardy@st.com>
Cc: Sarangdhar Joshi <spjoshi@codeaurora.org>,
Ohad Ben-Cohen <ohad@wizery.com>,
Santosh Shilimkar <ssantosh@kernel.org>,
linux-remoteproc@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-arm-msm@vger.kernel.org, Dave Gerlach <d-gerlach@ti.com>,
Suman Anna <s-anna@ti.com>, Stephen Boyd <sboyd@codeaurora.org>,
Trilok Soni <tsoni@codeaurora.org>
Subject: Re: [PATCH 2/2] remoteproc: Remove firmware_loading_complete
Date: Fri, 16 Dec 2016 11:28:39 -0800 [thread overview]
Message-ID: <20161216192839.GT3439@tuxbot> (raw)
In-Reply-To: <948b5b23-9440-00ef-7cf9-eca62ea93165@st.com>
On Fri 16 Dec 00:26 PST 2016, loic pallardy wrote:
>
>
> On 12/16/2016 01:03 AM, Sarangdhar Joshi wrote:
> >rproc_del() waits on firmware_loading_complete in order to
> >make sure rproc_add() completed successfully before calling
> >rproc_shutdown(). However since rproc_add() will always be
> >called before rproc_del(), we do not need to wait on
> >firmware_loading_complete. Drop this completion variable
> >altogether.
> >
> Hi,
>
> firmware_loading_complete is used to synchronize all operations on rproc
> with parallel work launched by request_firmware_nowait.
We had a deadlock scenario in this code, where a call to rproc_boot()
would grab the rproc mutex and the request_firmware_nowait() callback
would wait on this lock before it would signal the completion that the
rproc_boot() was waiting for.
As the request_firmware_nowait() doesn't do anything other than handle
auto_boot and signal the completion - and there is an internal sleep
mechanism for handling concurrent request_firmware calls - I posted a
patch and dropped the rproc_boot() wait thing.
> rproc_add could be done and firmware loading still pending. In that case
> rproc_del mustn't be called before end of the procedure.
You're right.
We might have an outstanding request_firmware_nowait() when we hit
rproc_del() and we might free the underlaying rproc context.
Holding a reference over the request_firmware_nowait() would solve this,
but would cause issues if we get a rproc_add() from the same driver
(e.g. after module unload/load) before the firmware timer has fired -
and released the resources.
This issue could be remedied by moving the rproc_delete_debug_dir() to
rproc_del() and aim for not having any objects exposed outside the
remoteproc core once rproc_del() returns.
>
> If you decide to remove this synchronization you need either to modify rproc
> boot sequence or to replace it by something else.
>
I agree.
Regards,
Bjorn
WARNING: multiple messages have this Message-ID (diff)
From: bjorn.andersson@linaro.org (Bjorn Andersson)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 2/2] remoteproc: Remove firmware_loading_complete
Date: Fri, 16 Dec 2016 11:28:39 -0800 [thread overview]
Message-ID: <20161216192839.GT3439@tuxbot> (raw)
In-Reply-To: <948b5b23-9440-00ef-7cf9-eca62ea93165@st.com>
On Fri 16 Dec 00:26 PST 2016, loic pallardy wrote:
>
>
> On 12/16/2016 01:03 AM, Sarangdhar Joshi wrote:
> >rproc_del() waits on firmware_loading_complete in order to
> >make sure rproc_add() completed successfully before calling
> >rproc_shutdown(). However since rproc_add() will always be
> >called before rproc_del(), we do not need to wait on
> >firmware_loading_complete. Drop this completion variable
> >altogether.
> >
> Hi,
>
> firmware_loading_complete is used to synchronize all operations on rproc
> with parallel work launched by request_firmware_nowait.
We had a deadlock scenario in this code, where a call to rproc_boot()
would grab the rproc mutex and the request_firmware_nowait() callback
would wait on this lock before it would signal the completion that the
rproc_boot() was waiting for.
As the request_firmware_nowait() doesn't do anything other than handle
auto_boot and signal the completion - and there is an internal sleep
mechanism for handling concurrent request_firmware calls - I posted a
patch and dropped the rproc_boot() wait thing.
> rproc_add could be done and firmware loading still pending. In that case
> rproc_del mustn't be called before end of the procedure.
You're right.
We might have an outstanding request_firmware_nowait() when we hit
rproc_del() and we might free the underlaying rproc context.
Holding a reference over the request_firmware_nowait() would solve this,
but would cause issues if we get a rproc_add() from the same driver
(e.g. after module unload/load) before the firmware timer has fired -
and released the resources.
This issue could be remedied by moving the rproc_delete_debug_dir() to
rproc_del() and aim for not having any objects exposed outside the
remoteproc core once rproc_del() returns.
>
> If you decide to remove this synchronization you need either to modify rproc
> boot sequence or to replace it by something else.
>
I agree.
Regards,
Bjorn
next prev parent reply other threads:[~2016-12-16 19:28 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-12-16 0:03 [PATCH 1/2] soc: ti: Use remoteproc auto_boot feature Sarangdhar Joshi
2016-12-16 0:03 ` Sarangdhar Joshi
2016-12-16 0:03 ` [PATCH 2/2] remoteproc: Remove firmware_loading_complete Sarangdhar Joshi
2016-12-16 0:03 ` Sarangdhar Joshi
2016-12-16 8:26 ` loic pallardy
2016-12-16 8:26 ` loic pallardy
2016-12-16 8:26 ` loic pallardy
2016-12-16 19:28 ` Bjorn Andersson [this message]
2016-12-16 19:28 ` Bjorn Andersson
2016-12-17 2:41 ` Sarangdhar Joshi
2016-12-17 2:41 ` Sarangdhar Joshi
2016-12-17 2:41 ` Sarangdhar Joshi
2016-12-22 3:16 ` [PATCH 1/2] soc: ti: Use remoteproc auto_boot feature Suman Anna
2016-12-22 3:16 ` Suman Anna
2016-12-22 3:16 ` Suman Anna
2016-12-22 13:02 ` Bjorn Andersson
2016-12-22 13:02 ` Bjorn Andersson
2016-12-23 0:07 ` Sarangdhar Joshi
2016-12-23 0:07 ` Sarangdhar Joshi
2016-12-23 16:55 ` Suman Anna
2016-12-23 16:55 ` Suman Anna
2016-12-23 16:55 ` Suman Anna
2016-12-23 0:01 ` Sarangdhar Joshi
2016-12-23 0:01 ` Sarangdhar Joshi
2016-12-23 17:05 ` Suman Anna
2016-12-23 17:05 ` Suman Anna
2016-12-23 17:05 ` Suman Anna
2016-12-23 23:57 ` Suman Anna
2016-12-23 23:57 ` Suman Anna
2016-12-23 23:57 ` Suman Anna
2017-01-03 23:52 ` Sarangdhar Joshi
2017-01-03 23:52 ` Sarangdhar Joshi
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=20161216192839.GT3439@tuxbot \
--to=bjorn.andersson@linaro.org \
--cc=d-gerlach@ti.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-remoteproc@vger.kernel.org \
--cc=loic.pallardy@st.com \
--cc=ohad@wizery.com \
--cc=s-anna@ti.com \
--cc=sboyd@codeaurora.org \
--cc=spjoshi@codeaurora.org \
--cc=ssantosh@kernel.org \
--cc=tsoni@codeaurora.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.