[PATCH] fault-injection: defaults likely to please a new user
Assign defaults most likely to please a new user: 1) generate some logging output (verbose=2) 2) avoid injecting failures likely to lock up UI (ignore_gfp_wait=1, ignore_gfp_highmem=1) Signed-off-by: Don Mullis <dwm@meer.net> Cc: Akinobu Mita <akinobu.mita@gmail.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Родитель
f1729c28a3
Коммит
6b1b60f41e
|
@ -52,6 +52,7 @@ struct fault_attr {
|
||||||
.times = ATOMIC_INIT(1), \
|
.times = ATOMIC_INIT(1), \
|
||||||
.require_end = ULONG_MAX, \
|
.require_end = ULONG_MAX, \
|
||||||
.stacktrace_depth = 32, \
|
.stacktrace_depth = 32, \
|
||||||
|
.verbose = 2, \
|
||||||
}
|
}
|
||||||
|
|
||||||
#define DECLARE_FAULT_ATTR(name) struct fault_attr name = FAULT_ATTR_INITIALIZER
|
#define DECLARE_FAULT_ATTR(name) struct fault_attr name = FAULT_ATTR_INITIALIZER
|
||||||
|
|
|
@ -910,6 +910,8 @@ static struct fail_page_alloc_attr {
|
||||||
|
|
||||||
} fail_page_alloc = {
|
} fail_page_alloc = {
|
||||||
.attr = FAULT_ATTR_INITIALIZER,
|
.attr = FAULT_ATTR_INITIALIZER,
|
||||||
|
.ignore_gfp_wait = 1,
|
||||||
|
.ignore_gfp_highmem = 1,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init setup_fail_page_alloc(char *str)
|
static int __init setup_fail_page_alloc(char *str)
|
||||||
|
|
|
@ -3102,6 +3102,7 @@ static struct failslab_attr {
|
||||||
|
|
||||||
} failslab = {
|
} failslab = {
|
||||||
.attr = FAULT_ATTR_INITIALIZER,
|
.attr = FAULT_ATTR_INITIALIZER,
|
||||||
|
.ignore_gfp_wait = 1,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init setup_failslab(char *str)
|
static int __init setup_failslab(char *str)
|
||||||
|
|
Загрузка…
Ссылка в новой задаче