From: Avi Kivity Date: Mon, 28 Dec 2020 15:43:52 +0000 (+0200) Subject: Correct wrong sense of more reporting (size-changing is when pretrucate==false) X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=17d11bdf357bf54306711f9a5b4f89400c182bbf;p=users%2Fhch%2Ffsqual.git Correct wrong sense of more reporting (size-changing is when pretrucate==false) --- diff --git a/fsqual.cc b/fsqual.cc index fcc9566..4aeb3fc 100644 --- a/fsqual.cc +++ b/fsqual.cc @@ -81,7 +81,7 @@ void test_concurrent_append(io_context_t ioctx, int fd, unsigned iodepth, size_t } auto rate = float(ctxsw) / nr; auto verdict = rate < 0.1 ? "GOOD" : "BAD"; - auto mode = std::string(pretruncate ? "size-changing" : "size-unchanging"); + auto mode = std::string(pretruncate ? "size-unchanging" : "size-changing"); if (prezero) { mode += ", prezero"; }