]> www.infradead.org Git - users/hch/misc.git/commitdiff
Merge tag 'for-linus-6.15-rc1-tag' of git://git.kernel.org/pub/scm/linux/kernel/git...
authorLinus Torvalds <torvalds@linux-foundation.org>
Tue, 25 Mar 2025 21:33:32 +0000 (14:33 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 25 Mar 2025 21:33:32 +0000 (14:33 -0700)
Pull xen updates from Juergen Gross:

 - cleanup: remove an used function

 - add support for a XenServer specific virtual PCI device

 - fix the handling of a sparse Xen hypervisor symbol table

 - avoid warnings when building the kernel with gcc 15

 - fix use of devices behind a VMD bridge when running as a Xen PV dom0

* tag 'for-linus-6.15-rc1-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip:
  PCI/MSI: Convert pci_msi_ignore_mask to per MSI domain flag
  PCI: vmd: Disable MSI remapping bypass under Xen
  xen/pci: Do not register devices with segments >= 0x10000
  xen/pciback: Remove unused pcistub_get_pci_dev
  xenfs/xensyms: respect hypervisor's "next" indication
  xen/mcelog: Add __nonstring annotations for unterminated strings
  xen: Add support for XenServer 6.1 platform device

1  2 
drivers/pci/msi/msi.c
include/linux/msi.h
kernel/irq/msi.c

Simple merge
index b81e10da62a2194528eb78714a6d1fe3deea640a,59a421fc42bf07203bda68d3c4474e2555f078b0..6d7d1947f928d404709c4c12b5c56ae6b27b4a33
@@@ -558,16 -555,10 +557,18 @@@ enum 
        MSI_FLAG_PCI_MSIX_ALLOC_DYN     = (1 << 20),
        /* PCI MSIs cannot be steered separately to CPU cores */
        MSI_FLAG_NO_AFFINITY            = (1 << 21),
+       /* Inhibit usage of entry masking */
+       MSI_FLAG_NO_MASK                = (1 << 22),
  };
  
 +/*
 + * Flags for msi_parent_ops::chip_flags
 + */
 +enum {
 +      MSI_CHIP_FLAG_SET_EOI           = (1 << 0),
 +      MSI_CHIP_FLAG_SET_ACK           = (1 << 1),
 +};
 +
  /**
   * struct msi_parent_ops - MSI parent domain callbacks and configuration info
   *
Simple merge