The patch titled md: check for memory allocation failure in faulty personality has been removed from the -mm tree. Its filename was md-check-for-memory-allocation-failure-in-faulty-personality.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: md: check for memory allocation failure in faulty personality From: Sven Wegener <sven.wegener@xxxxxxxxxxx> It's a fault injection module, but I don't think we should oops here. Signed-off-by: Sven Wegener <sven.wegener@xxxxxxxxxxx> Cc: Neil Brown <neilb@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/md/faulty.c | 2 ++ 1 file changed, 2 insertions(+) diff -puN drivers/md/faulty.c~md-check-for-memory-allocation-failure-in-faulty-personality drivers/md/faulty.c --- a/drivers/md/faulty.c~md-check-for-memory-allocation-failure-in-faulty-personality +++ a/drivers/md/faulty.c @@ -287,6 +287,8 @@ static int run(mddev_t *mddev) int i; conf_t *conf = kmalloc(sizeof(*conf), GFP_KERNEL); + if (!conf) + return -ENOMEM; for (i=0; i<Modes; i++) { atomic_set(&conf->counters[i], 0); _ Patches currently in -mm which might be from sven.wegener@xxxxxxxxxxx are origin.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