Google Summer of Code 2015 strace participation

2015-02-13 Thread Philippe Ombredanne
Fellow stracers: The GSOC is on and we had a decent run last year. I think this is worth it and we should participate this year again. Dmitry agreed. I will setup the wiki pages accordingly ... Who wants to join up as a mentor? What would be some of the projects ideas we could have? -- Cordially

[PATCH v3] Add decoding for evdev ioctls.

2015-02-13 Thread Etienne Gemsa
This patch introduces decoding for evdev ioctls. For EVIOCSFF the five first members are decoded, the union is not. The code was compiled and tested on x86_64 with Linux 3.13. * Makefile.am: add evdev.c to sources. * defs.h (evdev_ioctl): New prototype. * evdev.c (evdev_

[PATCH v3] Add decoding for evdev ioctls.

2015-02-13 Thread Etienne Gemsa
This patch introduces decoding for evdev ioctls. For EVIOCSFF the five first members are decoded, the union is not. The code was compiled and tested on x86_64 with Linux 3.13. * Makefile.am: add evdev.c to sources. * defs.h (evdev_ioctl): New prototype. * evdev.c (evdev_

Re: [PATCH v3] Add decoding for evdev ioctls.

2015-02-13 Thread Dmitry V. Levin
On Fri, Feb 13, 2015 at 04:41:25PM +0100, Etienne Gemsa wrote: [...] > Oops, the last patch was not the one I intended to send. Please check this > one instead, > thank you. This one fails to build, too. > > > + if (_IOC_DIR(code) != _IOC_WRITE) > > > + return 0; > > > I