diff options
author | Per Forlin <per.forlin@linaro.org> | 2011-08-19 08:52:36 -0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2011-10-26 15:43:34 -0400 |
commit | df87ecbf19109bab04a92df047a9949838206abc (patch) | |
tree | 7b34e496e2dd4450c014603ddac429cc0663196b | |
parent | 97e4ba6a5ea903a221d87bcabdaf01efb0a609a5 (diff) |
fault-inject: export fault injection functions
Export symbols should_fail() and fault_create_debugfs_attr() in order
to let modules utilize the fault injection framework.
Signed-off-by: Per Forlin <per.forlin@linaro.org>
Acked-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
-rw-r--r-- | lib/fault-inject.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/fault-inject.c b/lib/fault-inject.c index f193b7796449..328d43357ed2 100644 --- a/lib/fault-inject.c +++ b/lib/fault-inject.c | |||
@@ -130,6 +130,7 @@ bool should_fail(struct fault_attr *attr, ssize_t size) | |||
130 | 130 | ||
131 | return true; | 131 | return true; |
132 | } | 132 | } |
133 | EXPORT_SYMBOL_GPL(should_fail); | ||
133 | 134 | ||
134 | #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS | 135 | #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS |
135 | 136 | ||
@@ -243,5 +244,6 @@ fail: | |||
243 | 244 | ||
244 | return ERR_PTR(-ENOMEM); | 245 | return ERR_PTR(-ENOMEM); |
245 | } | 246 | } |
247 | EXPORT_SYMBOL_GPL(fault_create_debugfs_attr); | ||
246 | 248 | ||
247 | #endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */ | 249 | #endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */ |