After commit 4449f079722c ("PCI: Calculate maximum number of buses required for VFs"),the initial value of NumVFs register was left to non-zero after sriov_init() and no VFs was enabled in device driver. this changed the behaviour of kernel exported by lspci and sysfs etc. so this patch restore the NumVFs register to zero after the calculation of max_VF_buses was done and before return from virtfn_max_buses(). Tested on stable 4.1 and passed building on stable 4.3-rc1 Signed-off-by: Ethan Zhao <ethan.zhao@xxxxxxxxxx> Tested-by: Sriharsha Yadagudde <sriharsha.devdas@xxxxxxxxxx> --- v1..v2: -Suggestions from Bjorn Helgaas (move the restoration of NumVFs register to virtfn_max_buses()) --- drivers/pci/iov.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/pci/iov.c b/drivers/pci/iov.c index ee0ebff..92cee06 100644 --- a/drivers/pci/iov.c +++ b/drivers/pci/iov.c @@ -71,6 +71,8 @@ static inline u8 virtfn_max_buses(struct pci_dev *dev) max = busnr; } + /* restore NumVFs register to 0 */ + pci_iov_set_numvfs(dev, 0); return max; } -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html