From nobody Tue Feb 10 03:38:10 2026 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1503026013859964.6316082273664; Thu, 17 Aug 2017 20:13:33 -0700 (PDT) Received: from localhost ([::1]:46139 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1diXj1-0002PK-M7 for importer@patchew.org; Thu, 17 Aug 2017 23:13:31 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57703) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1diXgw-0000tM-SR for qemu-devel@nongnu.org; Thu, 17 Aug 2017 23:11:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1diXgv-0000E9-Vw for qemu-devel@nongnu.org; Thu, 17 Aug 2017 23:11:22 -0400 Received: from smtp1.ntua.gr ([2001:648:2000:de::183]:44692) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1diXgt-00007y-AU; Thu, 17 Aug 2017 23:11:19 -0400 Received: from mail.ntua.gr ([IPv6:2a02:587:803d:3400:e131:5157:9f01:cb37]) (authenticated bits=0) by smtp1.ntua.gr (8.15.2/8.15.2) with ESMTPSA id v7I3AcLO028496 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Fri, 18 Aug 2017 06:10:38 +0300 (EEST) (envelope-from el13635@mail.ntua.gr) X-Authentication-Warning: smtp1.ntua.gr: Host [IPv6:2a02:587:803d:3400:e131:5157:9f01:cb37] claimed to be mail.ntua.gr From: Manos Pitsidianakis To: qemu-devel Date: Fri, 18 Aug 2017 06:10:16 +0300 Message-Id: <20170818031019.3723-4-el13635@mail.ntua.gr> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170818031019.3723-1-el13635@mail.ntua.gr> References: <20170818031019.3723-1-el13635@mail.ntua.gr> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2001:648:2000:de::183 Subject: [Qemu-devel] [PATCH v5 3/6] block: tidy ThrottleGroupMember initializations X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Kevin Wolf , Alberto Garcia , Stefan Hajnoczi , qemu-block Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Move the CoMutex and CoQueue inits inside throttle_group_register_tgm() which is called whenever a ThrottleGroupMember is initialized. There's no need for them to be separate. Reviewed-by: Alberto Garcia Reviewed-by: Stefan Hajnoczi Signed-off-by: Manos Pitsidianakis --- block/block-backend.c | 3 --- block/throttle-groups.c | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/block/block-backend.c b/block/block-backend.c index 9ba800e733..c51fb8c8aa 100644 --- a/block/block-backend.c +++ b/block/block-backend.c @@ -252,9 +252,6 @@ BlockBackend *blk_new(uint64_t perm, uint64_t shared_pe= rm) blk->shared_perm =3D shared_perm; blk_set_enable_write_cache(blk, true); =20 - qemu_co_mutex_init(&blk->public.throttle_group_member.throttled_reqs_l= ock); - qemu_co_queue_init(&blk->public.throttle_group_member.throttled_reqs[0= ]); - qemu_co_queue_init(&blk->public.throttle_group_member.throttled_reqs[1= ]); block_acct_init(&blk->stats); =20 notifier_list_init(&blk->remove_bs_notifiers); diff --git a/block/throttle-groups.c b/block/throttle-groups.c index 3b07b25f39..7749cf043f 100644 --- a/block/throttle-groups.c +++ b/block/throttle-groups.c @@ -508,6 +508,9 @@ void throttle_group_register_tgm(ThrottleGroupMember *t= gm, read_timer_cb, write_timer_cb, tgm); + qemu_co_mutex_init(&tgm->throttled_reqs_lock); + qemu_co_queue_init(&tgm->throttled_reqs[0]); + qemu_co_queue_init(&tgm->throttled_reqs[1]); =20 qemu_mutex_unlock(&tg->lock); } --=20 2.11.0