The patch titled
Subject: fault-inject: fix inverted interval/probability values in printk
has been added to the -mm tree. Its filename is
fault-inject-fix-inverted-interval-probability-values-in-printk.patch
This patch should soon appear at
http://ozlabs.org/~akpm/mmots/broken-out/fault-inject-fix-inverted-interval-probability-values-in-printk.patch
and later at
http://ozlabs.org/~akpm/mmotm/broken-out/fault-inject-fix-inverted-interval-probability-values-in-printk.patch
Before you just go and hit "reply", please:
a) Consider who else should be cc'ed
b) Prefer to cc a suitable mailing list as well
c) Ideally: find the original patch on the mailing list and do a
reply-to-all to that, adding suitable additional cc's
*** Remember to use Documentation/SubmitChecklist when testing your code ***
The -mm tree is included into linux-next and is updated
there every 3-4 working days
------------------------------------------------------
From: Florian Westphal <[email protected]>
Subject: fault-inject: fix inverted interval/probability values in printk
interval displays the probability and vice versa.
Fixes: 6adc4a22f20bb ("fault-inject: add ratelimit option")
Acked-by: Akinobu Mita <[email protected]>
Cc: <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
---
lib/fault-inject.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -puN
lib/fault-inject.c~fault-inject-fix-inverted-interval-probability-values-in-printk
lib/fault-inject.c
---
a/lib/fault-inject.c~fault-inject-fix-inverted-interval-probability-values-in-printk
+++ a/lib/fault-inject.c
@@ -44,7 +44,7 @@ static void fail_dump(struct fault_attr
printk(KERN_NOTICE "FAULT_INJECTION: forcing a failure.\n"
"name %pd, interval %lu, probability %lu, "
"space %d, times %d\n", attr->dname,
- attr->probability, attr->interval,
+ attr->interval, attr->probability,
atomic_read(&attr->space),
atomic_read(&attr->times));
if (attr->verbose > 1)
_
Patches currently in -mm which might be from [email protected] are
fault-inject-fix-inverted-interval-probability-values-in-printk.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html