-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sof-kernel-log-check: ignore an ime error for CML and ICL #398
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand how a kernel version can changed PCI IDs, can you explain?
This makes line 21 redundant, need to merge the two.
While doing this please address comments in the previous review (mainly use a platform dependent case
)
tools/sof-kernel-log-check.sh
Outdated
# https://github.com/thesofproject/sof-test/issues/389 | ||
ignore_str="$ignore_str"'|mei_me 0000:00:16\.4: hw_reset failed ret = -62' | ||
ignore_str="$ignore_str"'|mei_me 0000:00:16\..: hw_reset failed ret = -62' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe it is better to ignore the exact pci id here and match it with a pattern?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think a .
here is good enough.
@marc-hb My bad, it is actually the same sof-dev kernel, but with different FW (stable 1.6 vs master). Check the daily report 457/473, the IDs are different, but the error message are the same:
|
8e7de6e
to
441d739
Compare
@aiChaoSONG The id is mapped to real hardware. The PCI bus is 0000:00:16 and the following number is the sub-bus. If the hardware is connected to different slot, the id may also change. So I think we may also need to confirm the mei_me is always on 0000:00:16 Please rebase and merge this PR |
@xiulipan OK, I will check the log on every platform to see if the ME module got the same ID. |
We can add this now if it solves a current problem and easily change it to a wildcard later if needed. |
@marc-hb Agreed. @aiChaoSONG Please rebase and merge this PR |
441d739
to
7aa56f6
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you dropped the removal of the duplicate on line 25.
Commit f764b59 ignore an ime error, and the similiar ime error is observed again, but with a different PCI ID, we need to ignore both. And also make the ignorance platform specific. Signed-off-by: Amery Song <[email protected]>
7aa56f6
to
7fdc1b4
Compare
Commit f764b59 ignore an ime error, and the similiar
ime error is observed again, but with a different PCI ID,
we need to ignore both.
Check daily report #473 / #457 suspend-resume test case for the error.