Re: [PATCH] scripts: Have make TAGS not include structure members

2014-01-03 Thread mmarek
On Tue, Nov 19, 2013 at 07:34:14PM -0500, Steven Rostedt wrote: > I wasn't going to use this change, but instead add this change: [...] > --- linux-trace.git.orig/scripts/tags.sh 2013-11-19 19:29:34.352371615 > -0500 > +++ linux-trace.git/scripts/tags.sh 2013-11-19 19:32:37.821152204 -0500

Re: [PATCH] scripts: Have make TAGS not include structure members

2014-01-03 Thread mmarek
On Tue, Nov 19, 2013 at 07:34:14PM -0500, Steven Rostedt wrote: I wasn't going to use this change, but instead add this change: [...] --- linux-trace.git.orig/scripts/tags.sh 2013-11-19 19:29:34.352371615 -0500 +++ linux-trace.git/scripts/tags.sh 2013-11-19 19:32:37.821152204 -0500 @@

[patch 3/3] Fix XFS_IOC_FSBULKSTAT{,_SINGLE} and XFS_IOC_FSINUMBERS in compat mode

2007-06-19 Thread mmarek
* 32bit struct xfs_fsop_bulkreq has different size and layout of members, no matter the alignment. Move the code out of the #else branch (why was it there in the first place?). Define _32 variants of the ioctl constants. * 32bit struct xfs_bstat is different because of time_t and on i386

[patch 2/3] Fix XFS_IOC_*_TO_HANDLE and XFS_IOC_{OPEN,READLINK}_BY_HANDLE in compat mode

2007-06-19 Thread mmarek
32bit struct xfs_fsop_handlereq has different size and offsets (due to pointers). TODO: case XFS_IOC_{FSSETDM,ATTRLIST,ATTRMULTI}_BY_HANDLE still not handled. Signed-off-by: Michal Marek <[EMAIL PROTECTED]> --- fs/xfs/linux-2.6/xfs_ioctl32.c | 57 + 1

[patch 1/3] Fix XFS_IOC_FSGEOMETRY_V1 in compat mode

2007-06-19 Thread mmarek
i386 struct xfs_fsop_geom_v1 has no padding after the last member, so the size is different. Signed-off-by: Michal Marek <[EMAIL PROTECTED]> --- fs/xfs/linux-2.6/xfs_ioctl32.c | 42 - 1 file changed, 41 insertions(+), 1 deletion(-) ---

[patch 0/3] Fix for XFS compat ioctls (try2)

2007-06-19 Thread mmarek
Hi, here is my second attempt at fixing (some of) the XFS ioctls in compat mode. The main difference from the first version is the bulkstat patch, which I modified to do less copies (no unnecessary copy_in_user() anymore). -- have a nice day, Michal Marek - To unsubscribe from this list: send

[patch 0/3] Fix for XFS compat ioctls (try2)

2007-06-19 Thread mmarek
Hi, here is my second attempt at fixing (some of) the XFS ioctls in compat mode. The main difference from the first version is the bulkstat patch, which I modified to do less copies (no unnecessary copy_in_user() anymore). -- have a nice day, Michal Marek - To unsubscribe from this list: send

[patch 2/3] Fix XFS_IOC_*_TO_HANDLE and XFS_IOC_{OPEN,READLINK}_BY_HANDLE in compat mode

2007-06-19 Thread mmarek
32bit struct xfs_fsop_handlereq has different size and offsets (due to pointers). TODO: case XFS_IOC_{FSSETDM,ATTRLIST,ATTRMULTI}_BY_HANDLE still not handled. Signed-off-by: Michal Marek [EMAIL PROTECTED] --- fs/xfs/linux-2.6/xfs_ioctl32.c | 57 + 1 file

[patch 1/3] Fix XFS_IOC_FSGEOMETRY_V1 in compat mode

2007-06-19 Thread mmarek
i386 struct xfs_fsop_geom_v1 has no padding after the last member, so the size is different. Signed-off-by: Michal Marek [EMAIL PROTECTED] --- fs/xfs/linux-2.6/xfs_ioctl32.c | 42 - 1 file changed, 41 insertions(+), 1 deletion(-) ---

[patch 3/3] Fix XFS_IOC_FSBULKSTAT{,_SINGLE} and XFS_IOC_FSINUMBERS in compat mode

2007-06-19 Thread mmarek
* 32bit struct xfs_fsop_bulkreq has different size and layout of members, no matter the alignment. Move the code out of the #else branch (why was it there in the first place?). Define _32 variants of the ioctl constants. * 32bit struct xfs_bstat is different because of time_t and on i386