Re: [PATCH V2 09/12] PCI: Add 'override_only' bitmap to struct pci_device_id
From: Alex Williamson <hidden>
Date: 2021-08-19 22:19:23
Also in:
kvm, linux-doc, linux-kbuild, linux-pci
On Thu, 19 Aug 2021 22:57:30 +0300 Max Gurtovoy [off-list ref] wrote:
On 8/19/2021 7:39 PM, Bjorn Helgaas wrote:quoted
On Thu, Aug 19, 2021 at 07:16:20PM +0300, Yishai Hadas wrote:quoted
On 8/19/2021 6:15 PM, Bjorn Helgaas wrote:quoted
On Wed, Aug 18, 2021 at 06:16:03PM +0300, Yishai Hadas wrote:quoted
From: Max Gurtovoy <mgurtovoy@nvidia.com> /** * struct pci_device_id - PCI device ID structure * @vendor: Vendor ID to match (or PCI_ANY_ID)@@ -34,12 +38,14 @@ typedef unsigned long kernel_ulong_t; * Best practice is to use driver_data as an index * into a static list of equivalent device types, * instead of using it as a pointer. + * @override_only: Bitmap for override_only PCI drivers."Match only when dev->driver_override is this driver"?Just to be aligned here, This field will stay __u32 and may hold at the most 1 bit value set to represent the actual subsystem/driver.The PCI core does not require "at most 1 bit is set." Actually, I don't think even the file2alias code requires that. If you set two bits, you can generate two aliases.quoted
This is required to later on set the correct prefix in the modules.alias file, and you just suggested to change the comment as of above, right ?Yes, __u32 is fine and I'm only suggesting a comment change here.great.quoted
quoted
quoted
As far as PCI core is concerned there's no need for this to be a bitmap. I think this would make more sense if split into two patches. The first would add override_only and change pci_match_device(). Then there's no confusion about whether this is specific to VFIO.Splitting may end-up the first patch with a dead-code on below, as found_id->override_only will be always 0. If you still believe that this is better we can do it.I think it's fine to add the functionality in one patch and use it in the next if it makes the commit clearer. I wouldn't want to add functionality that's not used at all in the series, but it's OK when they're both posted together.Ok. We can do the separation if all agree that the first commit is have a dead section. Alex, we would like to get few more reviewed-by signatures and we'll send the V3 series in a couple of days to make it to 5.15 merge window as we planned. Are you ok with the series after we got the green light for this patch ? do you think we need another pair of eyes to review the other patches ?
More eyes is always better, but I'm not finding much to complain about in this series. This patch was probably the most pivotal for agreement, the rest is largely mechanical at this point. In addition to Bjorn for the PCI parts of this, I'd also like to see an ack from Yamada-san or Michal for scripts/mod/, who are already cc'd I also notice include/linux/vfio_pci_core.h doesn't get added to MAINTAINERS in the series. Please fix in patch 12/ It seems plausible that this could be ready for v5.15. Thanks, Alex