The patch titled megaraid gcc 4.1 warning fix has been added to the -mm tree. Its filename is megaraid-gcc-41-warning-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this From: Daniel Walker <dwalker@xxxxxxxxxx> drivers/scsi/megaraid.c: In function â??megadev_ioctlâ??: drivers/scsi/megaraid.c:3665: warning: ignoring return value of â??copy_to_userâ??, declared with attribute warn_unused_result Signed-off-by: Daniel Walker <dwalker@xxxxxxxxxx> Acked-by: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> Cc: <Neela.Kolli@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/scsi/megaraid.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff -puN drivers/scsi/megaraid.c~megaraid-gcc-41-warning-fix drivers/scsi/megaraid.c --- devel/drivers/scsi/megaraid.c~megaraid-gcc-41-warning-fix 2006-05-11 10:07:07.000000000 -0700 +++ devel-akpm/drivers/scsi/megaraid.c 2006-05-11 10:07:07.000000000 -0700 @@ -3658,8 +3658,9 @@ megadev_ioctl(struct inode *inode, struc * Send the request sense data also, irrespective of * whether the user has asked for it or not. */ - copy_to_user(upthru->reqsensearea, - pthru->reqsensearea, 14); + if (copy_to_user(upthru->reqsensearea, + pthru->reqsensearea, 14)) + rval = (-EFAULT); freemem_and_return: if( pthru->dataxferlen ) { _ Patches currently in -mm which might be from dwalker@xxxxxxxxxx are tpm_register_hardware-gcc-41-warning-fix.patch git-net.patch megaraid-gcc-41-warning-fix.patch invert-irq-migrationc-brach-prediction.patch profile-likely-unlikely-macros.patch profile-likely-unlikely-macros-tidy.patch profile-likely-unlikely-macros-fix.patch profile-likely-unlikely-macros-fix-2.patch fix-gcc-3x-w-likely-profiling.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