dect
/
linux-2.6
Archived
13
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
linux-2.6/lib/notifier-error-inject.h

25 lines
614 B
C

#include <linux/atomic.h>
#include <linux/debugfs.h>
#include <linux/notifier.h>
struct notifier_err_inject_action {
unsigned long val;
int error;
const char *name;
};
#define NOTIFIER_ERR_INJECT_ACTION(action) \
.name = #action, .val = (action),
struct notifier_err_inject {
struct notifier_block nb;
struct notifier_err_inject_action actions[];
/* The last slot must be terminated with zero sentinel */
};
extern struct dentry *notifier_err_inject_dir;
extern struct dentry *notifier_err_inject_init(const char *name,
struct dentry *parent, struct notifier_err_inject *err_inject,
int priority);