From: Bjorn Helgaas <bhelgaas@google.com>
To: Guo Chao <yan@linux.vnet.ibm.com>
Cc: linux-pci@vger.kernel.org
Subject: Re: [PATCH] PCI: don't UNSET resource even reassign fails
Date: Wed, 18 Jun 2014 13:19:16 -0600 [thread overview]
Message-ID: <20140618191916.GE30559@google.com> (raw)
In-Reply-To: <1402918182-13082-1-git-send-email-yan@linux.vnet.ibm.com>
On Mon, Jun 16, 2014 at 07:29:42PM +0800, Guo Chao wrote:
> Commit bd064f0a sets IORESOURCE_UNSET flag if resource can not be
> assgined. Part of these changes breaks resource assignment.
>
> If resource is too big, PCI core assgins basic part first and
> extends (reassigns) it to include optional part (notably SR-IOV resources).
> In this case, failure is permitted and IORESOURCE_UNSET should be not set.
> Otherwise, these resources are never updated to hardware even they are
> already propery assigned and we will see errors like this:
>
> pci 0003:00:00.0: can't enable device: BAR 15 [mem size 0x0c000000 64bit pref] not assigned
> pci 0003:00:00.0: Error enabling bridge (-22), continuing
>
> Signed-off-by: Guo Chao <yan@linux.vnet.ibm.com>
> ---
> drivers/pci/setup-res.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/pci/setup-res.c b/drivers/pci/setup-res.c
> index caed1ce..1e1076a 100644
> --- a/drivers/pci/setup-res.c
> +++ b/drivers/pci/setup-res.c
> @@ -334,12 +334,14 @@ int pci_reassign_resource(struct pci_dev *dev, int resno, resource_size_t addsiz
> new_size = resource_size(res) + addsize;
> ret = _pci_assign_resource(dev, resno, new_size, min_align);
> if (!ret) {
> - res->flags &= ~IORESOURCE_UNSET;
> res->flags &= ~IORESOURCE_STARTALIGN;
> dev_info(&dev->dev, "BAR %d: reassigned %pR\n", resno, res);
> if (resno < PCI_BRIDGE_RESOURCES)
> pci_update_resource(dev, resno);
> }
> +
> + res->flags &= ~IORESOURCE_UNSET;
This relies on the assumption that the resource was already assigned when
we entered pci_reassign_resource(). That *might* always be true, but it
takes a lot of code analysis to prove it. I think I'd be OK with restoring
the original value of the IORESOURCE_UNSET bit.
> return ret;
> }
>
> --
> 1.8.3.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-pci" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
prev parent reply other threads:[~2014-06-18 19:19 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-16 11:29 [PATCH] PCI: don't UNSET resource even reassign fails Guo Chao
2014-06-16 20:44 ` Bjorn Helgaas
2014-06-17 5:44 ` Guo Chao
2014-06-17 18:10 ` Bjorn Helgaas
2014-06-18 7:22 ` Guo Chao
2014-06-18 19:19 ` Bjorn Helgaas [this message]
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=20140618191916.GE30559@google.com \
--to=bhelgaas@google.com \
--cc=linux-pci@vger.kernel.org \
--cc=yan@linux.vnet.ibm.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.