Re: [PATCH] iio: light: adjd_s311: convert to device-managed functions
From: Jonathan Cameron <Jonathan.Cameron@Huawei.com>
Date: 2021-07-12 10:37:51
Also in:
lkml
On Mon, 12 Jul 2021 07:45:42 +0000 "Sa, Nuno" [off-list ref] wrote:
quoted
From: Jonathan Cameron <jic23@kernel.org> Sent: Sunday, July 11, 2021 12:26 PM To: Alexandru Ardelean <redacted> Cc: linux-iio <redacted>; Linux Kernel Mailing List [off-list ref]; pmeerw@pmeerw.net Subject: Re: [PATCH] iio: light: adjd_s311: convert to device-managed functions On Mon, 5 Jul 2021 09:38:21 +0300 Alexandru Ardelean [off-list ref] wrote:quoted
On Sat, 3 Jul 2021 at 20:47, Jonathan Cameron [off-list ref]wrote:quoted
quoted
On Mon, 28 Jun 2021 16:51:32 +0300 Alexandru Ardelean [off-list ref] wrote:quoted
This one is a little easier to convert to device-managed, now withthequoted
quoted
quoted
devm_krealloc() function. The other iio_triggered_buffer_setup() and iio_device_register()can bequoted
quoted
quoted
converted to their devm_ variants. And devm_krealloc() can beused toquoted
quoted
quoted
(re)alloc the buffer. When the driver unloads, this will also befree'd.quoted
quoted
quoted
Signed-off-by: Alexandru Ardelean <redacted> --- drivers/iio/light/adjd_s311.c | 34 +++++----------------------------- 1 file changed, 5 insertions(+), 29 deletions(-)diff --git a/drivers/iio/light/adjd_s311.cb/drivers/iio/light/adjd_s311.cquoted
quoted
quoted
index 17dac8d0e11d..19d60d6986a1 100644--- a/drivers/iio/light/adjd_s311.c +++ b/drivers/iio/light/adjd_s311.c@@ -230,8 +230,8 @@ static intadjd_s311_update_scan_mode(struct iio_dev *indio_dev,quoted
quoted
quoted
{ struct adjd_s311_data *data = iio_priv(indio_dev); - kfree(data->buffer); - data->buffer = kmalloc(indio_dev->scan_bytes,GFP_KERNEL);quoted
quoted
quoted
+ data->buffer = devm_krealloc(indio_dev->dev.parent, data-buffer,quoted
quoted
+ indio_dev->scan_bytes, GFP_KERNEL);I got some complaints about exactly this trick in a review recentlyso I'llquoted
quoted
pass them on. Whilst devm_krealloc() usage like this won't lose the originalreference, itsquoted
quoted
not what people expect from a realloc() case, so to not confusepeople it isquoted
quoted
better to do a dance where you use a local variable, then only setdata->bufferquoted
quoted
to it once we know the realloc succeeded. That avoids this looking like the anti-pattern it would be if thatwere a normalquoted
quoted
realloc in which case you would just have leaked the originalallocation.quoted
quoted
More interestingly, why are we bothering with resizing the bufferdependent on whatquoted
quoted
is enabled? Can't we just allocate a 128 byte buffer and not botherchanging itquoted
quoted
as we really aren't wasting that much space? Just embed it in theadjd_s311_dataquoted
quoted
structure directly and don't worry about the allocations. Will needto bequoted
quoted
aligned(8) though to avoid the push_to_buffer_with_timestamp()issue.quoted
quoted
Using something like struct { s16 chans[4]; s64 ts __aligned(8); /* I hate x86 32 bit */do you want to me t also add this comment? :p [just kidding]quoted
} scan; Inside the priv structure should work nicely.i agree; will do it like this; i hesitated a bit due to the inertia of converting things to devm_A long discussion on rust usage in linux diverted into the issues around devm. I 'believe' that we are fine in IIO after some work Lars did a long time back to make us resilient to unbinds whilst the chardev was open, but probably worth keeping an eye on that discussion. https://urldefense.com/v3/__https://lore.kernel.org/ksummit/CANiq 72nkNrekzbxMci6vW02w=Q2L- SVTk_U4KN_LT8u_b=YPgw@mail.gmail.com/T/*m6db86a574237c22a3 2ecf49b596b3c2917967c5e__;Iw!!A3Ni8CS0y2Y!oeM8GJzKVXb8mYa1m VJNw5fI2adsFk3FKkFzbnqyuDkUMKVTKQ3OoT0cnXP5rA$ I'm a tiny bit nervous that there might be races where we are doing the devm_realloc. I 'think' we are fine, but the 'think' and 'believe' in these statements expresses a slight lack of certainty! JonathanHi,
+CC Lars who might recall how this all works!
It's the second thread where I see you mentioning this, so this I will take the opportunity to also give a bit on though about this. I actually have in mind a RFC (hopefully sending it out this week) for this as I think we might still have some issues with open chardevs and device unbinding. What we have in [1] is not enough to make sure the whole thing is synchronized with device unbinding... We still have the door open to races where we call 'iio_buffer_ready()' or even 'rb->access->read()' after the device gets unbinded. Maybe we are lucky and nothing bad really happens and we just error out in the next time 'read()' is done on our fd.
My understanding of that test is it was only intended to ensure a smooth exit 'after' the buffer pull down has occurred. From vague memory rather than careful analysis, the reason it is needed is we only send the break out signal once for a given buffer, so we need to be sure that userspace doesn't call read() then ignore the error returned due to the buffer going away mid read and call read() again. There may be races in the first time path though. In particularly I'm not sure the reference count on the buffer is raised during the read and it perhaps should be.
However, during the possible race, I think it's very likely that we end up touching the same data structures concurrently. On some devices, we surely (in theory and if all the stars align) have a path where 'iio_buffer_flush_hwfifo()' might be called with 'indio_dev->info' already set to NULL...
Yeah, the hwfifo stuff is more recent, it's definitely possible there is a race around that.
IMO, the only way to have this fully in sync is to use the 'info_exist_lock' as it's done in [2]. I think [2] was actually "fixed" when Alex sent his patches for multi buffer support...
It's rather painful to take that lock. If we can make things safe with appropriate reference counting that's definitely preferable. For ioctl's they are always slow path so the exist_lock route is fine.
Naturally, for the read case, we need to make sure we are not going to sleep with the mutex held so we might need an unlock -> lock dance which is not that nice. But I'm not really seeing another way. We also need to look at other file operations and also for the events case to see if this is also a thing. Naturally, I might be missing some subtlety and that's why I had this planned as RFC. But since is mentioned here, I thought I could bring this up as in the end I might not even need to send the patches :)
Wise move :) I'd suggest that any fix in this space would ideally be accompanied by a confirmed race. Heavy use of sleeps can usually open one up enough to actually hit them in a few tries. Jonathan
[1]: https://elixir.bootlin.com/linux/latest/source/drivers/iio/industrialio-buffer.c#L117 [2]: https://elixir.bootlin.com/linux/latest/source/drivers/iio/industrialio-core.c#L1763 - Nuno Sá