linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] powerpc/powernv: Fix BE PE number to opal_pci_eeh_freeze_clear()
@ 2016-08-01  7:03 Gavin Shan
  2016-08-01 10:50 ` Michael Ellerman
  0 siblings, 1 reply; 4+ messages in thread
From: Gavin Shan @ 2016-08-01  7:03 UTC (permalink / raw)
  To: linuxppc-dev; +Cc: paulus, benh, mpe, ruscur, Gavin Shan

The PE number (@frozen_pe_no), filled by opal_pci_next_error() is
in big-endian format. Frozen PE number in CPU-endian should be passed
to opal_pci_eeh_freeze_clear() when clearing the frozen state if the
PE is invalid one.

This passes CPU-endian PE number to opal_pci_eeh_freeze_clear() and
it should be part of commit <0f36db77643b> ("powerpc/eeh: Fix wrong
printed PE number").

Cc: stable@vger.kernel.org # v4.3+
Suggested-by: Paul Mackerras <paulus@samba.org>
Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com>
---
 arch/powerpc/platforms/powernv/eeh-powernv.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/powerpc/platforms/powernv/eeh-powernv.c b/arch/powerpc/platforms/powernv/eeh-powernv.c
index 86544ea..75363d9 100644
--- a/arch/powerpc/platforms/powernv/eeh-powernv.c
+++ b/arch/powerpc/platforms/powernv/eeh-powernv.c
@@ -1538,7 +1538,7 @@ static int pnv_eeh_next_error(struct eeh_pe **pe)
 
 				/* Try best to clear it */
 				opal_pci_eeh_freeze_clear(phb->opal_id,
-					frozen_pe_no,
+					be64_to_cpu(frozen_pe_no),
 					OPAL_EEH_ACTION_CLEAR_FREEZE_ALL);
 				ret = EEH_NEXT_ERR_NONE;
 			} else if ((*pe)->state & EEH_PE_ISOLATED ||
-- 
2.1.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-08-02  3:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-01  7:03 [PATCH] powerpc/powernv: Fix BE PE number to opal_pci_eeh_freeze_clear() Gavin Shan
2016-08-01 10:50 ` Michael Ellerman
2016-08-01 23:59   ` Gavin Shan
2016-08-02  3:54   ` Gavin Shan

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).