The patch titled hwrng: fix intel probe error unwind has been added to the -mm tree. Its filename is hwrng-fix-intel-probe-error-unwind.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: hwrng: fix intel probe error unwind From: Michael Buesch <mb@xxxxxxxxx> The intel hwrng leaks an iomapped resource, if hwrng_register() failes. This fixes it. Signed-off-by: Michael Buesch <mb@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/hw_random/intel-rng.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/char/hw_random/intel-rng.c~hwrng-fix-intel-probe-error-unwind drivers/char/hw_random/intel-rng.c --- a/drivers/char/hw_random/intel-rng.c~hwrng-fix-intel-probe-error-unwind +++ a/drivers/char/hw_random/intel-rng.c @@ -164,7 +164,7 @@ static int __init mod_init(void) if (err) { printk(KERN_ERR PFX "RNG registering failed (%d)\n", err); - goto out; + goto err_unmap; } out: return err; _ Patches currently in -mm which might be from mb@xxxxxxxxx are git-netdev-all.patch git-wireless-bcm43xx-fix.patch hwrng-fix-intel-probe-error-unwind.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