The patch titled gcov-add-gcov-profiling-infrastructure-update has been removed from the -mm tree. Its filename was gcov-add-gcov-profiling-infrastructure-update.patch This patch was dropped because it was folded into gcov-add-gcov-profiling-infrastructure.patch The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: gcov-add-gcov-profiling-infrastructure-update From: Peter Oberparleiter <oberpar@xxxxxxxxxxxxxxxxxx> See below for the updated patch that uses strtoul instead of sscanf. Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/gcov/fs.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff -puN kernel/gcov/fs.c~gcov-add-gcov-profiling-infrastructure-update kernel/gcov/fs.c --- a/kernel/gcov/fs.c~gcov-add-gcov-profiling-infrastructure-update +++ a/kernel/gcov/fs.c @@ -70,15 +70,8 @@ static int gcov_persist = 1; static int __init gcov_persist_setup(char *str) { - int val; - char delim; - - if (sscanf(str, "%d %c", &val, &delim) != 1) { - pr_warning("invalid gcov_persist parameter '%s'\n", str); - return 0; - } - pr_info("setting gcov_persist to %d\n", val); - gcov_persist = val; + gcov_persist = simple_strtoul(str, NULL, 0); + pr_info("setting gcov_persist to %d\n", gcov_persist); return 1; } _ Patches currently in -mm which might be from oberpar@xxxxxxxxxxxxxxxxxx are kernel-constructor-support.patch seq_file-add-function-to-write-binary-data.patch gcov-add-gcov-profiling-infrastructure.patch gcov-add-gcov-profiling-infrastructure-update.patch gcov-add-gcov-profiling-infrastructure-use-strict_strtoul.patch gcov-add-gcov-profiling-infrastructure-use-vmalloc-for-duplicating-counter-data.patch gcov-enable-gcov_profile_all-for-x86_64.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