2017-08-02 00:28:36

by Akinobu Mita

[permalink] [raw]
Subject: [PATCH] fault-inject: fix wrong should_fail() decision in task context

Commit 1203c8e6fb0a ("fault-inject: simplify access check for fail-nth")
unintentionally broke a conditional statement in should_fail(). Any faults
are not injected in the task context by the change when the systematic
fault injection is not used.

This change restores to the previous correct behaviour.

Fixes: 1203c8e6fb0a ("fault-inject: simplify access check for fail-nth")
Cc: Dmitry Vyukov <[email protected]>
Cc: Lu Fengqi <[email protected]>
Reported-by: Lu Fengqi <[email protected]>
Signed-off-by: Akinobu Mita <[email protected]>
---
lib/fault-inject.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/lib/fault-inject.c b/lib/fault-inject.c
index 7d315fd..cf7b129 100644
--- a/lib/fault-inject.c
+++ b/lib/fault-inject.c
@@ -110,10 +110,12 @@ bool should_fail(struct fault_attr *attr, ssize_t size)
if (in_task()) {
unsigned int fail_nth = READ_ONCE(current->fail_nth);

- if (fail_nth && !WRITE_ONCE(current->fail_nth, fail_nth - 1))
- goto fail;
+ if (fail_nth) {
+ if (!WRITE_ONCE(current->fail_nth, fail_nth - 1))
+ goto fail;

- return false;
+ return false;
+ }
}

/* No need to check any other properties if the probability is 0 */
--
2.7.4


2017-08-02 04:15:51

by Lu Fengqi

[permalink] [raw]
Subject: Re: [PATCH] fault-inject: fix wrong should_fail() decision in task context

On Wed, Aug 02, 2017 at 09:28:20AM +0900, Akinobu Mita wrote:
>Commit 1203c8e6fb0a ("fault-inject: simplify access check for fail-nth")
>unintentionally broke a conditional statement in should_fail(). Any faults
>are not injected in the task context by the change when the systematic
>fault injection is not used.
>
>This change restores to the previous correct behaviour.
>
>Fixes: 1203c8e6fb0a ("fault-inject: simplify access check for fail-nth")
>Cc: Dmitry Vyukov <[email protected]>
>Cc: Lu Fengqi <[email protected]>
>Reported-by: Lu Fengqi <[email protected]>
>Signed-off-by: Akinobu Mita <[email protected]>
>---
> lib/fault-inject.c | 8 +++++---
> 1 file changed, 5 insertions(+), 3 deletions(-)
>
>diff --git a/lib/fault-inject.c b/lib/fault-inject.c
>index 7d315fd..cf7b129 100644
>--- a/lib/fault-inject.c
>+++ b/lib/fault-inject.c
>@@ -110,10 +110,12 @@ bool should_fail(struct fault_attr *attr, ssize_t size)
> if (in_task()) {
> unsigned int fail_nth = READ_ONCE(current->fail_nth);
>
>- if (fail_nth && !WRITE_ONCE(current->fail_nth, fail_nth - 1))
>- goto fail;
>+ if (fail_nth) {
>+ if (!WRITE_ONCE(current->fail_nth, fail_nth - 1))
>+ goto fail;
>
>- return false;
>+ return false;
>+ }
> }
>
> /* No need to check any other properties if the probability is 0 */
>--
>2.7.4
>
>
>

With this fix, I can produce the IO ERROR by the fail_make_request.

--
Thanks,
Lu