linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [BUGFIX][PATCH] pci: set pci sriov page size before reading SRIOV BAR
@ 2012-02-02 17:41 Vaidyanathan Srinivasan
  2012-02-10 20:02 ` Jesse Barnes
  0 siblings, 1 reply; 2+ messages in thread
From: Vaidyanathan Srinivasan @ 2012-02-02 17:41 UTC (permalink / raw)
  To: Ram Pai, Jesse Barnes, Yinghai Lu; +Cc: linux-pci, linux-kernel

Hi Jesse,

The following patch fixes a regression introduced when an SRIOV card
is used as a PF in a 64k base page size configuration.

Reference: https://lkml.org/lkml/2012/2/1/165

Please queue this bugfix patch for the current release cycle.

Thanks,
Vaidy
---

    pci: set pci sriov page size before reading SRIOV BAR
    
    For an SRIOV device, PCI_SRIOV_SYS_PGSIZE should be set before
    the PCI_SRIOV_BAR are queried.  The sys pagesize defaults to 4k,
    so this change is required on powerpc box with 64k base page size.
    
    This is a regression caused due to moving SRIOV init to sriov_enable().
    
    | commit afd24ece5c76af87f6fc477f2747b83a764f161c
    | Author: Ram Pai <linuxram@us.ibm.com>
    
    | PCI: delay configuration of SRIOV capability
    | The SRIOV capability, namely page size and total_vfs of a device are
    | configured during enumeration phase of the device.  This can potentially
    | interfere with the PCI operations of the platform, if the IOV capability
    | of the device is not enabled.
    
    Signed-off-by: Vaidyanathan Srinivasan <svaidy@linux.vnet.ibm.com>
    Acked-by: Ram Pai <linuxram@us.ibm.com>

diff --git a/drivers/pci/iov.c b/drivers/pci/iov.c
index 0321fa3..0dab5ec 100644
--- a/drivers/pci/iov.c
+++ b/drivers/pci/iov.c
@@ -347,8 +347,6 @@ static int sriov_enable(struct pci_dev *dev, int nr_virtfn)
 			return rc;
 	}
 
-	pci_write_config_dword(dev, iov->pos + PCI_SRIOV_SYS_PGSIZE, iov->pgsz);
-
 	iov->ctrl |= PCI_SRIOV_CTRL_VFE | PCI_SRIOV_CTRL_MSE;
 	pci_cfg_access_lock(dev);
 	pci_write_config_word(dev, iov->pos + PCI_SRIOV_CTRL, iov->ctrl);
@@ -466,6 +464,7 @@ found:
 		return -EIO;
 
 	pgsz &= ~(pgsz - 1);
+	pci_write_config_dword(dev, pos + PCI_SRIOV_SYS_PGSIZE, pgsz);
 
 	nres = 0;
 	for (i = 0; i < PCI_SRIOV_NUM_BARS; i++) {


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [BUGFIX][PATCH] pci: set pci sriov page size before reading SRIOV BAR
  2012-02-02 17:41 [BUGFIX][PATCH] pci: set pci sriov page size before reading SRIOV BAR Vaidyanathan Srinivasan
@ 2012-02-10 20:02 ` Jesse Barnes
  0 siblings, 0 replies; 2+ messages in thread
From: Jesse Barnes @ 2012-02-10 20:02 UTC (permalink / raw)
  To: svaidy; +Cc: Ram Pai, Yinghai Lu, linux-pci, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 523 bytes --]

On Thu, 2 Feb 2012 23:11:20 +0530
Vaidyanathan Srinivasan <svaidy@linux.vnet.ibm.com> wrote:

> Hi Jesse,
> 
> The following patch fixes a regression introduced when an SRIOV card
> is used as a PF in a 64k base page size configuration.
> 
> Reference: https://lkml.org/lkml/2012/2/1/165
> 
> Please queue this bugfix patch for the current release cycle.

Applied, thanks.  Ram please shout if this isn't ok and you'd prefer a
different fix.

Thanks,
-- 
Jesse Barnes, Intel Open Source Technology Center

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-02-10 20:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-02-02 17:41 [BUGFIX][PATCH] pci: set pci sriov page size before reading SRIOV BAR Vaidyanathan Srinivasan
2012-02-10 20:02 ` Jesse Barnes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).