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=-8.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=unavailable 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 00AC9CA9EC3 for ; Thu, 31 Oct 2019 09:08:25 +0000 (UTC) Received: from mm01.cs.columbia.edu (mm01.cs.columbia.edu [128.59.11.253]) by mail.kernel.org (Postfix) with ESMTP id 7FBB220862 for ; Thu, 31 Oct 2019 09:08:24 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 7FBB220862 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=huawei.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=kvmarm-bounces@lists.cs.columbia.edu Received: from localhost (localhost [127.0.0.1]) by mm01.cs.columbia.edu (Postfix) with ESMTP id EF5934AC8D; Thu, 31 Oct 2019 05:08:23 -0400 (EDT) X-Virus-Scanned: at lists.cs.columbia.edu Received: from mm01.cs.columbia.edu ([127.0.0.1]) by localhost (mm01.cs.columbia.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5WzeHKloKYYA; Thu, 31 Oct 2019 05:08:22 -0400 (EDT) Received: from mm01.cs.columbia.edu (localhost [127.0.0.1]) by mm01.cs.columbia.edu (Postfix) with ESMTP id C45CE4A598; Thu, 31 Oct 2019 05:08:22 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by mm01.cs.columbia.edu (Postfix) with ESMTP id 298CE4A591 for ; Thu, 31 Oct 2019 05:08:21 -0400 (EDT) X-Virus-Scanned: at lists.cs.columbia.edu Received: from mm01.cs.columbia.edu ([127.0.0.1]) by localhost (mm01.cs.columbia.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qShgfqZ+l0ql for ; Thu, 31 Oct 2019 05:08:19 -0400 (EDT) Received: from huawei.com (szxga06-in.huawei.com [45.249.212.32]) by mm01.cs.columbia.edu (Postfix) with ESMTPS id BF61C4A3BF for ; Thu, 31 Oct 2019 05:08:18 -0400 (EDT) Received: from DGGEMS407-HUB.china.huawei.com (unknown [172.30.72.60]) by Forcepoint Email with ESMTP id CA2A9A5AD9A00E4AB6C7; Thu, 31 Oct 2019 17:08:14 +0800 (CST) Received: from [127.0.0.1] (10.173.222.27) by DGGEMS407-HUB.china.huawei.com (10.3.19.207) with Microsoft SMTP Server id 14.3.439.0; Thu, 31 Oct 2019 17:08:06 +0800 Subject: Re: [PATCH v2 06/36] irqchip/gic-v3-its: Kill its->device_ids and use TYPER copy instead To: Marc Zyngier References: <20191027144234.8395-1-maz@kernel.org> <20191027144234.8395-7-maz@kernel.org> <603e60d8-b2a5-74a4-6d32-8277aa0e39c1@huawei.com> <86imo5xqoh.wl-maz@kernel.org> From: Zenghui Yu Message-ID: <7439499b-1626-51a5-2f67-e79e7fdbcdf9@huawei.com> Date: Thu, 31 Oct 2019 17:08:03 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.2.0 MIME-Version: 1.0 In-Reply-To: <86imo5xqoh.wl-maz@kernel.org> Content-Language: en-US X-Originating-IP: [10.173.222.27] X-CFilter-Loop: Reflected Cc: Lorenzo Pieralisi , Jason Cooper , linux-kernel@vger.kernel.org, Robert Richter , Jayachandran C , Thomas Gleixner , kvmarm@lists.cs.columbia.edu X-BeenThere: kvmarm@lists.cs.columbia.edu X-Mailman-Version: 2.1.14 Precedence: list List-Id: Where KVM/ARM decisions are made List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: kvmarm-bounces@lists.cs.columbia.edu Sender: kvmarm-bounces@lists.cs.columbia.edu On 2019/10/31 16:30, Marc Zyngier wrote: > Hi Zenghui, > > On Thu, 31 Oct 2019 06:33:23 +0000, > Zenghui Yu wrote: >> >> Hi Marc, >> >> On 2019/10/27 22:42, Marc Zyngier wrote: >>> Now that we have a copy of TYPER in the ITS structure, rely on this >>> to provide the same service as its->device_ids, which gets axed. >>> Errata workarounds are now updating the cached fields instead of >>> requiring a separate field in the ITS structure. >>> >>> Signed-off-by: Marc Zyngier >> >> Reviewed-by: Zenghui Yu > > Thanks for that. > >> >>> --- >>> drivers/irqchip/irq-gic-v3-its.c | 24 +++++++++++++----------- >>> include/linux/irqchip/arm-gic-v3.h | 2 +- >>> 2 files changed, 14 insertions(+), 12 deletions(-) >>> >>> diff --git a/drivers/irqchip/irq-gic-v3-its.c b/drivers/irqchip/irq-gic-v3-its.c >>> index 3b046181ddfc..6c91c7feadf3 100644 >>> --- a/drivers/irqchip/irq-gic-v3-its.c >>> +++ b/drivers/irqchip/irq-gic-v3-its.c >>> @@ -109,7 +109,6 @@ struct its_node { >>> struct list_head its_device_list; >>> u64 flags; >>> unsigned long list_nr; >>> - u32 device_ids; >>> int numa_node; >>> unsigned int msi_domain_flags; >>> u32 pre_its_base; /* for Socionext Synquacer */ >>> @@ -117,6 +116,7 @@ struct its_node { >>> }; >>> #define is_v4(its) (!!((its)->typer & >>> GITS_TYPER_VLPIS)) >>> +#define device_ids(its) (FIELD_GET(GITS_TYPER_DEVBITS, (its)->typer) + 1) >>> #define ITS_ITT_ALIGN SZ_256 >>> @@ -1938,9 +1938,9 @@ static bool its_parse_indirect_baser(struct >>> its_node *its, >>> if (new_order >= MAX_ORDER) { >>> new_order = MAX_ORDER - 1; >>> ids = ilog2(PAGE_ORDER_TO_SIZE(new_order) / (int)esz); >>> - pr_warn("ITS@%pa: %s Table too large, reduce ids %u->%u\n", >>> + pr_warn("ITS@%pa: %s Table too large, reduce ids %llu->%u\n", >>> &its->phys_base, its_base_type_string[type], >>> - its->device_ids, ids); >>> + device_ids(its), ids); >> >> But this pr_warn() looks a bit odd. The table type is chosen from >> its_base_type_string[], but ids is always Devbits (+1)? > > This is a bit of a shortcut, I agree. But the device table practically > is the only one where we can run out of space if the ITS doesn't > support two level tables. All the other tables are very small, being > limited by the number of CPUs (collections) or a small ID space > (vPEs). Make sense. Thanks for the clarification. Zenghui > > So while this is a bit ugly, I don't thing it is not too concerning. > > Thanks, > > M. > _______________________________________________ kvmarm mailing list kvmarm@lists.cs.columbia.edu https://lists.cs.columbia.edu/mailman/listinfo/kvmarm