Merge branches 'stable/drivers-3.2', 'stable/drivers.bugfixes-3.2' and 'stable/pci...
authorLinus Torvalds <torvalds@linux-foundation.org>
Tue, 25 Oct 2011 07:19:36 +0000 (09:19 +0200)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 25 Oct 2011 07:19:36 +0000 (09:19 +0200)
* 'stable/drivers-3.2' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen:
  xenbus: don't rely on xen_initial_domain to detect local xenstore
  xenbus: Fix loopback event channel assuming domain 0
  xen/pv-on-hvm:kexec: Fix implicit declaration of function 'xen_hvm_domain'
  xen/pv-on-hvm kexec: add xs_reset_watches to shutdown watches from old kernel
  xen/pv-on-hvm kexec: update xs_wire.h:xsd_sockmsg_type from xen-unstable
  xen/pv-on-hvm kexec+kdump: reset PV devices in kexec or crash kernel
  xen/pv-on-hvm kexec: rebind virqs to existing eventchannel ports
  xen/pv-on-hvm kexec: prevent crash in xenwatch_thread() when stale watch events arrive

* 'stable/drivers.bugfixes-3.2' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen:
  xen/pciback: Check if the device is found instead of blindly assuming so.
  xen/pciback: Do not dereference psdev during printk when it is NULL.
  xen: remove XEN_PLATFORM_PCI config option
  xen: XEN_PVHVM depends on PCI
  xen/pciback: double lock typo
  xen/pciback: use mutex rather than spinlock in vpci backend
  xen/pciback: Use mutexes when working with Xenbus state transitions.
  xen/pciback: miscellaneous adjustments
  xen/pciback: use mutex rather than spinlock in passthrough backend
  xen/pciback: use resource_size()

* 'stable/pci.fixes-3.2' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen:
  xen/pci: support multi-segment systems
  xen-swiotlb: When doing coherent alloc/dealloc check before swizzling the MFNs.
  xen/pci: make bus notifier handler return sane values
  xen-swiotlb: fix printk and panic args
  xen-swiotlb: Fix wrong panic.
  xen-swiotlb: Retry up three times to allocate Xen-SWIOTLB
  xen-pcifront: Update warning comment to use 'e820_host' option.

1  2  3  4 
arch/x86/pci/xen.c
arch/x86/xen/Kconfig
drivers/pci/xen-pcifront.c
drivers/xen/events.c
drivers/xen/xenbus/xenbus_probe.c
drivers/xen/xenbus/xenbus_probe_frontend.c

index 11a9301d52d4ea870a62aaaee5fd1a7a1a3c920b,f567965c06201cf0315605cde43c6eaa9bb228a5,1017c7bee388ddd5016895fa17618254f10467bc,265fa8814ccdcabbc41f78dcad0d641343d89a47..492ade8c978e3c632003b62e4f31ae10d36b062b
@@@@@ -152,45 -65,6 -152,43 -65,6 +152,45 @@@@@ static int acpi_register_gsi_xen(struc
    struct xen_pci_frontend_ops *xen_pci_frontend;
    EXPORT_SYMBOL_GPL(xen_pci_frontend);
    
  -             if (irq < 0)
 + +static int xen_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
 + +{
 + +    int irq, ret, i;
 + +    struct msi_desc *msidesc;
 + +    int *v;
 + +
 + +    v = kzalloc(sizeof(int) * max(1, nvec), GFP_KERNEL);
 + +    if (!v)
 + +            return -ENOMEM;
 + +
 + +    if (type == PCI_CAP_ID_MSIX)
 + +            ret = xen_pci_frontend_enable_msix(dev, v, nvec);
 + +    else
 + +            ret = xen_pci_frontend_enable_msi(dev, v);
 + +    if (ret)
 + +            goto error;
 + +    i = 0;
 + +    list_for_each_entry(msidesc, &dev->msi_list, list) {
 + +            irq = xen_bind_pirq_msi_to_irq(dev, msidesc, v[i], 0,
 + +                                           (type == PCI_CAP_ID_MSIX) ?
 + +                                           "pcifront-msi-x" :
 + +                                           "pcifront-msi",
 + +                                            DOMID_SELF);
 +++            if (irq < 0) {
 +++                    ret = irq;
 + +                    goto free;
 +++            }
 + +            i++;
 + +    }
 + +    kfree(v);
 + +    return 0;
 + +
 + +error:
 + +    dev_err(&dev->dev, "Xen PCI frontend has not registered MSI/MSI-X support!\n");
 + +free:
 + +    kfree(v);
 + +    return ret;
 + +}
 + +
    #define XEN_PIRQ_MSI_DATA  (MSI_DATA_TRIGGER_EDGE | \
                MSI_DATA_LEVEL_ASSERT | (3 << 8) | MSI_DATA_VECTOR(0))
    
@@@@@ -248,7 -120,68 -244,7 -120,68 +248,7 @@@@@ static int xen_hvm_setup_msi_irqs(struc
    error:
        dev_err(&dev->dev,
                "Xen PCI frontend has not registered MSI/MSI-X support!\n");
 ---    return -ENODEV;
 - -}
 - -
 - -/*
 - - * For MSI interrupts we have to use drivers/xen/event.s functions to
 - - * allocate an irq_desc and setup the right */
 - -
 - -
 - -static int xen_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
 - -{
 - -    int irq, ret, i;
 - -    struct msi_desc *msidesc;
 - -    int *v;
 - -
 - -    v = kzalloc(sizeof(int) * max(1, nvec), GFP_KERNEL);
 - -    if (!v)
 - -            return -ENOMEM;
 - -
 - -    if (type == PCI_CAP_ID_MSIX)
 - -            ret = xen_pci_frontend_enable_msix(dev, v, nvec);
 - -    else
 - -            ret = xen_pci_frontend_enable_msi(dev, v);
 - -    if (ret)
 - -            goto error;
 - -    i = 0;
 - -    list_for_each_entry(msidesc, &dev->msi_list, list) {
 - -            irq = xen_bind_pirq_msi_to_irq(dev, msidesc, v[i], 0,
 - -                                           (type == PCI_CAP_ID_MSIX) ?
 - -                                           "pcifront-msi-x" :
 - -                                           "pcifront-msi",
 - -                                            DOMID_SELF);
 - -            if (irq < 0)
 - -                    goto free;
 - -            i++;
 - -    }
 - -    kfree(v);
 - -    return 0;
 - -
 - -error:
 - -    dev_err(&dev->dev, "Xen PCI frontend has not registered MSI/MSI-X support!\n");
 - -free:
 - -    kfree(v);
 - -    return ret;
 - -}
 - -
 - -static void xen_teardown_msi_irqs(struct pci_dev *dev)
 - -{
 - -    struct msi_desc *msidesc;
 - -
 - -    msidesc = list_entry(dev->msi_list.next, struct msi_desc, list);
 - -    if (msidesc->msi_attrib.is_msix)
 - -            xen_pci_frontend_disable_msix(dev);
 - -    else
 - -            xen_pci_frontend_disable_msi(dev);
 - -
 - -    /* Free the IRQ's and the msidesc using the generic code. */
 - -    default_teardown_msi_irqs(dev);
 - -}
 - -
 - -static void xen_teardown_msi_irq(unsigned int irq)
 - -{
 - -    xen_destroy_irq(irq);
 +++    return irq;
    }
    
    #ifdef CONFIG_XEN_DOM0
Simple merge
Simple merge
index 212a5c871bf486872dcda8f60fcc15b9b584902d,31493e906bbd71b2fc351d1090fcc41120ea8b58,da70f5c32eb9875d9d24eade0861d5004d918d14,30df85d8fca860d69a75079951feb9bb725944f1..7a55b292bf3903ecf3db8b1aa742ce10266769ed
@@@@@ -877,9 -902,9 -876,9 -881,9 +898,9 @@@@@ static int find_virq(unsigned int virq
    int bind_virq_to_irq(unsigned int virq, unsigned int cpu)
    {
        struct evtchn_bind_virq bind_virq;
- --    int evtchn, irq;
+ ++    int evtchn, irq, ret;
    
 ---    spin_lock(&irq_mapping_update_lock);
 +++    mutex_lock(&irq_mapping_update_lock);
    
        irq = per_cpu(virq_to_irq, cpu)[virq];
    
Simple merge