From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.6 Received: from integral2.. (unknown [180.246.147.8]) by gnuweeb.org (Postfix) with ESMTPSA id C97657E7AA; Thu, 28 Apr 2022 20:40:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1651178414; bh=GMIrhIHR94G7iYaT4pAXW1sl+JI8lPQNGrFANoaKs/s=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=qouqex15FYNqfXsxP3KniY6qHm63+s/P8rDHpbo2P6Tyc7Qj74efyhSqH81Wh/oPD 0mpO/6UpCgL1pWDsao5+ITUY+kC3Fi3NrVZQbcuv9pJycpXPsubhQs8ffIPwuxSoyv jIltEe61YWLpErQYA9n0HZ5fOrrjDkoo8WbXgwDwfJn9HitMLy5hOs2ISmotCfcqrM tLiQHZSEJZRSvuWl/NEB44/GHSR6MlUqoUMGY/Olq0vue6p+cWufb02ZZINn2KEbq3 VNAGrU6Npz5oVk3945uGs/rUhEkVVimhrhKEpXMjEKpMmhSMALauWU/VSOjnJ4jqpL QwM1riiQtxWsw== From: Ammar Faizi To: Jens Axboe Cc: Ammar Faizi , Niklas Cassel , fio Mailing List , GNU/Weeb Mailing List Subject: [PATCH v3 1/3] backend: Fix indentation Date: Fri, 29 Apr 2022 03:39:52 +0700 Message-Id: <20220428203954.222165-2-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20220428203954.222165-1-ammarfaizi2@gnuweeb.org> References: <20220428203954.222165-1-ammarfaizi2@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: From: Ammar Faizi Signed-off-by: Ammar Faizi --- backend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend.c b/backend.c index 317e4f6c..071fd1d1 100644 --- a/backend.c +++ b/backend.c @@ -2021,7 +2021,7 @@ static void reap_threads(unsigned int *nr_running, uint64_t *t_rate, for_each_td(td, i) { int flags = 0; - if (!strcmp(td->o.ioengine, "cpuio")) + if (!strcmp(td->o.ioengine, "cpuio")) cputhreads++; else realthreads++; -- Ammar Faizi