On 10/30/20 8:57 PM, Mathieu Poirier wrote: > The panic handler operation of registered remote processors > should also be called when remote processors have been > attached to. > > Signed-off-by: Mathieu Poirier <mathieu.poirier@xxxxxxxxxx> > Reviewed-by: Peng Fan <peng.fan@xxxxxxx> Reviewed-by: Arnaud Pouliquen <arnaud.pouliquen@xxxxxx> Thanks, Arnaud > --- > drivers/remoteproc/remoteproc_core.c | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/drivers/remoteproc/remoteproc_core.c b/drivers/remoteproc/remoteproc_core.c > index 63fba1b61840..ed1f9ca4248b 100644 > --- a/drivers/remoteproc/remoteproc_core.c > +++ b/drivers/remoteproc/remoteproc_core.c > @@ -2408,7 +2408,11 @@ static int rproc_panic_handler(struct notifier_block *nb, unsigned long event, > > rcu_read_lock(); > list_for_each_entry_rcu(rproc, &rproc_list, node) { > - if (!rproc->ops->panic || rproc->state != RPROC_RUNNING) > + if (!rproc->ops->panic) > + continue; > + > + if (rproc->state != RPROC_RUNNING && > + rproc->state != RPROC_ATTACHED) > continue; > > d = rproc->ops->panic(rproc); >