From: Robin Murphy <robin.murphy@arm.com>
To: Pranjal Shrivastava <praan@google.com>,
weimin xiong <xiongwm2026@163.com>
Cc: Will Deacon <will@kernel.org>, Joerg Roedel <joro@8bytes.org>,
Benjamin Gaignard <benjamin.gaignard@collabora.com>,
Rob Clark <robin.clark@oss.qualcomm.com>,
linux-arm-kernel@lists.infradead.org, iommu@lists.linux.dev,
linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org
Subject: Re: [PATCH v1 0/4] iommu: Fix device lookup lifetime and probe cleanup
Date: Tue, 14 Jul 2026 16:56:50 +0100 [thread overview]
Message-ID: <0e405cb3-1227-4ad2-96ff-aa0db3124381@arm.com> (raw)
In-Reply-To: <alZCbIIuawpugaQe@google.com>
On 14/07/2026 3:06 pm, Pranjal Shrivastava wrote:
> On Tue, Jul 14, 2026 at 02:09:26PM +0800, weimin xiong wrote:
>> Fix a few IOMMU driver lifetime and error-path issues found while
>> auditing fwnode-based device lookup and probe cleanup paths.
>>
>> The first three patches avoid deriving driver private data after
>> dropping the device reference returned by bus_find_device_by_fwnode().
>> They also make the ARM SMMU v2 and VSI probe paths fail cleanly when the
>> IOMMU lookup fails.
>
> I'm not sure if that's really needed? All these drivers are doing is
> dropping the "extra" refcount (incremented by calling find_device) back
> to the state *before* the fwnode function call. If you find that this
> put_device caused the count to drop to 0, I believe that's the real
> problem/bug. These fwnode functions are usually called in probe and the
> refcount shouldn't be 0 inside probe.
>
> Could you share your observation / failing logs where this fails? Maybe
> something else is wrong with the system?
I don't have any trace of the original patches (thanks, Microsoft...)
but looking on lore, yes these "lifetime" concerns are spurious; it's
just a particular situation where due to the API, the drivers are taking
a slightly roundabout route to look up their own valid device instance.
The IOMMU device must already have at least one held reference from way
back in its device_initialise(), which will not be released unless and
until device_unregister() is called (which is probably never for a
non-hotpluggable platform device once it has been successfully created).
If someone unregistered a platform device while it still had a driver
bound, or the IOMMU driver could be unbound without unregistering the
iommu_device through which its ->of_xlate or ->probe_device could be
called, so many other things would be blowing up already that this would
still be irrelevant.
Since 17de3f5fdd35 ("iommu: Retire bus ops") these lookups should also
never return NULL for the same reasons, so do feel free to clean up
those redundant checks if it helps make things a bit clearer.
Thanks,
Robin.
prev parent reply other threads:[~2026-07-14 15:57 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-14 6:09 [PATCH v1 0/4] iommu: Fix device lookup lifetime and probe cleanup weimin xiong
2026-07-14 6:09 ` [PATCH v1 1/4] iommu/arm-smmu: Fix fwnode lookup lifetime handling weimin xiong
2026-07-14 6:09 ` [PATCH v1 2/4] iommu/arm-smmu-v3: " weimin xiong
2026-07-14 6:09 ` [PATCH v1 3/4] iommu/vsi: " weimin xiong
2026-07-14 6:09 ` [PATCH v1 4/4] iommu/msm: Clean up probe state on registration failure weimin xiong
2026-07-14 14:06 ` [PATCH v1 0/4] iommu: Fix device lookup lifetime and probe cleanup Pranjal Shrivastava
2026-07-14 15:56 ` Robin Murphy [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=0e405cb3-1227-4ad2-96ff-aa0db3124381@arm.com \
--to=robin.murphy@arm.com \
--cc=benjamin.gaignard@collabora.com \
--cc=iommu@lists.linux.dev \
--cc=joro@8bytes.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=praan@google.com \
--cc=robin.clark@oss.qualcomm.com \
--cc=will@kernel.org \
--cc=xiongwm2026@163.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