The patch titled Subject: fault-inject: automatically detect the number base for fail-nth write interface has been added to the -mm tree. Its filename is fault-inject-automatically-detect-the-number-base-for-fail-nth-write-interface.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/fault-inject-automatically-detect-the-number-base-for-fail-nth-write-interface.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/fault-inject-automatically-detect-the-number-base-for-fail-nth-write-interface.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Akinobu Mita <akinobu.mita@xxxxxxxxx> Subject: fault-inject: automatically detect the number base for fail-nth write interface Automatically detect the number base to use when writing to fail-nth file instead of always parsing as a decimal number. Link: http://lkml.kernel.org/r/1491490561-10485-2-git-send-email-akinobu.mita@xxxxxxxxx Signed-off-by: Akinobu Mita <akinobu.mita@xxxxxxxxx> Cc: Dmitry Vyukov <dvyukov@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/proc/base.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/proc/base.c~fault-inject-automatically-detect-the-number-base-for-fail-nth-write-interface fs/proc/base.c --- a/fs/proc/base.c~fault-inject-automatically-detect-the-number-base-for-fail-nth-write-interface +++ a/fs/proc/base.c @@ -1371,7 +1371,7 @@ static ssize_t proc_fail_nth_write(struc put_task_struct(task); if (task != current) return -EPERM; - err = kstrtoint_from_user(buf, count, 10, &n); + err = kstrtoint_from_user(buf, count, 0, &n); if (err) return err; if (n < 0 || n == INT_MAX) _ Patches currently in -mm which might be from akinobu.mita@xxxxxxxxx are fault-inject-automatically-detect-the-number-base-for-fail-nth-write-interface.patch fault-inject-parse-as-natural-1-based-value-for-fail-nth-write-interface.patch fault-inject-make-fail-nth-read-write-interface-symmetric.patch fault-inject-simplify-access-check-for-fail-nth.patch fault-inject-add-proc-pid-fail-nth.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