diff options
author | Wei Yang <weiyang@linux.vnet.ibm.com> | 2015-10-22 03:22:19 +0200 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2016-02-10 02:04:58 +0100 |
commit | be283eeb7f6d9165b3c50f5222123ac25cf0d417 (patch) | |
tree | cbdeff6e6f39fed957564c9bfc9cb705efead599 /arch/powerpc/include/asm/pci-bridge.h | |
parent | powerpc/powernv: boundary the total VF BAR size instead of the individual one (diff) | |
download | linux-be283eeb7f6d9165b3c50f5222123ac25cf0d417.tar.xz linux-be283eeb7f6d9165b3c50f5222123ac25cf0d417.zip |
powerpc/powernv: allocate sparse PE# when using M64 BAR in Single PE mode
When M64 BAR is set to Single PE mode, the PE# assigned to VF could be
sparse.
This patch restructures the code to allocate sparse PE# for VFs when M64
BAR is set to Single PE mode. Also it rename the offset to pe_num_map to
reflect the content is the PE number.
Signed-off-by: Wei Yang <weiyang@linux.vnet.ibm.com>
Reviewed-by: Gavin Shan <gwshan@linux.vnet.ibm.com>
Acked-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/include/asm/pci-bridge.h')
-rw-r--r-- | arch/powerpc/include/asm/pci-bridge.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/pci-bridge.h b/arch/powerpc/include/asm/pci-bridge.h index 11d3543a57f2..b0b43f5fbc5f 100644 --- a/arch/powerpc/include/asm/pci-bridge.h +++ b/arch/powerpc/include/asm/pci-bridge.h @@ -215,7 +215,7 @@ struct pci_dn { #ifdef CONFIG_PCI_IOV u16 vfs_expanded; /* number of VFs IOV BAR expanded */ u16 num_vfs; /* number of VFs enabled*/ - int offset; /* PE# for the first VF PE */ + int *pe_num_map; /* PE# for the first VF PE or array */ bool m64_single_mode; /* Use M64 BAR in Single Mode */ #define IODA_INVALID_M64 (-1) int (*m64_map)[PCI_SRIOV_NUM_BARS]; |