diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2012-07-30 17:43:20 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-07-30 20:25:22 -0400 |
commit | c24aa64d169b7224f1a5bc6a4b1365da37ce861b (patch) | |
tree | e9974ad7a6edd7303c0b75d20fedcb7a7d5dd389 /Documentation/fault-injection | |
parent | d89dffa976bcd13fd87eb76e02e3b71c3a7868e3 (diff) |
fault-injection: add tool to run command with failslab or fail_page_alloc
This adds tools/testing/fault-injection/failcmd.sh to run a command while
injecting slab/page allocation failures via fault injection.
Example:
Run a command "make -C tools/testing/selftests/ run_tests" with
injecting slab allocation failure.
# ./tools/testing/fault-injection/failcmd.sh \
-- make -C tools/testing/selftests/ run_tests
Same as above except to specify 100 times failures at most instead of
one time at most by default.
# ./tools/testing/fault-injection/failcmd.sh --times=100 \
-- make -C tools/testing/selftests/ run_tests
Same as above except to inject page allocation failure instead of slab
allocation failure.
# env FAILCMD_TYPE=fail_page_alloc \
./tools/testing/fault-injection/failcmd.sh --times=100 \
-- make -C tools/testing/selftests/ run_tests
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'Documentation/fault-injection')
-rw-r--r-- | Documentation/fault-injection/fault-injection.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Documentation/fault-injection/fault-injection.txt b/Documentation/fault-injection/fault-injection.txt index ba4be8b77093..4cf1a2a6bd72 100644 --- a/Documentation/fault-injection/fault-injection.txt +++ b/Documentation/fault-injection/fault-injection.txt | |||
@@ -240,3 +240,30 @@ trap "echo 0 > /sys/kernel/debug/$FAILTYPE/probability" SIGINT SIGTERM EXIT | |||
240 | echo "Injecting errors into the module $module... (interrupt to stop)" | 240 | echo "Injecting errors into the module $module... (interrupt to stop)" |
241 | sleep 1000000 | 241 | sleep 1000000 |
242 | 242 | ||
243 | Tool to run command with failslab or fail_page_alloc | ||
244 | ---------------------------------------------------- | ||
245 | In order to make it easier to accomplish the tasks mentioned above, we can use | ||
246 | tools/testing/fault-injection/failcmd.sh. Please run a command | ||
247 | "./tools/testing/fault-injection/failcmd.sh --help" for more information and | ||
248 | see the following examples. | ||
249 | |||
250 | Examples: | ||
251 | |||
252 | Run a command "make -C tools/testing/selftests/ run_tests" with injecting slab | ||
253 | allocation failure. | ||
254 | |||
255 | # ./tools/testing/fault-injection/failcmd.sh \ | ||
256 | -- make -C tools/testing/selftests/ run_tests | ||
257 | |||
258 | Same as above except to specify 100 times failures at most instead of one time | ||
259 | at most by default. | ||
260 | |||
261 | # ./tools/testing/fault-injection/failcmd.sh --times=100 \ | ||
262 | -- make -C tools/testing/selftests/ run_tests | ||
263 | |||
264 | Same as above except to inject page allocation failure instead of slab | ||
265 | allocation failure. | ||
266 | |||
267 | # env FAILCMD_TYPE=fail_page_alloc \ | ||
268 | ./tools/testing/fault-injection/failcmd.sh --times=100 \ | ||
269 | -- make -C tools/testing/selftests/ run_tests | ||