1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_FAULT_INJECT_H
3 #define _LINUX_FAULT_INJECT_H
5 #ifdef CONFIG_FAULT_INJECTION
7 #include <linux/types.h>
8 #include <linux/debugfs.h>
9 #include <linux/ratelimit.h>
10 #include <linux/atomic.h>
13 * For explanation of the elements of this struct, see
14 * Documentation/fault-injection/fault-injection.rst
17 unsigned long probability;
18 unsigned long interval;
21 unsigned long verbose;
23 unsigned long stacktrace_depth;
24 unsigned long require_start;
25 unsigned long require_end;
26 unsigned long reject_start;
27 unsigned long reject_end;
30 struct ratelimit_state ratelimit_state;
34 #define FAULT_ATTR_INITIALIZER { \
36 .times = ATOMIC_INIT(1), \
37 .require_end = ULONG_MAX, \
38 .stacktrace_depth = 32, \
39 .ratelimit_state = RATELIMIT_STATE_INIT_DISABLED, \
44 #define DECLARE_FAULT_ATTR(name) struct fault_attr name = FAULT_ATTR_INITIALIZER
45 int setup_fault_attr(struct fault_attr *attr, char *str);
46 bool should_fail(struct fault_attr *attr, ssize_t size);
48 #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS
50 struct dentry *fault_create_debugfs_attr(const char *name,
51 struct dentry *parent, struct fault_attr *attr);
53 #else /* CONFIG_FAULT_INJECTION_DEBUG_FS */
55 static inline struct dentry *fault_create_debugfs_attr(const char *name,
56 struct dentry *parent, struct fault_attr *attr)
58 return ERR_PTR(-ENODEV);
61 #endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */
63 #endif /* CONFIG_FAULT_INJECTION */
67 int should_failslab(struct kmem_cache *s, gfp_t gfpflags);
68 #ifdef CONFIG_FAILSLAB
69 extern bool __should_failslab(struct kmem_cache *s, gfp_t gfpflags);
71 static inline bool __should_failslab(struct kmem_cache *s, gfp_t gfpflags)
75 #endif /* CONFIG_FAILSLAB */
77 #endif /* _LINUX_FAULT_INJECT_H */