From: Bjorn Andersson <bjorn.andersson@linaro.org>
To: Rishabh Bhatnagar <rishabhb@codeaurora.org>
Cc: linux-remoteproc@vger.kernel.org, linux-kernel@vger.kernel.org,
tsoni@codeaurora.org, psodagud@codeaurora.org,
sidgup@codeaurora.org, elder@linaro.org
Subject: Re: [PATCH] remoteproc: Create a separate workqueue for recovery tasks
Date: Tue, 15 Dec 2020 16:55:02 -0600 [thread overview]
Message-ID: <X9k+xmg9SULEbJXe@builder.lan> (raw)
In-Reply-To: <1607806087-27244-1-git-send-email-rishabhb@codeaurora.org>
On Sat 12 Dec 14:48 CST 2020, Rishabh Bhatnagar wrote:
> Create an unbound high priority workqueue for recovery tasks.
This simply repeats $subject
> Recovery time is an important parameter for a subsystem and there
> might be situations where multiple subsystems crash around the same
> time. Scheduling into an unbound workqueue increases parallelization
> and avoids time impact.
You should be able to write this more succinctly. The important part is
that you want an unbound work queue to allow recovery to happen in
parallel - which naturally implies that you care about recovery latency.
> Also creating a high priority workqueue
> will utilize separate worker threads with higher nice values than
> normal ones.
>
This doesn't describe why you need the higher priority.
I believe, and certainly with the in-line coredump, that we're running
our recovery work for way too long to be queued on the system_wq. As
such the content of the patch looks good!
Regards,
Bjorn
> Signed-off-by: Rishabh Bhatnagar <rishabhb@codeaurora.org>
> ---
> drivers/remoteproc/remoteproc_core.c | 9 ++++++++-
> 1 file changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/remoteproc/remoteproc_core.c b/drivers/remoteproc/remoteproc_core.c
> index 46c2937..8fd8166 100644
> --- a/drivers/remoteproc/remoteproc_core.c
> +++ b/drivers/remoteproc/remoteproc_core.c
> @@ -48,6 +48,8 @@ static DEFINE_MUTEX(rproc_list_mutex);
> static LIST_HEAD(rproc_list);
> static struct notifier_block rproc_panic_nb;
>
> +static struct workqueue_struct *rproc_wq;
> +
> typedef int (*rproc_handle_resource_t)(struct rproc *rproc,
> void *, int offset, int avail);
>
> @@ -2475,7 +2477,7 @@ void rproc_report_crash(struct rproc *rproc, enum rproc_crash_type type)
> rproc->name, rproc_crash_to_string(type));
>
> /* create a new task to handle the error */
> - schedule_work(&rproc->crash_handler);
> + queue_work(rproc_wq, &rproc->crash_handler);
> }
> EXPORT_SYMBOL(rproc_report_crash);
>
> @@ -2520,6 +2522,10 @@ static void __exit rproc_exit_panic(void)
>
> static int __init remoteproc_init(void)
> {
> + rproc_wq = alloc_workqueue("rproc_wq", WQ_UNBOUND | WQ_HIGHPRI, 0);
> + if (!rproc_wq)
> + return -ENOMEM;
> +
> rproc_init_sysfs();
> rproc_init_debugfs();
> rproc_init_cdev();
> @@ -2536,6 +2542,7 @@ static void __exit remoteproc_exit(void)
> rproc_exit_panic();
> rproc_exit_debugfs();
> rproc_exit_sysfs();
> + destroy_workqueue(rproc_wq);
> }
> module_exit(remoteproc_exit);
>
> --
> The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
> a Linux Foundation Collaborative Project
>
next prev parent reply other threads:[~2020-12-15 22:56 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-12 20:48 [PATCH] remoteproc: Create a separate workqueue for recovery tasks Rishabh Bhatnagar
2020-12-15 22:55 ` Bjorn Andersson [this message]
2020-12-17 16:12 ` Alex Elder
2020-12-17 18:21 ` rishabhb
2020-12-17 18:49 ` Alex Elder
2020-12-22 0:35 ` Bjorn Andersson
2021-01-08 21:03 ` rishabhb
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=X9k+xmg9SULEbJXe@builder.lan \
--to=bjorn.andersson@linaro.org \
--cc=elder@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-remoteproc@vger.kernel.org \
--cc=psodagud@codeaurora.org \
--cc=rishabhb@codeaurora.org \
--cc=sidgup@codeaurora.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox