1. 26 Jun, 2013 3 commits
  2. 25 Jun, 2013 1 commit
  3. 18 Jun, 2013 1 commit
  4. 14 Jun, 2013 8 commits
  5. 10 Jun, 2013 1 commit
  6. 07 Jun, 2013 4 commits
  7. 06 Jun, 2013 7 commits
  8. 05 Jun, 2013 4 commits
  9. 04 Jun, 2013 2 commits
  10. 03 Jun, 2013 6 commits
  11. 01 Jun, 2013 2 commits
    • Bjorn Helgaas's avatar
      Merge branch 'pci/misc' into next · 0345d3f8
      Bjorn Helgaas authored
      * pci/misc:
        PCI: Replace strict_strtoul() with kstrtoul()
        PCI: Fix comment typo for PCI_EXP_LNKCAP_CLKPM
        PCI: Replace printks with appropriate pr_*()
        PCI: Fix kerneldoc for pci_disable_link_state()
        x86/PCI: Increase info->res_num before checking pci_use_crs
        PCI: Fix INTC comment typo for pci_swizzle_interrupt_pin()
        PCI: Convert ioapic.c to module_pci_driver
      0345d3f8
    • Jingoo Han's avatar
      PCI: Replace strict_strtoul() with kstrtoul() · 9a994e8e
      Jingoo Han authored
      The usage of strict_strtoul() is not preferred, because
      strict_strtoul() is obsolete.  Thus, kstrtoul() should be
      used.
      
      [bhelgaas: "#define strict_strtoul  kstrtoul", so no functional change]
      Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
      Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
      9a994e8e
  12. 31 May, 2013 1 commit
    • Xudong Hao's avatar
      PCI: Finish SR-IOV VF setup before adding the device · fbf33f51
      Xudong Hao authored
      Commit 4f535093 "PCI: Put pci_dev in device tree as early as possible"
      moves device registering from pci_bus_add_devices() to pci_device_add().
      That causes problems for virtual functions because device_add(&virtfn->dev)
      is called before setting the virtfn->is_virtfn flag, which then causes Xen
      to report PCI virtual functions as PCI physical functions.
      
      Fix it by setting virtfn->is_virtfn before calling pci_device_add().
      
      [Jiang Liu]: Move the setting of virtfn->is_virtfn ahead further for better
      readability and modify changelog.
      Signed-off-by: default avatarXudong Hao <xudong.hao@intel.com>
      Signed-off-by: default avatarJiang Liu <jiang.liu@huawei.com>
      Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
      Cc: stable@vger.kernel.org	# v3.9+
      fbf33f51