From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
To: Yicong Yang <yangyicong@huawei.com>
Cc: yangyicong@hisilicon.com, gregkh@linuxfoundation.org,
jirislaby@kernel.org, tony@atomide.com,
linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org,
john.ogness@linutronix.de, tglx@linutronix.de,
linuxarm@huawei.com, prime.zeng@hisilicon.com,
jonathan.cameron@huawei.com, fanghao11@huawei.com
Subject: Re: [PATCH v2] serial: port: Don't suspend if the port is still busy
Date: Wed, 7 Feb 2024 16:47:08 +0200 [thread overview]
Message-ID: <ZcOX7CXecf6pXvEW@smile.fi.intel.com> (raw)
In-Reply-To: <9e3d8daf-6715-bb37-125a-4141a9460417@huawei.com>
On Wed, Feb 07, 2024 at 03:22:17PM +0800, Yicong Yang wrote:
> On 2024/2/6 21:09, Andy Shevchenko wrote:
> > On Tue, Feb 06, 2024 at 03:33:22PM +0800, Yicong Yang wrote:
...
> >> + pm_runtime_mark_last_busy(dev);
> >
> > Do you think we need to call this under a lock?
>
> I just put this close to the ops->start_tx() where I used the device. Yes I have no
> strong reason to put it in/with the lock region, but pm_runtime_mark_last_busy()
> should be no costy and safe enough to put it in the spinlock region.
>
> Any thoughts?
As I mentioned before, moving it out makes it similar to the resume
counterpart implementation.
...
> > With the above I would rather write it as
> >
> > static int __serial_port_busy(struct uart_port *port)
> > {
> > if (uart_tx_stopped(port))
> > return 0;
> >
> > if (uart_circ_chars_pending(&port->state->xmit)
> > return -EBUSY;
>
> I'm not sure but EBUSY seems not quite match here. EBUSY for
> "Device or resource busy" so the device probably cannot be used
> but we're testing whether the port is busy here. Hope I understand it
> correctly.
Port is also "device" in the broader meaning. I don't see how this is
problematic. Prototype is originally int (while returning boolean).
I assume it was an idea behind similar (if not the same) as mine at
some point, but then vanished. Yet, the function itself can be renamed
to reflect these changes, like
__serial_port_get_status() // 0 - idling, -EBUSY - busy
> > return 0;
> > }
> >
> > static int serial_port_runtime_suspend(struct device *dev)
> > {
> > int ret;
> > ...
> > uart_port_lock_irqsave(port, &flags);
> > ret = __serial_port_busy(port);
> > if (ret)
> > port->ops->start_tx(port);
> > uart_port_unlock_irqrestore(port, flags);
> >
> > if (ret)
> > pm_runtime_mark_last_busy(dev);
> >
> > return ret;
> > }
> >
> > It also seems aligned with the resume implementation above.
> >
> > ...
> >
> > For the consistency's sake the resume can be refactored as
> >
> > static int serial_port_runtime_resume(struct device *dev)
> > {
> > ...
> > int ret;
> > ...
> > ret = __serial_port_busy(port);
> > if (ret)
> > ...
> > }
> >
> > but this can be done later.
> >
>
> I agree the refactoring should go to a separate patch. But it doesn't seem
> to be more simpler or readable comparing to the current implementation? Just
> want to narrowing the spinlock region?
Yes, at bare minimum I would expect the PM call be moved out of a lock.
As this seems a fix (and hence subject to backport) I would also minimize
invasion.
--
With Best Regards,
Andy Shevchenko
prev parent reply other threads:[~2024-02-07 14:47 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-06 7:33 [PATCH v2] serial: port: Don't suspend if the port is still busy Yicong Yang
2024-02-06 8:34 ` Tony Lindgren
2024-02-06 9:44 ` Greg KH
2024-02-06 10:20 ` Yicong Yang
2024-02-06 13:09 ` Andy Shevchenko
2024-02-06 13:11 ` Andy Shevchenko
2024-02-06 13:21 ` Tony Lindgren
2024-02-07 7:22 ` Yicong Yang
2024-02-07 14:47 ` Andy Shevchenko [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=ZcOX7CXecf6pXvEW@smile.fi.intel.com \
--to=andriy.shevchenko@linux.intel.com \
--cc=fanghao11@huawei.com \
--cc=gregkh@linuxfoundation.org \
--cc=jirislaby@kernel.org \
--cc=john.ogness@linutronix.de \
--cc=jonathan.cameron@huawei.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=linuxarm@huawei.com \
--cc=prime.zeng@hisilicon.com \
--cc=tglx@linutronix.de \
--cc=tony@atomide.com \
--cc=yangyicong@hisilicon.com \
--cc=yangyicong@huawei.com \
/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).