LinuxPPC-Dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Pali Rohár" <pali@kernel.org>
To: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org
Subject: Re: [PATCH] powerpc/pci: Fix PHB numbering when using opal-phbid
Date: Tue, 2 Aug 2022 13:31:24 +0200	[thread overview]
Message-ID: <20220802113124.ztbctjjz4sbo2mxo@pali> (raw)
In-Reply-To: <20220802105723.1055178-1-mpe@ellerman.id.au>

On Tuesday 02 August 2022 20:57:23 Michael Ellerman wrote:
> The recent change to the PHB numbering logic has a logic error in the
> handling of "ibm,opal-phbid".
> 
> When an "ibm,opal-phbid" property is present, &prop is written to and
> ret is set to zero.
> 
> The following call to of_alias_get_id() is skipped because ret == 0.
> 
> But then the if (ret >= 0) is true, and the body of that if statement
> sets prop = ret which throws away the value that was just read from
> "ibm,opal-phbid".

Now I see, I wrote logic incorrectly.

> Fix the logic by only doing the ret >= 0 check in the of_alias_get_id()
> case.
> 
> Fixes: 0fe1e96fef0a ("powerpc/pci: Prefer PCI domain assignment via DT 'linux,pci-domain' and alias")
> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>

Your change should fix this issue, so:

Reviewed-by: Pali Rohár <pali@kernel.org>

> ---
>  arch/powerpc/kernel/pci-common.c | 10 ++++++----
>  1 file changed, 6 insertions(+), 4 deletions(-)
> 
> diff --git a/arch/powerpc/kernel/pci-common.c b/arch/powerpc/kernel/pci-common.c
> index 8ce36aba42da..bdd3332200c5 100644
> --- a/arch/powerpc/kernel/pci-common.c
> +++ b/arch/powerpc/kernel/pci-common.c
> @@ -91,11 +91,13 @@ static int get_phb_number(struct device_node *dn)
>  	}
>  	if (ret)
>  		ret = of_property_read_u64(dn, "ibm,opal-phbid", &prop);
> -	if (ret)
> +
> +	if (ret) {
>  		ret = of_alias_get_id(dn, "pci");
> -	if (ret >= 0) {
> -		prop = ret;
> -		ret = 0;
> +		if (ret >= 0) {
> +			prop = ret;
> +			ret = 0;
> +		}
>  	}
>  	if (ret) {
>  		u32 prop_32;
> -- 
> 2.35.3
> 

  reply	other threads:[~2022-08-02 11:32 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-02 10:57 [PATCH] powerpc/pci: Fix PHB numbering when using opal-phbid Michael Ellerman
2022-08-02 11:31 ` Pali Rohár [this message]
2022-08-06  6:45 ` Michael Ellerman

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=20220802113124.ztbctjjz4sbo2mxo@pali \
    --to=pali@kernel.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=mpe@ellerman.id.au \
    /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