When I search "V4L2_CAP_VIDEO_CAPTURE" in https://linuxtv.org/downloads/v4l-dvb-apis-new/index.html I get no hits. Any idea why?
My local htmldocs build reports all instances
mchehab: just a reminder: these should go into 4.10 as well:
https://patchwork.linuxtv.org/patch/38664/
https://patchwork.linuxtv.org/patch/38575/
mchehab: These as well. smiapp doesn't work without runtime PM otherwise:
https://patchwork.linuxtv.org/patch/38493/
sailus: where in omap3isp is the media_device freed?
hverkuil: I'll handle those pending issues next week
OK, no problem. Just want to make sure these don't fall through the cracks :-)
Linus will likely release -rc1 earlier
so, my plan is to send those fixes for -rc2
I'll actually send him next week, but it could be too late for -rc1
hverkuil: right now ? it's embedded in struct isp_device
btw, I'm taking vacations in the beginning of January
sailus: isp_remove, I see.
hverkuil: it's not freed in isp_remove(), it's unregistered and cleaned up there, but freed as part of the device private data by devres right after .remove() returns
pinchartl: so not when the last reference goes away, but when remove is called. Correct?
yes. that's how devres works
right after remove returns
that's why devm_kzalloc() is usually incorrect
Yeah, useless.
well, not completely, but less useful than it could be
it's everywhere nowadays, and in most cases it's just plain wrong
hverkuil: thanks for your review of the cache coherency patches
one point I was unsure about
is the new no_cache_sync argument passed to vb2-core functions
I was wondering whether we shouldn't use flags instead
right now only a single flag is needed
so this could be changed later if desired
pinchartl: someone should document the caveats of using devres in Documentation/driver-model/devres.txt
since developers end abusing (myself included), I was not aware of the issues after you pointed out in the omap3isp discussion
pinchartl: the main problem I had with the no_cache_sync arg is that 'if (!no_cache_sync)' was a bit ugly. But not enough to make an issue about that.
'flags' might be cleaner in that respect.
javier___: that's a good idea, but given that nobody seems to ready documentation, we probably need more than that :-)
hverkuil: should we switch to flags now, or later when we'll need a second flag ?
pinchartl: fair enough
pinchartl: I leave that up to you.
javier___: it's a topic I proposed for the kernel summit last year but it has been rejected :-(
hverkuil: I'll leave it up to sailus then, it's his patches :-)
or at least I'll discuss it with him
pinchartl: I see... we are trading possible memory leaks for possible NULL pointer dereferences, so the end doesn't sound great
it's especially deadly with USB devices
hverkuil: one topic I'd like to discuss with you is embedding vs. allocation. let's wait for sailus to be available
What seems to be missing is a way to override a struct device release function. When the refcount of a platform_device goes to 0, then you want to free media resources, but other than manually storing the old pdev->dev.release function and replacing it with a new one, there doesn't seem to be a clean(er) way to do this.
Am I missing something?
no, you want to free them earlier
imagine you rmmod/insmod a driver in a loop
the platform_device will stay there
it will be bound and unbound
.probe() and .remove()
if you allocate memory in probe and free it in .release() your memory usage will grow over time
Ah yes.
the .remove() function is a signal that resources can be freed from the device core's point of view
but the driver needs to be careful
"can I free this now ? no, there's still a userspace user, I'll wait until it goes away"
it really boils down to multiple users of a piece of data
that's why refcounting seems the best way to me
pinchartl: also .remove() is the counterpart of probe() really, so it makes sense to undo in .remove() what was done in .probe()
generally speaking yes, but there's a big difference between the two, in that remove has to deal with more users that can have appeared since probe
probe is simpler
yes
my point was that it sounds strange the need to undo in .release an operation done in .probe. That's why I agree with you that refcounting seems to be the best approach for this
allows to decouple the resource unregistration from the actual memory freed
pinchartl: so we would need a top level data structure (let's go with media_device for now) that is refcounted and will release all resources when it gets to 0.
hverkuil: that's the idea
device nodes will increase that refcount and decrease it when the devnode is released.
we will probably need to make it a bit more complicated though :-)
because the goal is to make media_device shareable between multiple drivers
so we need to top-level release handlers
Can it be a struct device? So we can setup a kobj parent chain?
one in media_device, for resources related to the media device (and thus shared)
and one elsewhere, possibly in v4l2_device, for resources local to a single device (and thus not shared)
hverkuil: That's essentially what the patchset does.
I'm not sure adding a struct device to media_device is a good idea
Among a few other things.
So for a very simple device you would have a pci_device, platform_device or something like that, then the media_device (also a struct device), then the devnode(s) (also struct device).
I need to think about it
but we at least need a kref
is there a precedent in the kernel for using a struct device this way ?
no idea :-)
I mean to describe something that is neither a physical device nor a devnode
struct media_device has no struct device embedded, the pointer is supposed to be related to the hardware device of the driver that controls the media device.
sailus: yes, I think Hans knows that, the question was whether we should add a new struct device there
I'd prefer sticking to a simple kref
but if there are compeling reasons to add a struct device I'm certainly open to discuss it
Ah, right. I don't object that as such, but are there benefits in doing so?
For being able to use it for devm_() resource allocation?
no, you can't do that
Main thing is that cdev can point to it and so refcounting with filehandles is done automatically.
as that device would never be unbound
but then cdev can't point to the physical (platform) device
which will not be refcounted properly anymore
But it can be done manually as well but it is a bit awkward.
you're moving the problem :-)
An intermediate device would take a refcount on the parent platform device, and release it when its own data is released, so that is not a problem as such.
With your own kref you'll need to do the same anyway.
except that media_device can be shared
so it would need multiple parents
I don't think you want to introduce the concept of multiple parents for a kobj
although I'd love to see how that would go :-)
I'm not sure if you need that. You just want to make sure that the owner of the media_device doesn't go away while there are still references to that memory.
except that we'll have no single owner anymore once we start sharing media_device instances
The first user of media_device creates it. Others can reference it as well, but it's fine if the go away later as long as they tell media_device about it and release any references they have. But mdev->dev shouldn't go away until nobody is using mdev anymore.
mdev has a reference to it, after all.
right
I'll have to think about that
As I said in an email on the ML: this only applies to interface entities: it should be possible to cleanly remove them from the graph.
subdev entities can't and it should never be allowed to unbind them.
(well, for the current subdevs. Later it may be needed for reconfigurable FPGAs etc.)
yes, later we'll need to
much later I hope :-)
Hi! Could someone help me to solve this bug: https://bugzilla.gnome.org/show_bug.cgi?id=775670