[Skiboot] [PATCH trivial] hostservices: Silence special wakeup assert/release logs

Vasant Hegde hegdevasant at linux.vnet.ibm.com
Thu Oct 31 16:25:19 AEDT 2019


During `opal-prd pm-complex reset` OPAL msglog is filled
with these logs.. which are not useful for debugging. And
Hence lets silence these logs.

Cc: Vaidyanathan Srinivasan <svaidy at linux.vnet.ibm.com>
Cc: Gautham R. Shenoy <ego at linux.vnet.ibm.com>
Signed-off-by: Vasant Hegde <hegdevasant at linux.vnet.ibm.com>
---
 platforms/ibm-fsp/hostservices.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/platforms/ibm-fsp/hostservices.c b/platforms/ibm-fsp/hostservices.c
index 1c199af11..19a87e4cb 100644
--- a/platforms/ibm-fsp/hostservices.c
+++ b/platforms/ibm-fsp/hostservices.c
@@ -561,7 +561,7 @@ int hservice_wakeup(uint32_t i_core, uint32_t i_mode)
 		cpu = find_cpu_by_pir(i_core);
 		if (!cpu)
 			return OPAL_PARAMETER;
-		prlog(PR_DEBUG, "HBRT: Special wakeup assert for core 0x%x,"
+		prlog(PR_TRACE, "HBRT: Special wakeup assert for core 0x%x,"
 		      " count=%d\n", i_core, cpu->hbrt_spec_wakeup);
 		if (cpu->hbrt_spec_wakeup == 0)
 			rc = dctl_set_special_wakeup(cpu);
@@ -572,7 +572,7 @@ int hservice_wakeup(uint32_t i_core, uint32_t i_mode)
 		cpu = find_cpu_by_pir(i_core);
 		if (!cpu)
 			return OPAL_PARAMETER;
-		prlog(PR_DEBUG, "HBRT: Special wakeup release for core"
+		prlog(PR_TRACE, "HBRT: Special wakeup release for core"
 		      " 0x%x, count=%d\n", i_core, cpu->hbrt_spec_wakeup);
 		if (cpu->hbrt_spec_wakeup == 0) {
 			prerror("HBRT: Special wakeup clear"
-- 
2.21.0



More information about the Skiboot mailing list