Commit 168c42bc authored by Akinobu Mita's avatar Akinobu Mita Committed by Linus Torvalds

fault-inject: add /proc/<pid>/fail-nth

fail-nth interface is only created in /proc/self/task/<current-tid>/.
This change also adds it in /proc/<pid>/.

This makes shell based tool a bit simpler.

	$ bash -c "builtin echo 100 > /proc/self/fail-nth && exec ls /"

Link: http://lkml.kernel.org/r/1491490561-10485-6-git-send-email-akinobu.mita@gmail.comSigned-off-by: default avatarAkinobu Mita <akinobu.mita@gmail.com>
Cc: Dmitry Vyukov <dvyukov@google.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 1203c8e6
...@@ -136,7 +136,8 @@ use the boot option: ...@@ -136,7 +136,8 @@ use the boot option:
o proc entries o proc entries
- /proc/self/task/<current-tid>/fail-nth: - /proc/<pid>/fail-nth:
- /proc/self/task/<tid>/fail-nth:
Write to this file of integer N makes N-th call in the task fail. Write to this file of integer N makes N-th call in the task fail.
Read from this file returns a integer value. A value of '0' indicates Read from this file returns a integer value. A value of '0' indicates
......
...@@ -2962,6 +2962,7 @@ static const struct pid_entry tgid_base_stuff[] = { ...@@ -2962,6 +2962,7 @@ static const struct pid_entry tgid_base_stuff[] = {
#endif #endif
#ifdef CONFIG_FAULT_INJECTION #ifdef CONFIG_FAULT_INJECTION
REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations), REG("make-it-fail", S_IRUGO|S_IWUSR, proc_fault_inject_operations),
REG("fail-nth", 0644, proc_fail_nth_operations),
#endif #endif
#ifdef CONFIG_ELF_CORE #ifdef CONFIG_ELF_CORE
REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations), REG("coredump_filter", S_IRUGO|S_IWUSR, proc_coredump_filter_operations),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment