The patch titled Subject: memtest: use kstrtouint instead of simple_strtoul has been removed from the -mm tree. Its filename was memtest-use-kstrtouint-instead-of-simple_strtoul.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Vladimir Murzin <vladimir.murzin@xxxxxxx> Subject: memtest: use kstrtouint instead of simple_strtoul Since simple_strtoul is obsolete and memtest_pattern is type of int, use kstrtouint instead. Signed-off-by: Vladimir Murzin <vladimir.murzin@xxxxxxx> Cc: Leon Romanovsky <leon@xxxxxxx> Acked-by: David Rientjes <rientjes@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memtest.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff -puN mm/memtest.c~memtest-use-kstrtouint-instead-of-simple_strtoul mm/memtest.c --- a/mm/memtest.c~memtest-use-kstrtouint-instead-of-simple_strtoul +++ a/mm/memtest.c @@ -89,16 +89,18 @@ static void __init do_one_pass(u64 patte } /* default is disabled */ -static int memtest_pattern __initdata; +static unsigned int memtest_pattern __initdata; static int __init parse_memtest(char *arg) { + int ret = 0; + if (arg) - memtest_pattern = simple_strtoul(arg, NULL, 0); + ret = kstrtouint(arg, 0, &memtest_pattern); else memtest_pattern = ARRAY_SIZE(patterns); - return 0; + return ret; } early_param("memtest", parse_memtest); _ Patches currently in -mm which might be from vladimir.murzin@xxxxxxx are -- 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