Division by 100 caused results like 3.9k < 3.10k < 4.0k; fixed by increasing the denominator to 103, which is a better approximation of 1024 / 10 == 102.4 Signed-off-by: Juerd Waalboer <juerd@xxxxxx> --- drivers/md/bcache/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/md/bcache/util.c b/drivers/md/bcache/util.c index db3ae4c..56e8a62 100644 --- a/drivers/md/bcache/util.c +++ b/drivers/md/bcache/util.c @@ -88,7 +88,7 @@ ssize_t bch_hprint(char *buf, int64_t v) return sprintf(buf, "%llu", v); if (v < 100 && v > -100) - snprintf(dec, sizeof(dec), ".%i", t / 100); + snprintf(dec, sizeof(dec), ".%i", t / 103); return sprintf(buf, "%lli%s%c", v, dec, units[u]); } -- 2.1.3 -- To unsubscribe from this list: send the line "unsubscribe linux-bcache" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html