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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 76A1BC433FE for ; Fri, 3 Dec 2021 00:50:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1377944AbhLCAx2 (ORCPT ); Thu, 2 Dec 2021 19:53:28 -0500 Received: from mga12.intel.com ([192.55.52.136]:43165 "EHLO mga12.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1377798AbhLCAx0 (ORCPT ); Thu, 2 Dec 2021 19:53:26 -0500 X-IronPort-AV: E=McAfee;i="6200,9189,10186"; a="216901209" X-IronPort-AV: E=Sophos;i="5.87,283,1631602800"; d="scan'208";a="216901209" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Dec 2021 16:50:03 -0800 X-IronPort-AV: E=Sophos;i="5.87,283,1631602800"; d="scan'208";a="513457950" Received: from otc-nc-03.jf.intel.com (HELO otc-nc-03) ([10.54.39.123]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Dec 2021 16:50:02 -0800 Date: Thu, 2 Dec 2021 16:45:45 -0800 From: "Raj, Ashok" To: Thomas Gleixner Cc: "Dey, Megha" , LKML , Bjorn Helgaas , Marc Zygnier , Alex Williamson , Kevin Tian , Jason Gunthorpe , Michael Ellerman , Andrew Cooper , Juergen Gross , linux-pci@vger.kernel.org, xen-devel@lists.xenproject.org, Ashok Raj Subject: Re: [patch 09/10] PCI/MSI: Provide pci_msix_expand_vectors[_at]() Message-ID: <20211203004545.GF364748@otc-nc-03> References: <20211126233124.618283684@linutronix.de> <20211127000919.004572849@linutronix.de> <7ad200fa-dda3-4932-cd23-ad6e79288ea4@intel.com> <871r2v71mg.ffs@tglx> <20211202192139.GE364748@otc-nc-03> <87r1au68rb.ffs@tglx> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <87r1au68rb.ffs@tglx> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Thomas On Thu, Dec 02, 2021 at 09:40:08PM +0100, Thomas Gleixner wrote: > Ashok, > > On Thu, Dec 02 2021 at 11:21, Ashok Raj wrote: > > On Thu, Dec 02, 2021 at 11:16:39AM +0100, Thomas Gleixner wrote: > >> On Wed, Dec 01 2021 at 17:08, Megha Dey wrote: > >> You're missing the real world use case. The above is fiction. > > > > I don't think there is a valid use case for freeing specific vectors. Its > > true some are special, IDXD has vector#0 like that. But I expect drivers to > > acquire these special vectors once and never free them until driver > > tear down time. > > > > But there is a need to free on demand, for a subdevice constructed for idxd > > pass-through, when the guest is torn down, host would need to free them. > > Only growing on demand seems to only catch one part of the dynamic part. > > > > IDXD also allocates interrupt only when the WQ is enabled, and frees when its > > disabled. > > You're talking about IMS not MSI-X here, right? IMS cannot be allocated > via the PCI/MSI interfaces as we established long ago. > > And if you are talking about the 8 MSI-X interrupts for IDXD then I > really do not see the point of ever releasing it. Not worried about MSI-x for IDXD :), I assumed the purpose of this exercise was about 2 things. - Fix the VFIO mask/unmask weirdness ending up disable, reenable with more interrupts. - We are only fixing the case by not calling the disable_msi, but just growing on demand. - Use this as a case to build IMS. but if we treat MSIx and IMS differently, IMS would be bit different in how the dynamic parts work. Although there is no real need for MSIx being dynamic except to avoid host vector exhausion, do you think we could still allocate specific entries. Since unmask is per-vector, is there benefit to doing just that vs allocating current+N? > > >> If a driver would release 1 and 2 then it should explicitely reallocate > >> 1 and 2 and not let the core decide to magically allocate something. > >> > >> If the driver wants three more after freeing 1, 2 then the core could > >> just allocate 5, 6, 7, and would still fulfil the callers request to > >> allocate three more, right? > > > > Since the core is already managing what's allocated and free, requiring > > drivers to manage each allocated entries seem hard, while the core can > > easily manage it. For IDXD cases, we don't really care which ones of the > > IMS is being allocated and freed. It just wants one of the available IMS > > entries. The assumption is since the driver would have acquired any special > > ones upfront with the alloc_irqs(). > > For MSI-X the free vector use case does not exist today and even if it > would exist the driver has to know about the index. > > If the index -> function accociation is hard wired, it needs to know it > obviously. > > If it's not hardwired then it still needs to know the resulting index, > because it has to program that index into a device function register so > that the device knows which entry to use. > > IMS is not any different. You need to know the index in order to > associate it to the queue, no? And you need the index in order to figure > out the Linux irq number. > > But again, that's not a problem of this very API because this API is > about PCI/MSI and not about IMS. fair enough..the thought was even though MSIx doesn't require that, but the implementations can be consistent if we aren't breaking MSIx. but as you said they don't have to be the same and can differ in how they are implemented. > > >> And even if it just allocates one, then the caller still has to know the > >> index upfront. Why? Because it needs to know it in order to get the > >> Linux interrupt number via pci_irq_vector(). > > > > If we were to allocate one, the new API can simply return the index > > directly to the caller, and they call pci_irq_vector() to get the IRQ > > number. > > That can work, but then we need both variants: > > pci_msix_alloc_vector_at() and pci_msix_alloc_vector_any() > > Why? > > Because pci_msix_alloc_vector_any() cannot solve the VFIO on demand > allocation problem and it cannot be used to replace the sparse > allocations which are done via pci_enable_msix_exact() today. > > If there is an MSI-X use case to allocate any vector then we can > implement that. If there is none, then we don't need it, right? agreed. > > >> So if the driver would free the vector for a particular functionality, > >> or not allocate it in the first place, then it exactly knows what it > >> freed and what it needs to allocate when it needs that functionality > >> (again). > > > > It doesn't *have* to be that all vectors are special. Some of them are > > special that they acquired all during driver load time. These are allocated > > once and never freed. The rest are for say completion interrupts or such and > > such that go with work queues. These can dynamically be allocated and > > freed. > > > > The driver doesn't really care which index it wants or what the next index > > should be. But it has to remember the allocated ones so it can pass down > > for the free. Maybe the one we did a while back > > > > https://lore.kernel.org/lkml/1561162778-12669-1-git-send-email-megha.dey@linux.intel.com/ > > > > This has a group handle, and kept adding things to it. > > Was it really necessary to bring those memories back? :-) > > If we want groups, then surely not with these kind of hacks. I still > need to see the usecase for the groups. The discussion back then just > provided handwaving about internal request which never materialized. true, we didn't hear back from the groups that asked for them. > > But talking about groups. That's very similar to the other discussion > vs. storing the IMS entries for these sliced devices, queues or > whatever. That's at least a use case. Correct. > > >> What you are trying to create is a solution in search of a problem. You > >> cannot declare via a random allocation API how devices work. You neither > >> can fix the VFIO issue in a sensible way. > >> > >> VFIO starts with vector #0 allocated. The guest then unmasks vector #50. > >> > >> With your magic interface VFIO has to allocate 49 vectors and then free > >> 48 of them again or just keep 48 around for nothing which defeats the > >> purpose of on demand allocation completely. > > > > This use case is broken already, the VFIO case sort of assumes things are > > growing in sequence. Today it doesn't have a hint on which entry is being > > unmasked I suppose. So VFIO simply releases everything, adds N more than > > currently allocated. > > VFIO exactly knows which entry is unmasked simply because the write into > the MSI-X table in the device config space is trapped so it knows > exactly which entry is unmasked, no? Guess how VFIO knows about $N more? bah.. i missed that little fact. When VFIO knows exactly which entry is being unmasked, is it enough to just allocate exact one, or do we need to all all N? I didn't see why we need to grown by N additional vectors instead of only allocating 1 for the entry being unmasked? > > > Maybe for MSIx we don't have a need to shrink based on current usage. IMS > > requires both grow and shrink. But it might be odd to have 2 domains behave > > quite differently. > > We are not implementing the full MSI[X] zoo for IMS either. So the > interfaces are different in the first place. The ones that actually differ between the MSIx and IMS are: - Discovery on where to find that unlike the PCIe standard mechanism. (Although in initial implementation we have forced a common way to manage this, but I think people already hinted this isn't going to work for different vendors or even between gen1/gen2 devices. - Managing the location of the add/data write, mask/unmask etc. - Might have other attributes such as PASID etc for the IDXD case exposed to guest/user space. Are there other differences between them? > > Making them artificially uniform is a horrible idea. Totally! > > They are two different things, really. The only thing they have in common > is that at the end of the day the device sends a message over the bus > and they happen to share the underlying MSI code infrastructure.