From: Karl Mehltretter <kmehltretter@gmail.com>
To: sashiko-reviews@lists.linux.dev
Cc: linux-rt-devel@lists.linux.dev, linux-kernel@vger.kernel.org,
linux-serial@vger.kernel.org
Subject: Re: [PATCH 1/2] serial: amba-pl011: unprepare console clock on unregister
Date: Sun, 19 Jul 2026 12:27:41 +0200 [thread overview]
Message-ID: <alyjOGyTd19Obemi@MacBook-Pro-von-Karl> (raw)
In-Reply-To: <20260719070454.D6FA21F000E9@smtp.kernel.org>
On Sun, Jul 19, 2026 at 07:04:54AM +0100, sashiko-bot@kernel.org wrote:
> This is a pre-existing issue, but does uap need a NULL check here to
> prevent a kernel panic on error paths?
>
> If uart_add_one_port() fails internally (e.g., an allocation failure in
> serial_core_add_one_port() returning -ENOMEM), it returns an error but
> crucially fails to unregister the console that was already registered
> earlier in uart_configure_port().
>
> The caller sees the error and clears the pointer:
>
> drivers/tty/serial/amba-pl011.c:pl011_register_port() {
> ...
> ret = uart_add_one_port(&amba_reg, &uap->port);
> if (ret)
> pl011_unregister_port(uap);
Good catch in a rare error path. A NULL check alone is not enough
because other callbacks use the same pointer.
The underlying issue is that serial core can leave the console registered
after uart_add_one_port() fails. I will investigate that separately.
Karl
next prev parent reply other threads:[~2026-07-19 10:28 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-19 6:35 [PATCH 0/2] serial: amba-pl011: fix console clock lifetime Karl Mehltretter
2026-07-19 6:35 ` [PATCH 1/2] serial: amba-pl011: unprepare console clock on unregister Karl Mehltretter
[not found] ` <20260719070454.D6FA21F000E9@smtp.kernel.org>
2026-07-19 10:27 ` Karl Mehltretter [this message]
2026-07-19 6:35 ` [PATCH 2/2] serial: amba-pl011: keep console clock enabled for atomic writes Karl Mehltretter
2026-07-20 11:45 ` Petr Mladek
2026-07-20 12:15 ` Sebastian Andrzej Siewior
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=alyjOGyTd19Obemi@MacBook-Pro-von-Karl \
--to=kmehltretter@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rt-devel@lists.linux.dev \
--cc=linux-serial@vger.kernel.org \
--cc=sashiko-reviews@lists.linux.dev \
/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