2006-12-08 18:39:43 +08:00
|
|
|
#ifndef _LINUX_FAULT_INJECT_H
|
|
|
|
#define _LINUX_FAULT_INJECT_H
|
|
|
|
|
|
|
|
#ifdef CONFIG_FAULT_INJECTION
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/debugfs.h>
|
2011-07-27 07:09:06 +08:00
|
|
|
#include <linux/atomic.h>
|
2006-12-08 18:39:43 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* For explanation of the elements of this struct, see
|
|
|
|
* Documentation/fault-injection/fault-injection.txt
|
|
|
|
*/
|
|
|
|
struct fault_attr {
|
|
|
|
unsigned long probability;
|
|
|
|
unsigned long interval;
|
|
|
|
atomic_t times;
|
|
|
|
atomic_t space;
|
|
|
|
unsigned long verbose;
|
2006-12-08 18:39:47 +08:00
|
|
|
u32 task_filter;
|
2006-12-08 18:39:48 +08:00
|
|
|
unsigned long stacktrace_depth;
|
|
|
|
unsigned long require_start;
|
|
|
|
unsigned long require_end;
|
|
|
|
unsigned long reject_start;
|
|
|
|
unsigned long reject_end;
|
2006-12-08 18:39:43 +08:00
|
|
|
|
|
|
|
unsigned long count;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define FAULT_ATTR_INITIALIZER { \
|
|
|
|
.interval = 1, \
|
|
|
|
.times = ATOMIC_INIT(1), \
|
2006-12-08 18:39:48 +08:00
|
|
|
.require_end = ULONG_MAX, \
|
|
|
|
.stacktrace_depth = 32, \
|
2006-12-08 18:39:53 +08:00
|
|
|
.verbose = 2, \
|
2006-12-08 18:39:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#define DECLARE_FAULT_ATTR(name) struct fault_attr name = FAULT_ATTR_INITIALIZER
|
|
|
|
int setup_fault_attr(struct fault_attr *attr, char *str);
|
2006-12-08 18:39:51 +08:00
|
|
|
bool should_fail(struct fault_attr *attr, ssize_t size);
|
2006-12-08 18:39:43 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_FAULT_INJECTION_DEBUG_FS
|
|
|
|
|
2011-08-04 07:21:01 +08:00
|
|
|
struct dentry *fault_create_debugfs_attr(const char *name,
|
|
|
|
struct dentry *parent, struct fault_attr *attr);
|
2006-12-08 18:39:43 +08:00
|
|
|
|
|
|
|
#else /* CONFIG_FAULT_INJECTION_DEBUG_FS */
|
|
|
|
|
2011-08-04 07:21:01 +08:00
|
|
|
static inline struct dentry *fault_create_debugfs_attr(const char *name,
|
|
|
|
struct dentry *parent, struct fault_attr *attr)
|
2006-12-08 18:39:43 +08:00
|
|
|
{
|
2011-08-04 07:21:01 +08:00
|
|
|
return ERR_PTR(-ENODEV);
|
2006-12-08 18:39:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */
|
|
|
|
|
|
|
|
#endif /* CONFIG_FAULT_INJECTION */
|
|
|
|
|
2008-12-23 18:37:01 +08:00
|
|
|
#ifdef CONFIG_FAILSLAB
|
2010-02-26 14:36:12 +08:00
|
|
|
extern bool should_failslab(size_t size, gfp_t gfpflags, unsigned long flags);
|
2008-12-23 18:37:01 +08:00
|
|
|
#else
|
2010-02-26 14:36:12 +08:00
|
|
|
static inline bool should_failslab(size_t size, gfp_t gfpflags,
|
|
|
|
unsigned long flags)
|
2008-12-23 18:37:01 +08:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_FAILSLAB */
|
|
|
|
|
2006-12-08 18:39:43 +08:00
|
|
|
#endif /* _LINUX_FAULT_INJECT_H */
|