diff options
author | Don Mullis <dwm@meer.net> | 2006-12-08 05:39:51 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 11:29:03 -0500 |
commit | 08b3df2d16cbebf7d72c09dcbc071696c14d07e3 (patch) | |
tree | 2cc0baeda87e24d9839845c0d34cd068453b1518 /include/linux/fault-inject.h | |
parent | 5d0ffa2b84e6f0fdc5bf96c0de6178f3d2779544 (diff) |
[PATCH] fault-injection: Use bool-true-false throughout
Use bool-true-false throughout.
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>
Diffstat (limited to 'include/linux/fault-inject.h')
-rw-r--r-- | include/linux/fault-inject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/fault-inject.h b/include/linux/fault-inject.h index 9bb584e89399..c77067916b7e 100644 --- a/include/linux/fault-inject.h +++ b/include/linux/fault-inject.h | |||
@@ -57,7 +57,7 @@ struct fault_attr { | |||
57 | #define DECLARE_FAULT_ATTR(name) struct fault_attr name = FAULT_ATTR_INITIALIZER | 57 | #define DECLARE_FAULT_ATTR(name) struct fault_attr name = FAULT_ATTR_INITIALIZER |
58 | int setup_fault_attr(struct fault_attr *attr, char *str); | 58 | int setup_fault_attr(struct fault_attr *attr, char *str); |
59 | void should_fail_srandom(unsigned long entropy); | 59 | void should_fail_srandom(unsigned long entropy); |
60 | int should_fail(struct fault_attr *attr, ssize_t size); | 60 | bool should_fail(struct fault_attr *attr, ssize_t size); |
61 | 61 | ||
62 | #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS | 62 | #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS |
63 | 63 | ||