From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.3 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,NICE_REPLY_A, SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B9BB4C07E95 for ; Tue, 20 Jul 2021 12:34:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id A60BE610F7 for ; Tue, 20 Jul 2021 12:34:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238004AbhGTLx2 (ORCPT ); Tue, 20 Jul 2021 07:53:28 -0400 Received: from szxga03-in.huawei.com ([45.249.212.189]:12281 "EHLO szxga03-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236193AbhGTLxR (ORCPT ); Tue, 20 Jul 2021 07:53:17 -0400 Received: from dggemv704-chm.china.huawei.com (unknown [172.30.72.57]) by szxga03-in.huawei.com (SkyGuard) with ESMTP id 4GTdLg6mXSz7tB7; Tue, 20 Jul 2021 20:29:15 +0800 (CST) Received: from dggema762-chm.china.huawei.com (10.1.198.204) by dggemv704-chm.china.huawei.com (10.3.19.47) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256) id 15.1.2176.2; Tue, 20 Jul 2021 20:33:51 +0800 Received: from [10.174.176.221] (10.174.176.221) by dggema762-chm.china.huawei.com (10.1.198.204) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2176.2; Tue, 20 Jul 2021 20:33:50 +0800 Subject: Re: [PATCH 0/3] optimize the queue idle judgment To: , CC: , , References: <20210714094529.758808-1-yukuai3@huawei.com> From: "yukuai (C)" Message-ID: Date: Tue, 20 Jul 2021 20:33:50 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 MIME-Version: 1.0 In-Reply-To: <20210714094529.758808-1-yukuai3@huawei.com> Content-Type: text/plain; charset="gbk"; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: [10.174.176.221] X-ClientProxiedBy: dggems702-chm.china.huawei.com (10.3.19.179) To dggema762-chm.china.huawei.com (10.1.198.204) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org On 2021/07/14 17:45, Yu Kuai wrote: > bfqq might plug I/O dispatch when it remains temporarily empty while > being served, this will benefit for both sequence io bandwidth and relative > sync io control. > > This path set tries to extend the two special cases that idle is not > needed, and can get better bandwidth. > > 1) only one group is activated. > 2) when more than one groups are activated, all queues are issuring > requests with same size. > > Yu Kuai (3): > block, bfq: do not idle if only one cgroup is activated > block, bfq: add support to record request size information > block, bfq: consider request size in bfq_asymmetric_scenario() > > block/bfq-iosched.c | 50 +++++++++++++++++++++++++++++++++++++-------- > block/bfq-iosched.h | 16 +++++++++++++++ > 2 files changed, 57 insertions(+), 9 deletions(-) > ping ...