fuse: implement i_op->atomic_open()
[platform/adaptation/renesas_rcar/renesas_kernel.git] / lib / fault-inject.c
index 6805453..f7210ad 100644 (file)
@@ -101,6 +101,10 @@ static inline bool fail_stacktrace(struct fault_attr *attr)
 
 bool should_fail(struct fault_attr *attr, ssize_t size)
 {
+       /* No need to check any other properties if the probability is 0 */
+       if (attr->probability == 0)
+               return false;
+
        if (attr->task_filter && !fail_task(attr, current))
                return false;