The patch titled Fix XFS_IOC_FSBULKSTAT{,_SINGLE} and XFS_IOC_FSINUMBERS in compat mode (fix) has been added to the -mm tree. Its filename is fix-xfs_ioc_fsbulkstat_single-and-xfs_ioc_fsinumbers-in-compat-mode-update.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Fix XFS_IOC_FSBULKSTAT{,_SINGLE} and XFS_IOC_FSINUMBERS in compat mode (fix) From: Michal Marek <mmarek@xxxxxxx> On Thu, Jun 28, 2007 at 11:15:30AM -0700, Andrew Morton wrote: > CC fs/xfs/linux-2.6/xfs_ioctl32.o > fs/xfs/linux-2.6/xfs_ioctl32.c: In function â??xfs_ioc_bulkstat_compatâ??: > fs/xfs/linux-2.6/xfs_ioctl32.c:334: error: â??xfs_inumbers_fmt_compatâ?? undeclared (first use in this function) > fs/xfs/linux-2.6/xfs_ioctl32.c:334: error: (Each undeclared identifier is reported only once > fs/xfs/linux-2.6/xfs_ioctl32.c:334: error: for each function it appears in.) Sorry, the #define was wrong. This one should work better (at least build-tested on ppc64 this time): Signed-off-by: Michal Marek <mmarek@xxxxxxx> Cc: Timothy Shimmin <tes@xxxxxxx> Cc: David Chinner <dgc@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/xfs/linux-2.6/xfs_ioctl32.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN fs/xfs/linux-2.6/xfs_ioctl32.c~fix-xfs_ioc_fsbulkstat_single-and-xfs_ioc_fsinumbers-in-compat-mode-update fs/xfs/linux-2.6/xfs_ioctl32.c --- a/fs/xfs/linux-2.6/xfs_ioctl32.c~fix-xfs_ioc_fsbulkstat_single-and-xfs_ioc_fsinumbers-in-compat-mode-update +++ a/fs/xfs/linux-2.6/xfs_ioctl32.c @@ -153,7 +153,7 @@ STATIC int xfs_inumbers_fmt_compat( #else -#define xfs_inumbers_fmt_compat(a, b, c, d) xfs_inumbers_fmt(a, b, c, d) +#define xfs_inumbers_fmt_compat xfs_inumbers_fmt #define _PACKED #endif _ Patches currently in -mm which might be from mmarek@xxxxxxx are fix-xfs_ioc_fsgeometry_v1-in-compat-mode.patch fix-xfs_ioc__to_handle-and-xfs_ioc_openreadlink_by_handle-in-compat-mode.patch fix-xfs_ioc_fsbulkstat_single-and-xfs_ioc_fsinumbers-in-compat-mode.patch fix-xfs_ioc_fsbulkstat_single-and-xfs_ioc_fsinumbers-in-compat-mode-update.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html