[05:49] *** blinky42 has quit IRC (Ping timeout: 250 seconds)
[07:14] <sailus> javier__: Good morning!
[08:31] <sailus> hverkuil: Huomenta!
[08:31] <hverkuil> sailus: hi!
[08:35] <javier__> sailus: hi! sorry I missed your highlight before
[08:35] <sailus> hverkuil: How are you doing?
[08:35] <hverkuil> good, thanks
[08:36] <sailus> hverkuil: Referring to your begin/end_cpu_access set, would you prefer to continue working on that, or should I take the patches?
[08:36] <sailus> javier__: How do you do?
[08:36] <hverkuil> sailus: I'm rebasing, after that it's all yours. I have absolutely no time to continue working on it.
[08:38] <sailus> hverkuil: Ack.
[08:38] <sailus> I wish I will ;-)
[08:39] <javier__> sailus: fine, thanks. I posted a v2 of the media_device_register() split patch yesterday, please let me know if you have any feedback
[08:41] *** teob has left 
[08:43] <sailus> javier__: How about the BUG_ON()?
[08:44] <sailus> Bad things will happen later on if mdev->dev is NULL, right?
[08:44] <sailus> Or at least it's been required in the past.
[08:45] <sailus> I'm not entirely certain if something depends on it.
[08:46] <javier__> sailus: I mentioned that I audited all the callers of media_device_register() in mainline and all drivers fills mdev->dev and model
[08:46] <javier__> sailus: is true that bad things may happen if a driver dereferences a NULL pointer but that's true for any pointer
[08:47] <sailus> It's NULL by default unless something changes it.
[08:47] <sailus> Assuming the caller allocated the memory using a function that zeroes it, which generally should be done.
[08:49] <javier__> sailus: yes, but I thought we agreed that the function was just being paranoid and could be changed to return void...
[08:50] <javier__> sailus: so in summary, IMHO we should either assume drivers will do the right thing and change the function to void and remove the WARN_ON() since it will not be needed
[08:51] <javier__> or leave the WARN_ON() and leave the function returning an error
[08:51] <javier__> but I don't like the combination of void and BUG_ON(). Because if something can go bad then the kernel should be able to handle and fail gracefully
[08:57] <sailus> I think there are two sane options, void return type and BUG_ON(), or return an error code.
[08:57] <sailus> Not checking something you should is no good.
[09:06] <javier__> sailus: hmm, Ok. I don't like the void + BUG_ON() option but as you said is used in many v4l2*init() functions so at least it will be consistent
[09:07] <hverkuil> sailus: rebased. It's all yours!
[09:07] <javier__> sailus: I'll post a v3 adding BUG_ON()
[09:08] <hverkuil> Note: these changes were discussed with Pawel Osciak and he agreed with the approach taken. It was just never quite important enough to finish the work.
[09:09] <hverkuil> But I think it is really needed if you want to have reliable cache sync support.
[09:09] <hverkuil> Otherwise you would never know who access the buffer: the device or the cpu.
[09:09] <hverkuil> accesses
[09:17] <sailus> hverkuil: Thanks!
[09:27] <sailus> javier__: Thanks!
[09:28] <javier__> sailus: thanks a lot to you for your feedback. Any other comments before I post v3?
[09:28] <sailus> javier__: Not that I can think of now.
[09:28] <javier__> sailus: Ok
[09:30] <hverkuil> sailus: before I forget: I have not tested my rebased version! I don't think anything relevant changed in vb2 since 3.19, but neither have I checked for that.
[09:33] <sailus> hverkuil: Good to know.
[09:34] <sailus> My patches will  still require more testing anyway.
[09:51] <javier__> pinchartl: hi, I posted a patch 4 years ago https://lkml.org/lkml/2011/9/30/434 to add pad level operations support to the tvp5150 driver
[09:51] <javier__> pinchartl: I never followup on that one since I changed job and didn't have access to the HW anymore but now I got one of those boards again
[09:51] <javier__> pinchartl: and found this http://git.linuxtv.org/cgit.cgi/pinchartl/media.git/log/?h=omap3isp/tvp5151
[09:52] <javier__> what's your plan w.r.t of those patches? afaict it's only missing v4l2 async registration and DT support
[09:56] <sailus> javier__: mdev->model was checked before, but I think at least one driver does not guarantee that it's not an empty string.
[09:57] <sailus> I'd just leave the model check out.
[10:12] <javier__> sailus: do you remember which driver was that? I checked and all the drivers set it
[10:13] <javier__> sailus: but I agree that not having the model should not be a fatal condition
[10:14] <javier__> sailus: I'll wait a couple of days to see if someone else has more feedback and re-spin, to avoid spamming the ML
[10:20] <sailus> javier__: Have you received comments from someone else? :-)
[10:24] <javier__> sailus: hehe, no but I don't know if I'm re-spining too fast and annoy people in the mailing list
[10:25] <javier__> if you think it's Ok, I can re-spin and post a v4 now :)
[10:33] <javier__> sailus: Ok, posted a v4. Hopefully this should be the last revision
[10:34] <javier__> sailus: thanks a lot for all your help and feedback
[10:40] <sailus> javier__: Thank *you*! :-)
[10:41] <sailus> I'll try to review that later today.
[10:51] <javier__> sailus: great
[10:56] <sailus> javier__: What did you have as a baseline btw.; Mauro's tree or something else?
[10:57] <javier__> sailus: Mauro's mc next gen patches. I mentioned in the cover letter that I did so to avoid conflicts with the posted patches
[11:00] <sailus> I thought so. I guess it'd be best to have them applied to Mauro's tree then, after v9 of his patches.
[11:01] <sailus> With Laurent's ack, naturally.
[11:04] <javier__> sailus: agreed
[16:59] <bparrot> hverkuil, ping
[17:12] <bparrot> hverkuil, whenever you get a chance. I saw a discussion and a few patches (July 2014) to replace VIDEO_MAX_FRAME with a VB2_MAX_FRAME of higher value. What happened to these patches?
[17:15] <bparrot> hverkuil, we have a similar case where we are using VPE to de-interlaced frames to be sent further encoded the same stream. So far we have been locally increasing the VIDEO_MAX_FRAME to 128. Is there a better way to do this
[17:30] *** benjiG has left 
[23:39] *** PaulFertser has quit IRC (Ping timeout: 250 seconds)