From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Hillf Danton <hdanton@sina.com>
Cc: Greg Tulli <greg.iforce@gmail.com>,
Randy Dunlap <rdunlap@infradead.org>,
linux-kernel@vger.kernel.org, linux-input@vger.kernel.org,
Tetsuo Handa <penguin-kernel@i-love.sakura.ne.jp>
Subject: Re: [Question] iforce_serio lockup
Date: Mon, 29 Aug 2022 11:13:35 -0700 [thread overview]
Message-ID: <Yw0Bz9+ukNAf2Hpk@google.com> (raw)
In-Reply-To: <20220828090509.2839-1-hdanton@sina.com>
On Sun, Aug 28, 2022 at 05:05:09PM +0800, Hillf Danton wrote:
> On Fri, 29 Jul 2022 21:24:13 +0200 Greg Tulli <greg.iforce@gmail.com>
> >
> > Chain exists of:
> > &iforce->xmit_lock --> &port_lock_key --> &serport->lock
> >
> > Possible unsafe locking scenario:
> >
> > CPU0 CPU1
> > ---- ----
> > lock(&serport->lock);
> > lock(&port_lock_key);
> > lock(&serport->lock);
> > lock(&iforce->xmit_lock);
> >
> > *** DEADLOCK ***
> >
> > 2022-07-11 11:32 GMT+02:00, Greg T <greg.iforce@gmail.com>:
> >
> > > That problem vanishes if we don't call iforce_process_packet directly
> > > from iforce_serio_irq, but from a tasklet. Is that a right approach?
>
> Another option is to do wakeup without serport->lock held,
> given iforce->xmit_lock. Your test will provide info about the races
> that may come up due to the serport->lock.
No, I think we should use work to process the outbound buffer/queue,
as the comment in include/linux/tty_ldisc.h recommends. I believe a
single work instance in struct iforce_serio will suffice:
iforce_serio_xmit already should be able to handle concurrent
invocations, so we just need to schedule the work from
iforce_serio_write_wakeup() (and it is fine if it is already scheduled)
and let iforce_serio_xmit() do its job.
We can wait for the buffer to empty (which should take care of the work
running, but we may also do cancel_work_sync() for a good measure) in
iforce_serio_stop_io().
Thanks.
--
Dmitry
prev parent reply other threads:[~2022-08-29 18:13 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-29 19:24 [Question] iforce_serio lockup Greg Tulli
2022-08-28 6:00 ` Tetsuo Handa
[not found] ` <20220828090509.2839-1-hdanton@sina.com>
2022-08-29 18:13 ` Dmitry Torokhov [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=Yw0Bz9+ukNAf2Hpk@google.com \
--to=dmitry.torokhov@gmail.com \
--cc=greg.iforce@gmail.com \
--cc=hdanton@sina.com \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=penguin-kernel@i-love.sakura.ne.jp \
--cc=rdunlap@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 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.