From: Mika Westerberg <mika.westerberg@linux.intel.com>
To: Sven Peter <sven@kernel.org>
Cc: Andreas Noever <andreas.noever@gmail.com>,
Mika Westerberg <westeri@kernel.org>,
Yehezkel Bernat <YehezkelShB@gmail.com>,
Konrad Dybcio <konradybcio@kernel.org>,
asahi@lists.linux.dev, linux-usb@vger.kernel.org,
linux-kernel@vger.kernel.org, stable@vger.kernel.org
Subject: Re: [PATCH v2 1/7] thunderbolt: Hold a router reference for each path hop
Date: Mon, 24 Aug 2026 12:42:37 +0200 [thread overview]
Message-ID: <20260824104237.GF893316@black.igk.intel.com> (raw)
In-Reply-To: <20260823-b4-tbt-fixes-v2-1-26a18a426c9f@kernel.org>
Hi,
On Sun, Aug 23, 2026 at 06:09:14PM +0200, Sven Peter wrote:
> tb_stop drops the reference to all DP tunnels but does not deactivate
> them, thus nothing cancels a dprx_work still in flight (which holds its
> own tunnel reference) and the tunnel can outlive tb_switch_remove. The
> HopID releases in tb_path_free then operate on freed IDAs and trigger
> warnings like
>
> ida_free called for id=8 which is not allocated.
>
> This can be triggered by unbinding the driver while a DP tunnel is still
> waiting for the DPRX capabilities read to finish. On the Apple NHI
> unplugging the cable runs into just that reliably because the read can
> never finish right now and because the unplug powers down the
> entire USB4 complex and removes the NHI device.
Thanks for adding this.
Is this behaviour due to something missing still on PM side or this is how
it is designed to work on Apple silicon? This resembles the early PC way
where ACPI dealt with all the hotplug PCIe stuff and the host router was
only present when a cable was connected. I would kind of expect that Apple
did this using "RTD3" way so keeping the host router present and the OS
then deals with putting it into D3 and back.
> Take or release a reference for both ports of each hop whenever the
> HopIDs are allocated or released to ensure they have the same lifetime.
>
> The KUnit tests allocate their switches without ever registering them so
> initialize the embedded struct device there as well to make these
> references work.
>
> Fixes: d6d458d42e1e ("thunderbolt: Handle DisplayPort tunnel activation asynchronously")
> Cc: stable@vger.kernel.org
> Signed-off-by: Sven Peter <sven@kernel.org>
> ---
> drivers/thunderbolt/path.c | 21 +++++++++++++++++++++
> drivers/thunderbolt/test.c | 12 ++++++++++++
> 2 files changed, 33 insertions(+)
>
> diff --git a/drivers/thunderbolt/path.c b/drivers/thunderbolt/path.c
> index b2c322e76b8a..02c5e7a2101e 100644
> --- a/drivers/thunderbolt/path.c
> +++ b/drivers/thunderbolt/path.c
> @@ -196,6 +196,12 @@ struct tb_path *tb_path_discover(struct tb_port *src, int src_hopid,
> path->hops[i].out_port = out_port;
> path->hops[i].next_hop_index = next_hop;
>
> + /* Keep the ports alive, see tb_path_free() */
> + if (alloc_hopid) {
> + tb_switch_get(path->hops[i].in_port->sw);
> + tb_switch_get(path->hops[i].out_port->sw);
> + }
I wonder if we can put this in tb_port_alloc_in/out_hopid() instead? That
would be more "natural" IMHO.
> +
> tb_dump_hop(&path->hops[i], &hop);
>
> h = next_hop;
> @@ -323,6 +329,10 @@ struct tb_path *tb_path_alloc(struct tb *tb, struct tb_port *src, int src_hopid,
> path->hops[i].out_port = out_port;
> path->hops[i].next_hop_index = out_hopid;
>
> + /* Keep the ports alive, see tb_path_free() */
> + tb_switch_get(path->hops[i].in_port->sw);
> + tb_switch_get(path->hops[i].out_port->sw);
> +
> in_hopid = out_hopid;
> }
>
> @@ -356,6 +366,17 @@ void tb_path_free(struct tb_path *path)
> if (hop->out_port)
> tb_port_release_out_hopid(hop->out_port,
> hop->next_hop_index);
> + /*
> + * Only drop the switch references after both HopIDs
Let's use "router" universally.
> + * have been released: the path may be freed after the
> + * switch was already removed (e.g. asynchronous DP
> + * tunnel teardown) and these references are what
> + * keeps the ports and their HopID IDAs alive.
> + */
> + if (hop->in_port)
> + tb_switch_put(hop->in_port->sw);
> + if (hop->out_port)
> + tb_switch_put(hop->out_port->sw);
> }
> }
>
> diff --git a/drivers/thunderbolt/test.c b/drivers/thunderbolt/test.c
> index 05652ee82fbf..034c56845380 100644
> --- a/drivers/thunderbolt/test.c
> +++ b/drivers/thunderbolt/test.c
> @@ -33,6 +33,11 @@ static void kunit_ida_init(struct kunit *test, struct ida *ida)
> kunit_alloc_resource(test, __ida_init, __ida_destroy, GFP_KERNEL, ida);
> }
>
> +static void tb_test_switch_release(struct device *dev)
> +{
> + /* The memory is owned by KUnit, nothing to do here */
> +}
> +
> static struct tb_switch *alloc_switch(struct kunit *test, u64 route,
> u8 upstream_port, u8 max_port_number)
> {
> @@ -44,6 +49,13 @@ static struct tb_switch *alloc_switch(struct kunit *test, u64 route,
> if (!sw)
> return NULL;
>
> + /*
> + * The paths take a reference to their switches and those devices
> + * have to be initialized for that to work.
> + */
> + sw->dev.release = tb_test_switch_release;
> + device_initialize(&sw->dev);
The idea was that we don't use this as real device but if we go this route
then I think we should call put_device() to release it and check for any
subtleties device_initialize() possibly does.
> +
> sw->config.upstream_port_number = upstream_port;
> sw->config.depth = tb_route_length(route);
> sw->config.route_hi = upper_32_bits(route);
>
> --
> 2.55.0
>
next prev parent reply other threads:[~2026-08-24 10:42 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-23 16:09 [PATCH v2 0/7] thunderbolt: Fix DP tunnel teardown while an async DPRX read is running Sven Peter
2026-08-23 16:09 ` [PATCH v2 1/7] thunderbolt: Hold a router reference for each path hop Sven Peter
2026-08-24 10:42 ` Mika Westerberg [this message]
2026-08-24 11:06 ` Sven Peter
2026-08-24 11:37 ` Mika Westerberg
2026-08-24 12:50 ` Sven Peter
2026-08-23 16:09 ` [PATCH v2 2/7] thunderbolt: Make the DP tunnel activation callback mandatory Sven Peter
2026-08-24 10:45 ` Mika Westerberg
2026-08-24 14:13 ` Sven Peter
2026-08-24 14:17 ` Mika Westerberg
2026-08-23 16:09 ` [PATCH v2 3/7] thunderbolt: Fix domain reference leak when DPRX read is canceled Sven Peter
2026-08-23 16:09 ` [PATCH v2 4/7] thunderbolt: Don't access a DP tunnel after its DPRX read was canceled Sven Peter
2026-08-23 16:09 ` [PATCH v2 5/7] thunderbolt: Mark discovered tunnels as active Sven Peter
2026-08-23 16:09 ` [PATCH v2 6/7] thunderbolt: Tear down inactive DP tunnels when the domain is stopped Sven Peter
2026-08-23 16:09 ` [PATCH v2 7/7] thunderbolt: Drop the DP tunnel activation callback data Sven Peter
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=20260824104237.GF893316@black.igk.intel.com \
--to=mika.westerberg@linux.intel.com \
--cc=YehezkelShB@gmail.com \
--cc=andreas.noever@gmail.com \
--cc=asahi@lists.linux.dev \
--cc=konradybcio@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=stable@vger.kernel.org \
--cc=sven@kernel.org \
--cc=westeri@kernel.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
all inboxes | Powered by JetHome®