]> git.ipfire.org Git - thirdparty/linux.git/commit
ipmi: ssif_bmc: change log level to dbg in irq callback
authorJian Zhang <zhangjian.3032@bytedance.com>
Fri, 3 Apr 2026 09:06:01 +0000 (17:06 +0800)
committerCorey Minyard <corey@minyard.net>
Fri, 3 Apr 2026 12:50:04 +0000 (07:50 -0500)
commitc9c99b7b7051eb7121b3224bfce181fb023b0269
tree67cedae9a916aac3ef8ecf11324b6ccc214e7a49
parent1d38e849adb6851ee280aa1a1d687b2181549a66
ipmi: ssif_bmc: change log level to dbg in irq callback

Long-running tests indicate that this logging can occasionally disrupt
timing and lead to request/response corruption.

Irq handler need to be executed as fast as possible,
most I2C slave IRQ implementations are byte-level, logging here
can significantly affect transfer behavior and timing. It is recommended
to use dev_dbg() for these messages.

Fixes: dd2bc5cc9e25 ("ipmi: ssif_bmc: Add SSIF BMC driver")
Signed-off-by: Jian Zhang <zhangjian.3032@bytedance.com>
Message-ID: <20260403090603.3988423-4-zhangjian.3032@bytedance.com>
Signed-off-by: Corey Minyard <corey@minyard.net>
drivers/char/ipmi/ssif_bmc.c