Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1249286 > unrolled thread

[PATCH] fault-inject: fix inverted interval/probability values in printk

Started byFlorian Westphal <fw@strlen.de>
First post2015-10-17 11:00 +0200
Last post2015-10-17 11:00 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] fault-inject: fix inverted interval/probability values in printk Florian Westphal <fw@strlen.de> - 2015-10-17 11:00 +0200

#1249286 — [PATCH] fault-inject: fix inverted interval/probability values in printk

FromFlorian Westphal <fw@strlen.de>
Date2015-10-17 11:00 +0200
Subject[PATCH] fault-inject: fix inverted interval/probability values in printk
Message-ID<qkvvk-AU-7@gated-at.bofh.it>
interval displays the probability and vice versa.

Fixes: 6adc4a22f20bb ("fault-inject: add ratelimit option")
Signed-off-by: Florian Westphal <fw@strlen.de>
---
 lib/fault-inject.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/fault-inject.c b/lib/fault-inject.c
index f1cdeb0..6a823a5 100644
--- a/lib/fault-inject.c
+++ b/lib/fault-inject.c
@@ -44,7 +44,7 @@ static void fail_dump(struct fault_attr *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)
-- 
2.0.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web