mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-27 21:40:49 +00:00
ppc/pnv: Quiesce some XIVE errors
When dumping the END and NVT tables, the error logging is too noisy. Signed-off-by: Cédric Le Goater <clg@kaod.org> Message-Id: <20191115162436.30548-6-clg@kaod.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
58246041d3
commit
cd55b1272e
@ -29,7 +29,7 @@
|
||||
|
||||
#include "pnv_xive_regs.h"
|
||||
|
||||
#define XIVE_DEBUG
|
||||
#undef XIVE_DEBUG
|
||||
|
||||
/*
|
||||
* Virtual structures table (VST)
|
||||
@ -157,7 +157,9 @@ static uint64_t pnv_xive_vst_addr_indirect(PnvXive *xive, uint32_t type,
|
||||
vsd = ldq_be_dma(&address_space_memory, vsd_addr);
|
||||
|
||||
if (!(vsd & VSD_ADDRESS_MASK)) {
|
||||
#ifdef XIVE_DEBUG
|
||||
xive_error(xive, "VST: invalid %s entry %x !?", info->name, idx);
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -178,7 +180,9 @@ static uint64_t pnv_xive_vst_addr_indirect(PnvXive *xive, uint32_t type,
|
||||
vsd = ldq_be_dma(&address_space_memory, vsd_addr);
|
||||
|
||||
if (!(vsd & VSD_ADDRESS_MASK)) {
|
||||
#ifdef XIVE_DEBUG
|
||||
xive_error(xive, "VST: invalid %s entry %x !?", info->name, idx);
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user