From d733375fb4b938bfe1f25f4e9e710cb8c861f891 Mon Sep 17 00:00:00 2001 From: lkleinax Date: Fri, 29 Aug 2025 05:48:49 -0700 Subject: [PATCH] fix: add "SMBus is busy, can't use it" to DMESG_WHITELIST MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #2 Signed-off-by: Ɓukasz Kleina --- mfd_dmesg/constants.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mfd_dmesg/constants.py b/mfd_dmesg/constants.py index d8dcc15..b744b23 100644 --- a/mfd_dmesg/constants.py +++ b/mfd_dmesg/constants.py @@ -77,6 +77,7 @@ class OSPackageInfo: r"Deprecated Driver is detected: bnx2i", r"the capability attribute has been deprecated", # related to disk r"VF could not set VLAN 0", + r"SMBus is busy, can't use it", # related to disk ] FAILS = ["no defer", "error", "fail", "timeout", "warning", "overruns", "excessive missed"] INVALID_MODULE_ERRORS = ["Invalid", "default value", "outside of range", "Single Root Input/Output Virtualization"]