From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
To: Alexander Gordeev <agordeev@redhat.com>
Cc: linux-kernel@vger.kernel.org, Brian King <brking@linux.vnet.ibm.com>
Subject: Re: [PATCH] powerpc/pseries: Force 32 bit MSIs when tearing down
Date: Tue, 28 May 2013 07:52:11 +1000 [thread overview]
Message-ID: <1369691531.3557.36.camel@pasglop> (raw)
In-Reply-To: <20130527162027.GA18182@dhcp-26-207.brq.redhat.com>
On Mon, 2013-05-27 at 18:20 +0200, Alexander Gordeev wrote:
> This fix just adds a missed call to a new PAPR function
> which should have been done with commit e61133d ("powerpc/
> pseries: Force 32 bit MSIs for devices that require it")
Arguably, PAPR should allow to disable MSIs using either interface,
we shouldn't have to know whether the MSI was a forced-32-bit one to be
able to disable it.
Brian, can you check with Colleen ?
Cheers,
Ben.
> Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
> ---
> arch/powerpc/platforms/pseries/msi.c | 8 +++++++-
> 1 files changed, 7 insertions(+), 1 deletions(-)
>
> diff --git a/arch/powerpc/platforms/pseries/msi.c b/arch/powerpc/platforms/pseries/msi.c
> index 40c7db3..2b80a68 100644
> --- a/arch/powerpc/platforms/pseries/msi.c
> +++ b/arch/powerpc/platforms/pseries/msi.c
> @@ -90,6 +90,7 @@ static int rtas_change_msi(struct pci_dn *pdn, u32 func, u32 num_irqs)
> static void rtas_disable_msi(struct pci_dev *pdev)
> {
> struct pci_dn *pdn;
> + int rc;
>
> pdn = get_pdn(pdev);
> if (!pdn)
> @@ -98,7 +99,12 @@ static void rtas_disable_msi(struct pci_dev *pdev)
> /*
> * disabling MSI with the explicit interface also disables MSI-X
> */
> - if (rtas_change_msi(pdn, RTAS_CHANGE_MSI_FN, 0) != 0) {
> + if (pdn->force_32bit_msi)
> + rc = rtas_change_msi(pdn, RTAS_CHANGE_32MSI_FN, 0);
> + else
> + rc = rtas_change_msi(pdn, RTAS_CHANGE_MSI_FN, 0);
> +
> + if ((rc != 0) && !pdn->force_32bit_msi) {
> /*
> * may have failed because explicit interface is not
> * present
> --
> 1.7.7.6
>
>
next prev parent reply other threads:[~2013-05-27 21:52 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-27 16:20 [PATCH] powerpc/pseries: Force 32 bit MSIs when tearing down Alexander Gordeev
2013-05-27 21:52 ` Benjamin Herrenschmidt [this message]
2013-05-28 7:20 ` Alexander Gordeev
2013-05-28 7:29 ` Benjamin Herrenschmidt
2013-05-29 21:13 ` Brian King
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=1369691531.3557.36.camel@pasglop \
--to=benh@kernel.crashing.org \
--cc=agordeev@redhat.com \
--cc=brking@linux.vnet.ibm.com \
--cc=linux-kernel@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 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.