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=-5.3 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, USER_AGENT_SANE_1 autolearn=no 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 2FFFBC6377D for ; Wed, 21 Jul 2021 20:33:04 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 0EEE760FF4 for ; Wed, 21 Jul 2021 20:33:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229981AbhGUTw0 (ORCPT ); Wed, 21 Jul 2021 15:52:26 -0400 Received: from verein.lst.de ([213.95.11.211]:60006 "EHLO verein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230173AbhGUTw0 (ORCPT ); Wed, 21 Jul 2021 15:52:26 -0400 Received: by verein.lst.de (Postfix, from userid 2407) id 691A967373; Wed, 21 Jul 2021 22:32:59 +0200 (CEST) Date: Wed, 21 Jul 2021 22:32:59 +0200 From: Christoph Hellwig To: Thomas Gleixner Cc: Christoph Hellwig , John Garry , Ming Lei , Jens Axboe , linux-block@vger.kernel.org, linux-nvme@lists.infradead.org, Greg Kroah-Hartman , Bjorn Helgaas , linux-pci@vger.kernel.org, Sagi Grimberg , Daniel Wagner , Wen Xiong , Hannes Reinecke , Keith Busch Subject: Re: [PATCH V4 1/3] driver core: mark device as irq affinity managed if any irq is managed Message-ID: <20210721203259.GA18960@lst.de> References: <20210715120844.636968-1-ming.lei@redhat.com> <20210715120844.636968-2-ming.lei@redhat.com> <5e534fdc-909e-39b2-521d-31f643a10558@huawei.com> <20210719094414.GC431@lst.de> <87lf60cevz.ffs@nanos.tec.linutronix.de> <20210721072445.GA11257@lst.de> <871r7rqva6.ffs@nanos.tec.linutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <871r7rqva6.ffs@nanos.tec.linutronix.de> User-Agent: Mutt/1.5.17 (2007-11-01) Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org On Wed, Jul 21, 2021 at 10:14:25PM +0200, Thomas Gleixner wrote: > https://lore.kernel.org/r/87o8bxcuxv.ffs@nanos.tec.linutronix.de > > TLDR: virtio allocates ONE irq on msix_enable() and then when the guest > actually unmasks another entry (e.g. request_irq()), it tears down the > allocated one and set's up two. On the third one this repeats .... > > There are only two options: > > 1) allocate everything upfront, which is undesired > 2) append entries, which might need locking, but I'm still trying to > avoid that > > There is another problem vs. vector exhaustion which can't be fixed that > way, but that's a different story. FTI, NVMe is similar. We need one IRQ to setup the admin queue, which is used to query/set how many I/O queues are supported. Just two steps though and not unbound.