The patch titled spi: potential memleak in spidev_ioctl has been removed from the -mm tree. Its filename was spi-potential-memleak-in-spidev_ioctl.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: spi: potential memleak in spidev_ioctl From: Florin Malita <fmalita@xxxxxxxxx> 'ioc' should be deallocated if __copy_from_user fails (found by Coverity - CID 1644). Signed-off-by: Florin Malita <fmalita@xxxxxxxxx> Signed-off-by: David Brownell <dbrownell@xxxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/spi/spidev.c | 1 + 1 files changed, 1 insertion(+) diff -puN drivers/spi/spidev.c~spi-potential-memleak-in-spidev_ioctl drivers/spi/spidev.c --- a/drivers/spi/spidev.c~spi-potential-memleak-in-spidev_ioctl +++ a/drivers/spi/spidev.c @@ -364,6 +364,7 @@ spidev_ioctl(struct inode *inode, struct break; } if (__copy_from_user(ioc, (void __user *)arg, tmp)) { + kfree(ioc); retval = -EFAULT; break; } _ Patches currently in -mm which might be from fmalita@xxxxxxxxx are git-ubi.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