From 75fd3b4c0f9a080660293720dbd1c447fbba3dbe Mon Sep 17 00:00:00 2001 From: Pan Xiuli Date: Fri, 28 Aug 2020 09:17:23 +0000 Subject: [PATCH] tools: update the checklist and ignore list with boot time With https://github.com/thesofproject/linux/pull/2382 no error logs will generate in boot time. Udpate the err list and ignore list with this update. Signed-off-by: Pan Xiuli --- tools/sof-kernel-log-check.sh | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/tools/sof-kernel-log-check.sh b/tools/sof-kernel-log-check.sh index 39a54b7b..d17626ac 100755 --- a/tools/sof-kernel-log-check.sh +++ b/tools/sof-kernel-log-check.sh @@ -2,18 +2,7 @@ begin_line=${1:-1} declare err_str ignore_str project_key -err_str="error|failed|timed out|panic|oops" - -# There will be debug logs at each failed initializaiton of DSP: -# sof-audio-pci 0000:00:1f.3: error: status = 0x00000000 panic = 0x00000000 -# sof-audio-pci 0000:00:1f.3: error: Error code=0xffffffff: FW status=0xffffffff -# sof-audio-pci 0000:00:1f.3: error: iteration 0 of Core En/ROM load failed: -110 -# We will reinit DSP if it is failed to init, and retry 3 times, so the errors in -# debug logs at the frist and second retry can be ignored. -# Check https://github.com/thesofproject/linux/pull/1676 for more information. -# TODO explain for "error: Error ..." -ignore_str='error: iteration [01]' -ignore_str="$ignore_str"'|error: status' +err_str="error|failed|timed out|oops" # TODO explain ignore_str="$ignore_str"'|error: debugfs write failed to idle -16'