#v4l 2016-04-08,Fri

↑back Search ←Prev date Next date→ Show only urls(Click on time to select a line by its url)

WhoWhatWhen
mchehabok, thanks [00:03]
....................................................................................... (idle for 7h10mn)
***Tex_Nick has left "In Linux, We Trust" [07:13]
...... (idle for 27mn)
ccaionehverkuil: unfortunately it doesn't solve the problem. In my case the cmd passed to do_video_ioctl() is still VIDIOC_DQEVENT with a wrong embedded size for struct v4l2_event. So 'case VIDIOC_DQEVENT' is missed and I lost the ioctl [07:40]
alse. The userspace is issueing the ioctl with VIDIOC_DQEVENT not VIDIOC_DQEVENT32. In do_video_ioctl() I would expect to receive VIDIOC_DQEVENT32 when the userspace is 32bit. Where the conversion VIDIOC_DQEVENT->VIDIOC_DQEVENT32 is done before reaching do_video_ioctl()? [07:52]
.................................................... (idle for 4h19mn)
nohoushverkuil: ping [12:11]
.................. (idle for 1h25mn)
sailushverkuil: 655e9780ab913a3a06d4a164d55e3b755524186d is wrong.
The right solution would have been to use __packed
[13:36]
Albeit fixing that now could prove troublesome. [13:42]
ccaionesailus: I don't think that with __packed the problem is solved, since what's happening here is that struct timespec definition differs in userspace and kernelspace. It's not that it's just wrongly packed. [13:55]
sailusccaione: No, not quite.
I think the original problem came about with control events.
Aarch64 and arm appear to have similar alignment for the data types involved, unlike x86 and x86-64.
And the "fix" probably fixed it for aarch64 but broke x86 compat at the same time.
Is compat even relevant for aarch64 btw.?
[14:00]
ccaioneI'm on aarch64 [14:01]
sailusCan you run 32-bit arm binaries on aarch64 machines?
Ah.
Interesting.
I though the fix was especially intended for aarch64.
[14:01]
ccaioneuhm, in what case do_video_ioctl() receive a ioctl with cmd == VIDIOC_DQEVENT32? [14:02]
sailusIt *should* happen when you run a 32-bit program on a 64-bit machine.
If it doesn't, it's a bug (as pinchartl noted).
[14:03]
ccaionethe problem is that I don't see the code path for which the ioctl called from the 32-bit program using VIDIOC_DQEVENT, arrives in do_video_ioctl() as VIDIOC_DQEVENT32 [14:05]
sailusccaione: Can you run 32-bit arm binaries on aarch64? [14:06]
ccaionesailus: yes [14:06]
..... (idle for 23mn)
sailusccaione: I'll try to take a look at the issue, but right now I have other urgent matters to handle. [14:29]
ccaionesailus: np. Thank you. [14:33]
.... (idle for 15mn)
sailusccaione: Is the size of timespec different (i.e. sizeof(struct timespec) on 32-bit arm and sizeof(compat_timespec) on aarch64) different?
What are the values?
I wonder if you're getting the wrong definition of __kernel_time_t for some reason. That'd be long long, i.e. 64 bits...
[14:48]
ccaionesailus: IIRC of the 32-bit app side I have 8, on the 64-bit kernel side 16. [14:58]
sailusccaione: How does your struct compat_timespec look like?
I can't figure out how that could be 16 bytes, it's a struct of two s32's.
[15:12]
ccaionesailus: I don't have the board with me to check run-time. For sure they were different. [15:15]
sailusccaione: No need to. Just taking a glance to the source would be enough.
It's in arch/arm64/include/asm/compat.h .
[15:16]
ccaionesailus: on my kernel https://paste.fedoraproject.org/351828/01287711/ [15:19]
sailuscompat_time_t ?
It's in the same file.
[15:23]
ccaiones32 [15:24]
sailusAnd... that'd be 16 bytes on aarch64?
I have to say I don't know aarch64 at all but it looks very strange to me.
[15:24]
ccaioneI'm not following you here since in my test compat_timespec is never used, always the full struct timespec is used instead
userspace uses sizeof(v4l2_event) to encode the size portion of the cmd
and inside v4l2_event we have struct timespec
[15:25]
sailusYes. [15:27]
ccaionethis generate a cmd value for the VIDIOC_DQEVENT ioctl. For the kernel the cmd value associated with VIDIOC_DQEVENT is different [15:27]
sailusBut the size was 16 bytes in the kernel, right? [15:27]
ccaionesince for the kernel sizeof(v4l2_event) is different [15:27]
sailusYes, in the kernel it should match VIDIOC_DQEVENT32. [15:28]
ccaionebut how? if the userspace is doing a ioctl on VIDIOC_DQEVENT, how we receive VIDIOC_DQEVENT32 on the kernel side?
I'm missing this stpe
[15:28]
sailusIf you have a 32-bit user space binary that runs on a 64-bit kernel, this is expected.
The ABI is different, and the memory layout of struct v4l2_event on arm32 should match that of struct v4l2_event32 on aarch64.
struct v4l2_event is different on aarch64.
That's the point of the compat IOCTLs.
[15:29]
ccaioneagree, but still I don't see the codepath that changes my VIDIOC_DQEVENT ioctl into a VIDIOC_DQEVENT32 [15:30]
sailusVIDIOC_DQEVENT on arm is exactly the same as VIDIOC_DQEVENT32 on aarch64. At least that's the intent.
(And I presume that's not the case for you, for some reason.)
[15:31]
ccaioneI guess that's the case also on my setup. But let me going through the code step by step. 1) my app issues an ioctl with VIDIOC_DQEVENT. In the value for the cmd is embedded the sizeof(struct v4l2_event). So for exaple cmd == 0xaaaaaaaa
2) this ioctl is passed in the kernel all the way to v4l2_compat_ioctl32()
3) from here to do_video_ioctl()
cmd is still 0xaaaaaaaa
hoooo, wait, I see you point now. So in theory VIDIOC_DQEVENT32 == 0xaaaaaaaa
and then we change cmd = VIDIOC_DQEVENT in the switch-case
sailus: ok, you are right. For some reason in my case VIDIOC_DQEVENT on arm != VIDIOC_DQEVENT32 on aarch64
[15:45]
***ribalda has quit IRC (Ping timeout: 260 seconds) [15:51]
sailusIndeed.
I have no access to aarch64 hardware, I presume some others do, at least Andrzej who submitted the patch changing things a bit. It'd be helpful if you could debug what's causing the difference in size.
Need to leave now, might be back later.
[16:03]
ccaionesailus: I need to check that and I left the hw in the office. But now I undesterstood what's going on and I can better debug this issue on monday
thanks for your help
[16:12]
sailusccaione: You're welcome! [16:13]
.................................... (idle for 2h58mn)
koikemchehab, about "[PATCH v3] [media] tpg: Export the tpg code from vivid as a module", the tpg doesn't really need vivid, anyone could write a module that uses the tpg as the video pattern generator, so it doesn't really depends on vivid. I am having a hard time to understand why "depends on VIDEO_VIVID" in the tpg's Kconfig is the best option? [19:11]
pinchartlkoike: I'd use "select TPG" in the vivid Kconfig entry instead [19:13]
koikepinchartl, I am going to resend the patch using "select TPG" then
pinchartl, when you use yavta -cX -F out, do you use any specific tool to visualize the captured images?
[19:14]
pinchartlI usually use raw2rgbpnm3~
raw2rgbpnm
[19:17]
koikepinchartl, thank you, I am going to check that [19:17]
pinchartlit was hosted on gitorious :-/
sailus: can you push it somewhere else ?
[19:19]
javier__pinchartl: in case is useful, I found an old repo some months ago and pushed to github: https://github.com/martinezjavier/raw2rgbpnm
probably is not the last version but I've been using it without issues
[19:20]
pinchartljavier__: I have 8 patches on top of that. can you give pinchartl push permissions for that repo ? [19:22]
javier__pinchartl: done [19:24]
pinchartlpushed, thanks
you can now remove my commit access :-)
(if you want)
[19:26]
javier__pinchartl: I'll keep it if you don't mind, so you can push there as a temporary repo until sailus finds a new home for that repo [19:28]
pinchartlsure, no issue
I actually have 3 more patches if you want to review them :-)
[19:29]
javier__pinchartl: sure :) [19:31]
pinchartlsent [19:36]
javier__pinchartl: Ok, thanks [19:36]
sailuspinchartl, javier__: http://salottisipuli.retiisi.org.uk/cgi-bin/gitweb.cgi?p=~sailus/raw2rgbpnm.git;a=summary [19:41]
pinchartlsailus: thanks. can you get that indexed by google ? [19:42]
sailusIt's been there all the time.
How do you do that?
I could add a link to gitweb to the main page I guess.
That might be actually a good idea.
[19:42]
pinchartlthat would be useful
and also
how about git.retiisi.org.uk ?
[19:42]
sailusLooks like I've changed it in 2008...
I can add an alias.
[19:43]
pinchartlthanks
and let me know if you like my three patches :-)
[19:44]
javier__sailus: cool, I didn't know about that repo. I'll delete the temporary one I created at github [19:46]
pinchartljavier__: or maybe link to Sakari's repo from there
that might help getting it indexed by google
sailus: you can also post an announcement on linux-media
[19:48]
javier__pinchartl: OK [19:49]
sailusDon't you think it's a bit late for an announcement? :-)
Sure I can send one.
[19:51]
javier__pinchartl: your 3 format patches looks good to me [19:59]
sailusHmm. I even have my old GPG key here I replaced in 2011.
Time to update, huh?
[20:11]
There's now git.retiisi.org.uk, redirecting from root to gitweb.cgi.
And a link from my homepage.
Eight years is a good interval for homepage updates, right?
[20:19]
***awalls1 has left [20:24]
pinchartlsailus: slightly late, yes :-) but having it archived on the mailing list will improve search engine ratings a bit
sailus: I'm not sure I'd call it an interval :-)
sailus: if you can configure your web server to turn http://git.retiisi.org.uk/cgi-bin/gitweb.cgi?p=~sailus/raw2rgbpnm.git into http://git.retiisi.org.uk/sailus/raw2rgbpnm it would help too
[20:34]
sailuspinchartl: Done.
Well, the gitweb is now available in the root.
[20:43]
nohoushverkuil: ping [20:48]
pinchartlsailus: much better, thanks [20:52]
................................ (idle for 2h39mn)
headlessnite [23:31]

↑back Search ←Prev date Next date→ Show only urls(Click on time to select a line by its url)