powerpc/eeh: Fix wrong printed PE number
On LE kernel, the non-existing PE number in BE format derived from skiboot firmware isn't converted to LE format properly as following kernel log indicates: EEH: Clear non-existing PHB#4-PE#200000000000000 Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
Родитель
2476c09f39
Коммит
0f36db7764
|
@ -1396,7 +1396,7 @@ static int pnv_eeh_next_error(struct eeh_pe **pe)
|
|||
be64_to_cpu(frozen_pe_no), pe)) {
|
||||
/* Try best to clear it */
|
||||
pr_info("EEH: Clear non-existing PHB#%x-PE#%llx\n",
|
||||
hose->global_number, frozen_pe_no);
|
||||
hose->global_number, be64_to_cpu(frozen_pe_no));
|
||||
pr_info("EEH: PHB location: %s\n",
|
||||
eeh_pe_loc_get(phb_pe));
|
||||
opal_pci_eeh_freeze_clear(phb->opal_id,
|
||||
|
|
Загрузка…
Ссылка в новой задаче