Re: [PATCH 2/4] ioctl: add decoding for FS_IOC_FIEMAP

2016-05-20 Thread Dmitry V. Levin
On Wed, May 18, 2016 at 06:09:40PM -0400, je...@suse.com wrote: > From: Jeff Mahoney > > * file_ioctl.c: Add it. > * ioctl.c: Add special handling for 'f' code ioctls. > --- > file_ioctl.c | 68 > > ioctl.c | 11 +- > 2 f

Re: [PATCH 2/4] ioctl: add decoding for FS_IOC_FIEMAP

2016-05-20 Thread Dmitry V. Levin
On Wed, May 18, 2016 at 06:09:40PM -0400, je...@suse.com wrote: [...] > diff --git a/ioctl.c b/ioctl.c > index d82af4b..f6ca2f0 100644 > --- a/ioctl.c > +++ b/ioctl.c > @@ -228,11 +228,20 @@ ioctl_decode(struct tcb *tcp) > { > const unsigned int code = tcp->u_arg[1]; > const long arg =

Re: [PATCH 2/4] ioctl: add decoding for FS_IOC_FIEMAP

2016-05-20 Thread Dmitry V. Levin
On Wed, May 18, 2016 at 06:09:40PM -0400, je...@suse.com wrote: > From: Jeff Mahoney > > * file_ioctl.c: Add it. > * ioctl.c: Add special handling for 'f' code ioctls. > --- > file_ioctl.c | 68 > > ioctl.c | 11 +- > 2 f

[PATCH 2/4] ioctl: add decoding for FS_IOC_FIEMAP

2016-05-18 Thread jeffm
From: Jeff Mahoney * file_ioctl.c: Add it. * ioctl.c: Add special handling for 'f' code ioctls. --- file_ioctl.c | 68 ioctl.c | 11 +- 2 files changed, 78 insertions(+), 1 deletion(-) diff --git a/file_ioctl.c b/file_ioc