mirror of
https://github.com/torvalds/linux.git
synced 2024-12-01 00:21:32 +00:00
drbd: cosmetic: fix accidental division instead of modulo when pretty printing
For large resync rates, seq_printf_with_thousands_grouping() accidentally only produced Y,000,00Y, instead of the real numbers. Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com> Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
This commit is contained in:
parent
46530e859c
commit
fc251d5c24
@ -52,7 +52,7 @@ void seq_printf_with_thousands_grouping(struct seq_file *seq, long v)
|
|||||||
if (unlikely(v >= 1000000)) {
|
if (unlikely(v >= 1000000)) {
|
||||||
/* cool: > GiByte/s */
|
/* cool: > GiByte/s */
|
||||||
seq_printf(seq, "%ld,", v / 1000000);
|
seq_printf(seq, "%ld,", v / 1000000);
|
||||||
v /= 1000000;
|
v %= 1000000;
|
||||||
seq_printf(seq, "%03ld,%03ld", v/1000, v % 1000);
|
seq_printf(seq, "%03ld,%03ld", v/1000, v % 1000);
|
||||||
} else if (likely(v >= 1000))
|
} else if (likely(v >= 1000))
|
||||||
seq_printf(seq, "%ld,%03ld", v/1000, v % 1000);
|
seq_printf(seq, "%ld,%03ld", v/1000, v % 1000);
|
||||||
|
Loading…
Reference in New Issue
Block a user