Commit a5ee44c8 authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'for-linus-6.12a-rc4-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip

Pull xen fix from Juergen Gross:
 "A single fix for a build failure introduced this merge window"

* tag 'for-linus-6.12a-rc4-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip:
  xen: Remove dependency between pciback and privcmd
parents 10e93e19 0fd2a743
...@@ -261,7 +261,6 @@ config XEN_SCSI_BACKEND ...@@ -261,7 +261,6 @@ config XEN_SCSI_BACKEND
config XEN_PRIVCMD config XEN_PRIVCMD
tristate "Xen hypercall passthrough driver" tristate "Xen hypercall passthrough driver"
depends on XEN depends on XEN
imply XEN_PCIDEV_BACKEND
default m default m
help help
The hypercall passthrough driver allows privileged user programs to The hypercall passthrough driver allows privileged user programs to
......
...@@ -125,3 +125,27 @@ int xen_acpi_get_gsi_info(struct pci_dev *dev, ...@@ -125,3 +125,27 @@ int xen_acpi_get_gsi_info(struct pci_dev *dev,
return 0; return 0;
} }
EXPORT_SYMBOL_GPL(xen_acpi_get_gsi_info); EXPORT_SYMBOL_GPL(xen_acpi_get_gsi_info);
static get_gsi_from_sbdf_t get_gsi_from_sbdf;
static DEFINE_RWLOCK(get_gsi_from_sbdf_lock);
void xen_acpi_register_get_gsi_func(get_gsi_from_sbdf_t func)
{
write_lock(&get_gsi_from_sbdf_lock);
get_gsi_from_sbdf = func;
write_unlock(&get_gsi_from_sbdf_lock);
}
EXPORT_SYMBOL_GPL(xen_acpi_register_get_gsi_func);
int xen_acpi_get_gsi_from_sbdf(u32 sbdf)
{
int ret = -EOPNOTSUPP;
read_lock(&get_gsi_from_sbdf_lock);
if (get_gsi_from_sbdf)
ret = get_gsi_from_sbdf(sbdf);
read_unlock(&get_gsi_from_sbdf_lock);
return ret;
}
EXPORT_SYMBOL_GPL(xen_acpi_get_gsi_from_sbdf);
...@@ -850,15 +850,13 @@ static long privcmd_ioctl_mmap_resource(struct file *file, ...@@ -850,15 +850,13 @@ static long privcmd_ioctl_mmap_resource(struct file *file,
static long privcmd_ioctl_pcidev_get_gsi(struct file *file, void __user *udata) static long privcmd_ioctl_pcidev_get_gsi(struct file *file, void __user *udata)
{ {
#if defined(CONFIG_XEN_ACPI) #if defined(CONFIG_XEN_ACPI)
int rc = -EINVAL; int rc;
struct privcmd_pcidev_get_gsi kdata; struct privcmd_pcidev_get_gsi kdata;
if (copy_from_user(&kdata, udata, sizeof(kdata))) if (copy_from_user(&kdata, udata, sizeof(kdata)))
return -EFAULT; return -EFAULT;
if (IS_REACHABLE(CONFIG_XEN_PCIDEV_BACKEND)) rc = xen_acpi_get_gsi_from_sbdf(kdata.sbdf);
rc = pcistub_get_gsi_from_sbdf(kdata.sbdf);
if (rc < 0) if (rc < 0)
return rc; return rc;
......
...@@ -227,7 +227,7 @@ static struct pci_dev *pcistub_device_get_pci_dev(struct xen_pcibk_device *pdev, ...@@ -227,7 +227,7 @@ static struct pci_dev *pcistub_device_get_pci_dev(struct xen_pcibk_device *pdev,
} }
#ifdef CONFIG_XEN_ACPI #ifdef CONFIG_XEN_ACPI
int pcistub_get_gsi_from_sbdf(unsigned int sbdf) static int pcistub_get_gsi_from_sbdf(unsigned int sbdf)
{ {
struct pcistub_device *psdev; struct pcistub_device *psdev;
int domain = (sbdf >> 16) & 0xffff; int domain = (sbdf >> 16) & 0xffff;
...@@ -242,7 +242,6 @@ int pcistub_get_gsi_from_sbdf(unsigned int sbdf) ...@@ -242,7 +242,6 @@ int pcistub_get_gsi_from_sbdf(unsigned int sbdf)
return psdev->gsi; return psdev->gsi;
} }
EXPORT_SYMBOL_GPL(pcistub_get_gsi_from_sbdf);
#endif #endif
struct pci_dev *pcistub_get_pci_dev_by_slot(struct xen_pcibk_device *pdev, struct pci_dev *pcistub_get_pci_dev_by_slot(struct xen_pcibk_device *pdev,
...@@ -1757,11 +1756,19 @@ static int __init xen_pcibk_init(void) ...@@ -1757,11 +1756,19 @@ static int __init xen_pcibk_init(void)
bus_register_notifier(&pci_bus_type, &pci_stub_nb); bus_register_notifier(&pci_bus_type, &pci_stub_nb);
#endif #endif
#ifdef CONFIG_XEN_ACPI
xen_acpi_register_get_gsi_func(pcistub_get_gsi_from_sbdf);
#endif
return err; return err;
} }
static void __exit xen_pcibk_cleanup(void) static void __exit xen_pcibk_cleanup(void)
{ {
#ifdef CONFIG_XEN_ACPI
xen_acpi_register_get_gsi_func(NULL);
#endif
#ifdef CONFIG_PCI_IOV #ifdef CONFIG_PCI_IOV
bus_unregister_notifier(&pci_bus_type, &pci_stub_nb); bus_unregister_notifier(&pci_bus_type, &pci_stub_nb);
#endif #endif
......
...@@ -35,6 +35,8 @@ ...@@ -35,6 +35,8 @@
#include <linux/types.h> #include <linux/types.h>
typedef int (*get_gsi_from_sbdf_t)(u32 sbdf);
#ifdef CONFIG_XEN_DOM0 #ifdef CONFIG_XEN_DOM0
#include <asm/xen/hypervisor.h> #include <asm/xen/hypervisor.h>
#include <xen/xen.h> #include <xen/xen.h>
...@@ -72,6 +74,8 @@ int xen_acpi_get_gsi_info(struct pci_dev *dev, ...@@ -72,6 +74,8 @@ int xen_acpi_get_gsi_info(struct pci_dev *dev,
int *gsi_out, int *gsi_out,
int *trigger_out, int *trigger_out,
int *polarity_out); int *polarity_out);
void xen_acpi_register_get_gsi_func(get_gsi_from_sbdf_t func);
int xen_acpi_get_gsi_from_sbdf(u32 sbdf);
#else #else
static inline void xen_acpi_sleep_register(void) static inline void xen_acpi_sleep_register(void)
{ {
...@@ -89,12 +93,12 @@ static inline int xen_acpi_get_gsi_info(struct pci_dev *dev, ...@@ -89,12 +93,12 @@ static inline int xen_acpi_get_gsi_info(struct pci_dev *dev,
{ {
return -1; return -1;
} }
#endif
#ifdef CONFIG_XEN_PCI_STUB static inline void xen_acpi_register_get_gsi_func(get_gsi_from_sbdf_t func)
int pcistub_get_gsi_from_sbdf(unsigned int sbdf); {
#else }
static inline int pcistub_get_gsi_from_sbdf(unsigned int sbdf)
static inline int xen_acpi_get_gsi_from_sbdf(u32 sbdf)
{ {
return -1; return -1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment