hverkuil: I'll reverse the two cases in the documentation patch, as I'm running out of time
regaring the -ENOSPC error code, I've replied to your review
please let me know what you think
pinchartl: patch looks simple enough to be merged on early -rc
send me a v2 with Dave's ack and I'll add to 4.11-rc pile of patches
mchehab: thank you. I'll add kerneldoc to the new structure as it was missing, apart from that it will be unchanged
ok
I'll likely be sending the next pull request tomorrow or Wed
I'll send v2 today
ok, good!
btw, with regards to that documentation patch you're discussing with hverkuil, I agree that you should start with the simple cases first... I tried to do a quick read yesterday, and also found it confusing ;)
I'll do that
let's reorder the two cases later when the majority of drivers will implement the more powerful case :-)
regarding the -ENOSPC error code when calling QBUF, Hans pointed out that drivers return -EINVAL today
I replied that we should have used -ENOSPC
but it's too late
i guess the majority of drivers will keep not supporting buffer size changes - as this is not a need  for non-SoC drivers
I don't think it would break the API though
yes, it is likely too late
quoting my e-mail
"We should have used -ENOSPC, and I believe that switching to -ENOSPC now wouldn't result in any breakage. Can you think of any application that would queue a too small buffer, match the error code against -EINVAL, and have a strategy to recover ? Queuing a too small buffer is an application but in the first place, I don't think application developers will have gone through the trouble of implementing a way
 to recover from their own bug instead of fixing them :-)"
we had already cases of userspace breakage due to return of different error codes
how about documenting -ENOSPC and mentioning that some existing drivers return -EINVAL ?
yes, I know
but in this case I don't think any application would check the exact error code for that ioctl to implement a recovery strategy
(be back in 15 minutes)
maybe, but hard to be sure
(07:44:16) pinchartl: how about documenting -ENOSPC and mentioning that some existing drivers return -EINVAL ?
IMHO, that would be worse
Replied. I agree with Mauro here, drivers have been returning -EINVAL for ages in this specific case, and I see no compelling reason to suddenly change this.
As long as a consistenterror is returned, that's the most important thing. And due to historical reasons that's EINVAL in this case.
if it wouldn't cause any regressions (with we don't know), having a different error code could help userpace to be aware about the cause of the error
but, in any case, it should be consistent on all drivers
and should not cause regressions
it is likely too late to change the error code
I really don't think it is important enough to make the effort. And since this *always* returned -EINVAL I think it is too late as well.
I tend to be a bit more flexible with ABI changes than Mauro :-) but here I agree with him.
:)
mchehab: hverkuil: the problem with EINVAL is that we use it for too many error causes. applications can't tell whether the ioctl failed because the buffer is too small or from dozens of other causes
but there's no urgency to change that now, it could be done later
the situation won't change in a month, it's been that way for a long time already
then let's postpone this decision
agreed
by the time we'll discuss this again, it would be great if you could double-check if the main available V4L2 apps would handle it without regressions
(tvtime, xawtv, vlc, qv4l2, MythTv, camorama, gstreamer, ...)
libv4l2
of course
it's a bit hard to check though
in the sense that there's no code path that is supposed to trigger the problem
apps don't queue too small buffers on purpose
v4l2-compliance could, but normal applications don't
that's why I don't think any of them will care
- if an application never queues too small buffers, it won't care about the change in the return code as it will never see it
pinchartl: you would be surprised to see how old apps do things :-)
once I got one application that were first allocating buffers, then changing the image size
- otherwise, if the application doesn't discriminate between error codes (e.g. if (ret < 0) without checking the value of errno), it won't care
amazingly enough, this worked with bttv driver, as it were always allocating a big buffer, even for small images
until some patch fixed it, causing the app to break
so, only applications that check the error code (e.g. if (errno == EINVAL) or if (errno != EINVAL)) could be affected, and only if they queue too small buffers
I don't think those applications have an error path such as
yes. you have a pattern to check :-)
I've never seen anyone complain about not being able to tell whether EINVAL was because of too small a buffer or something else.
if (errno == EINVAL) { queue_a_bigger_buffer(); }
if, as an application writer, I realize that QBUF fails because the buffer is too small, I'll fix it by making the buffer large enough
Changing to ENOSPC is a lot of work (verification, changing existing drivers) for very little benefit. Just my opinion.
not by adding code that catches the error and retries with a bigger buffer
hverkuil: I've pestered many times about -EINVAL being so vague that it required me to add printk's to the kernel to debug an application
hverkuil: changing the drivers to return the error code that comes from VB2 instead of replacing by -EINVAL is something that would make sense
(provided that it won't break userspace)
I think it would make sense to move the size check to vb2
it has to be done by all drivers
vb2 is not format-aware
and I don't think it should be
but we could have a vb2 call to set the minimum size
drivers would call it in their s_fmt handler for instance
that way the size check would be consistent
but that's also a separate issue from the documentation patch
I've identified a few similar issues related to buffer handling and error management
pinchartl: that sounds more like an ancillary function
I'll try to find time to summarize and address them in the future
but such function would need to be aware of the format
it doesn't need to be aware of the format
just of the size
I don't think vb2 should become format-aware
but it should probably be size-aware
as sizes very much relate to buffers
I would implement such function at V4L2 core
as it is not really VB or VB2 related
but, if we're willing to implement it, I would put there the logic that gets bits per pixel into it
that would remove a lot of static tables from drivers
but the thing is that it is complex patch
once I tried to write something like that
the problem is that the conversion between width/height/pixelformat to bytesperline and sizeimage can be device-specific, so we can't move it all to a central location
but I gave up, because there would be too many things to change
I'd like to have a V4L2 core helper that performs that job in the common case
it would return a size
which could then be passed to vb2
vb2 should handle the size only, and the V4L2 core should take care of resolution/pixelformat
that's not device-specific. A given format has a BPP
the padding at end of line can be device-specific
which influences the image size
yes, but such logic is easy to handle
drivers may pass to the help function the alignment constraints
e. g. something like: bytesperline should be multiple of 32 bits, sizeimage should be multiple of 64 bits
there are multiple options
my point is that such logic shouldn't be in vb2
but vb2 could be made size-aware
pinchartl: that should be a helper function that drivers will call as part of their logic
they may do additional constraints
anyway, not a job for today :-)
I'll resubmit the documentation patch
with -EINVAL
OK
mchehab: hverkuil: regarding ENOSPC vs. EINVAL
let's not change the current behaviour
but for the new proposed scheme that doesn't require buffers to be reallocated
shouldn't we go for ENOSPC ?
that won't break userspace as currently we don't support format changes while buffers are allocated
hi
i would like to use this https://www.linuxtv.org/wiki/index.php/DVBSKY_S960 on a debian system without gui. which apps would be useful for this purpose?
dvbv5-tools
__raven__:  https://www.linuxtv.org/wiki/index.php/DVBv5_Tools
mchehab: hverkuil: here's the current proposal (easier to read than a patch) http://ideasonboard.org/kerneldoc/media/uapi/v4l/buffer.html
__raven__: I'm planning to allow using Kaffeine to connect to a remote hardware without GUI, but patches are not ready yet
there are some apps that allow you to connect to a headless hardware too, like dvr and tvdaemon
pinchartl: what do you mean by "new proposed scheme that doesn't require buffers to be reallocated"?
  VIDIOC_STREAMOFF | VIDIOC_S_EXT_CTRLS | VIDIOC_S_FMT | VIDIOC_QBUF |  VIDIOC_STREAMON   ?
yes
that one isn't supported today by drievrs
drivers
so it's not used by applications :-)
thinking about how you would code it, that seems like a hack :)
as you'll need to track, per file descriptor, if STREAMON was called before, in order to enable returning ENOSPC
hmmmm...
mchehab: hm yes a remote tuner would be the other option but i do not want to have huge overhead by installing mythtv or such things
i will look at the articles at them moment
mchehab, pinchartl: Would you need to do something beyond checking the buffer size (QBUF/PREPARE_BUF) against the current format, and if it's too small, return -ENOSPC?
sailus: if you want to enhance an existing driver to support the new scheme (STREAMOFF - S_FMT - QBUF - STREAMON), how do you tell in the .buf_prepare() handler whether you need to return -ENOSPC or -EINVAL ?
-EINVAL needs to be returned in case the application is using the old scheme
it could be done based on whether buffers are allocated
Can the condition happen in the old scheme in the first place?
sailus: yes: with dmabuf/userptr.
hverkuil: Right.
if (buffer is too small) return vb2_is_busy() ? -ENOSPC : -EINVAL;
but that would be weird I think
nack.
hverkuil: don't nack my idea before I have a chance to tell myself it's not good :-)
I have no problem with -EINVAL, however -ENOSPC would be nicer as -EINVAL is used to tell about a lot of different conditions.
Sorry :-)
Comparing this to reality of error code documentation --- we didn't have EBUSY documented for VIDIOC_S_FMT until I wrote a patch for it a few days ago.
hverkuil: I've updated http://ideasonboard.org/kerneldoc/media/uapi/v4l/buffer.html, could you check it ?
error documentation is a bit hit-and-miss.
Were applications relying not to ever receive -EBUSY from VIDIOC_S_FMT?
Was the code wrong or the documentation? :-)
doc is wrong (or more precisely: incomplete)
sailus: on top of http://ideasonboard.org/kerneldoc/media/uapi/v4l/buffer.html I also have a small patch that uses -ENOSPC for the new scheme. I can fold it in if we agree on it, but let's first agree on the rest :)
That makes writing applications harder.
sailus: what does ? -EINVAL ?
pinchartl: Not documenting what error codes may be returned in different cases.
Perhaps we should write some documentation on how the applications should handle errors?
Unless that already exists.
it's a good point
we should
hverkuil: I hope you like this version better. the order matches what you've requested
If for nothing else, have less application breakages if something changes (through bugfixes, for instance).
Or if new error codes are added. Of course we can't affect what application developers do in the end, but a little hint would do no harm.
applications could still handle errors in a non-compliant way and then break
Indeed.
but it would help avoiding those cases, I agree
I have no issues with EINVAL if ENOSPC seems unfeasible in practice.
Still, not providing descriptive error codes deteriorates the quality of the API.
pinchartl: this version is much better, thanks.
hverkuil, mchehab: Your opinion on adding generic documentation on error handling?
sailus: sorry, not sure what you mean?
hverkuil: ok, I'll post it
sailus: there *is* a generic documentation for errors
If there is, all the better. :-)
https://linuxtv.org/downloads/v4l-dvb-apis-new/uapi/gen-errors.html
and -ENOBUSY is there
I mean: EBUSY
this is (or should be) referenced on *all* ioctls
I meant documentation on how applications should handle errors. For instance, an application shouldn't check for a single error code and ignore the rest.
see the end of: https://linuxtv.org/downloads/v4l-dvb-apis-new/uapi/v4l/vidioc-g-fmt.html
That could be one more note in the list for instance.
First note at ghe gen-errors.html:
1. This list is not exhaustive; ioctls may return other error codes. Since errors may have side effects such as a driver reset, applications should abort on unexpected errors, or otherwise assume that the device is in a bad state.
(that's very harsh)
if I remember well, we added such notice when KDE plasma broke due to an error at the VIDIOC_ENUM_* that were different than EINVAL
mchehab: Ack.
if the notice there is not clear enough, feel free to add doc improvements :-)
Well, all the better if it's already there.
I haven't read through every line of the documentation and application developers likely won't end up doing that either.
People usually only read documentation when they run into problems. It's just like assembling Ikea furniture. :-)
if an app breaks due to not conforming to the recomendations it still breaking userspace, which is a big nono
I think DRM solves this by having to have an app explicity opt-in to changed behavior
larsc: it depends how stupid the application is. I'm pretty sure I can write an application that exercises pretty much any kernel API in a way that will break when the internal implementation changes
yeah!
cfr. the trace point ABI discussion
v2.3 sent
mchehab: hverkuil: once I get your Ack I'll send a pull request
mchehab: by the way, I plan to include the histogram API in the pull request
Hans and Sakari have reviewed and ack it
s/ack/acked/
larsc: yeah, having a way to opt-in would be interesting
some protocols at TCP/IP stack use this concept: there are messages to check if the protocol can do something, and messages to explicitly enable/disable the CAN features
take makes sense for big features, but for small changes it would quickly become awful to handle
yes
ok i have the dvbsky now running but where to get the satelite list from to scan with dvbv5-scan?
mchehab: I've posted "[PATCH v2] v4l: vsp1: Adapt vsp1_du_setup_lif() interface to use a structure"
fully tested on v4.11-rc1, ready for v4.11-rc2
hverkuil: thanks for your ack !
__raven__: satellite tables are at the dtv-scan-tables
https://www.linuxtv.org/wiki/index.php/Dtv-scan-tables
mchehab: would you like to send an ack for "[PATCH v2.3] v4l: Clearly document interactions between formats, controls and buffers" too or should I just send the pull request ?
ok tnx
last piece i need is a kind of framebuffer dvb player. do you know any?
pinchartl: I'll review it later
__raven__: framebuffer dvb player... that sounds like asking for a wooden spaceship, or a steam-powered pacemaker :-)
mchehab: should I send you the pull request already ? I'll leave on Thursday :-/
pinchartl: you do not like wooden spaceships? ;)
__raven__: they have a tendency to burn, which is quite unfortunate if you happen to be within the aforementioned spaceship
bbl
mchehab: I hope you haven't just realized that you're in a wooden spaceship
the player just should work on a debian system which has no graphical environmend
t
pinchartl: I don't have any fb dvb player :-p
:-)
I either use text-mode tools or qt5-based Kaffeine
anyway, need to do some errands. bbl
hm whats that ERROR    FE_SET_PROPERTY: Invalid argument
the infamous -EINVAL error :-D
ok i now have a scanned channel list. how to use it now?
pinchartl: what does that error mean?
__raven__: we just had a discussion about how -EINVAL is very vague, my comment was just a reference to that
__raven__: dvbv5-zap
pinchartl: in this case, it means exactly  Invalid argument
mchehab: yes that brings me that error "ERROR: dvb_fe_set_parms failed (Invalid argument)
one of the arguments for this ioctl has a wrong value
enabling debug will help showing what values were passed to the Kernel
mchehab: I was kidding :-)
yeah, I know :-D
but it is still pretty ambiguous, you have no idea which value was rejected
but that is an issue with kernel error reporting in general
mchehab: do you need anything else from me for the rotation, histogram and "[PATCH v2] v4l: vsp1: Adapt vsp1_du_setup_lif() interface to use a structure" ?
pinchartl: patch looks ok
larsc: yes, standard error report at unix is ambiguous
mchehab: great, thank you ! I'll send a pull request then
oops, sorry
that one you said you would pick up
it's for rotation and histogram that I'll send a pull request when you'll be ready
(unless you would prefer me to send a pull request for that single patch too)
pinchartl: better to send a pull request with this single patch with "GIT FIXES for 4.11" on the email subject
ok I'll do that, thanks
for me to remember to give priority this one ;)
GIT FIXES string is automatically handled by my scripts - preventing me to forget ;)
I got sidetracked by some errands, so I may be applying it only tomorrow
no problem
thanks