From: Wei Yang <weiyang@linux.vnet.ibm.com>
To: Bjorn Helgaas <bhelgaas@google.com>
Cc: Wei Yang <weiyang@linux.vnet.ibm.com>, linux-pci@vger.kernel.org
Subject: Re: [PATCH] PCI: Don't update VF's BAR
Date: Wed, 15 Jul 2015 09:38:15 +0800 [thread overview]
Message-ID: <20150715013815.GA6525@richard> (raw)
In-Reply-To: <20150714221511.GM24416@google.com>
On Tue, Jul 14, 2015 at 05:15:11PM -0500, Bjorn Helgaas wrote:
>On Tue, Jun 30, 2015 at 03:37:14PM +0800, Wei Yang wrote:
>> VF BARs are RO zero, so updating VF BARs will not take any effect.
>> See the SR-IOV spec r1.1, sec 3.4.1.11.
>>
>> Signed-off-by: Wei Yang <weiyang@linux.vnet.ibm.com>
>> ---
>> drivers/pci/setup-res.c | 7 +++++++
>> 1 file changed, 7 insertions(+)
>>
>> diff --git a/drivers/pci/setup-res.c b/drivers/pci/setup-res.c
>> index 232f925..334b394 100644
>> --- a/drivers/pci/setup-res.c
>> +++ b/drivers/pci/setup-res.c
>> @@ -37,6 +37,13 @@ void pci_update_resource(struct pci_dev *dev, int resno)
>> struct resource *res = dev->resource + resno;
>>
>> /*
>> + * Per SRIOV SPEC 3.4.1.11, VF BARs are RO zero.
>> + * If this is a VF, just return.
>> + */
>> + if (dev->is_virtfn)
>> + return;
>
>Does this fix a problem? Are you seeing the "BAR %d: error updating"
>message?
>
Yes, I see the "error updating" message when doing vfio pass through.
>I wouldn't think we would even call pci_update_resource() for VFs, except
>for pci_restore_bars(). Maybe we should check there?
>
This happens after commit <6eb7018705de> ("vfio-pci: Move idle devices to
D3hot power state"). When do vfio, it will set the power state, and which in
turn update the BAR.
Hmm... yes, maybe the pci_restore_bars() is a good place to check.
>If the PCI core is assigning space directly to VF BARs and trying to update
>them, I'd like to know about that rather than silently ignoring it.
>
Ok, so I would add a warning at this place.
>> +
>> + /*
>> * Ignore resources for unimplemented BARs and unused resource slots
>> * for 64 bit BARs.
>> */
>> --
>> 1.7.9.5
>>
--
Richard Yang
Help you, Help me
next prev parent reply other threads:[~2015-07-15 1:39 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-30 7:37 [PATCH] PCI: Don't update VF's BAR Wei Yang
2015-07-14 22:15 ` Bjorn Helgaas
2015-07-15 1:38 ` Wei Yang [this message]
2015-07-29 8:52 ` [PATCH v2] " Wei Yang
2015-08-27 17:27 ` Bjorn Helgaas
2015-08-28 3:51 ` Richard Yang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150715013815.GA6525@richard \
--to=weiyang@linux.vnet.ibm.com \
--cc=bhelgaas@google.com \
--cc=linux-pci@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).