Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit df87ecbf authored by Per Forlin's avatar Per Forlin Committed by Chris Ball
Browse files

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: default avatarPer Forlin <per.forlin@linaro.org>
Acked-by: default avatarAkinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: default avatarChris Ball <cjb@laptop.org>
parent 97e4ba6a
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -130,6 +130,7 @@ bool should_fail(struct fault_attr *attr, ssize_t size)

	return true;
}
EXPORT_SYMBOL_GPL(should_fail);

#ifdef CONFIG_FAULT_INJECTION_DEBUG_FS

@@ -243,5 +244,6 @@ struct dentry *fault_create_debugfs_attr(const char *name,

	return ERR_PTR(-ENOMEM);
}
EXPORT_SYMBOL_GPL(fault_create_debugfs_attr);

#endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */