The patch titled lib/vsprintf.c: wrong conversion function used has been removed from the -mm tree. Its filename was lib-vsprintfc-wrong-conversion-function-usedpatch-added-to-mm-tree.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: lib/vsprintf.c: wrong conversion function used From: Yi Yang <yi.y.yang@xxxxxxxxx> Fix wrong conversion function used by strict_strtou* Signed-off-by: Yi Yang <yi.y.yang@xxxxxxxxx> Reported-by: Swen Schillig <swen@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/vsprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN lib/vsprintf.c~lib-vsprintfc-wrong-conversion-function-usedpatch-added-to-mm-tree lib/vsprintf.c --- a/lib/vsprintf.c~lib-vsprintfc-wrong-conversion-function-usedpatch-added-to-mm-tree +++ a/lib/vsprintf.c @@ -220,7 +220,7 @@ int strict_strtou##type(const char *cp, if (len == 0) \ return -EINVAL; \ \ - val = simple_strtoul(cp, &tail, base); \ + val = simple_strtou##type(cp, &tail, base); \ if ((*tail == '\0') || \ ((len == (size_t)(tail - cp) + 1) && (*tail == '\n'))) {\ *res = val; \ _ Patches currently in -mm which might be from yi.y.yang@xxxxxxxxx are linux-next.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